"Fossies" - the Fresh Open Source Software Archive

Member "selenium-selenium-4.8.1/common/src/web/rc/tests/TestJSSuite.html" (17 Feb 2023, 2120 Bytes) of package /linux/www/selenium-selenium-4.8.1.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) HTML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 <!--
    2 Copyright 2011 Software Freedom Conservancy
    3 
    4  Licensed under the Apache License, Version 2.0 (the "License");
    5  you may not use this file except in compliance with the License.
    6  You may obtain a copy of the License at
    7 
    8      http://www.apache.org/licenses/LICENSE-2.0
    9 
   10  Unless required by applicable law or agreed to in writing, software
   11  distributed under the License is distributed on an "AS IS" BASIS,
   12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   13  See the License for the specific language governing permissions and
   14  limitations under the License.
   15 -->
   16 <html>
   17 <head>
   18 <meta content="text/html; charset=ISO-8859-1"
   19 http-equiv="content-type">
   20 <title>Test Suite</title>
   21 <link rel="stylesheet" type="text/css" href="../core/selenium.css" />
   22 <script language="JavaScript" type="text/javascript" src="../core/scripts/selenium-browserdetect.js"></script>
   23 <script language="JavaScript" type="text/javascript">
   24     function filterTestsForBrowser() {
   25         var suiteTable = document.getElementById("suiteTable");
   26         var skippedTests = document.getElementById("skippedTests");
   27 
   28         for(rowNum = suiteTable.rows.length - 1; rowNum >= 0; rowNum--)
   29         {
   30             var row = suiteTable.rows[rowNum];
   31             var filterString = row.getAttribute("unless");
   32             if (filterString && eval(filterString))
   33             {
   34               var cellHTML = row.cells[0].innerHTML;
   35               suiteTable.deleteRow(rowNum);
   36 
   37               var newRow = skippedTests.insertRow(1);
   38               var newCell = newRow.insertCell(0)
   39               newCell.innerHTML = cellHTML;
   40             }
   41         }
   42     }
   43 </script>
   44 </head>
   45 
   46 <body onload="filterTestsForBrowser()">
   47 
   48     <table id="suiteTable" class="selenium">
   49         <tbody>
   50             <tr><td><b>Se/JS Test Suite</b></td></tr>
   51             <tr><td><a href="./TestJS-functions.html">TestJS-functions</a></td></tr>
   52             <tr><td><a href="./TestJS-if-then-else.html">TestJS-if-then-else</a></td></tr>
   53             <tr><td><a href="./TestJS-for-loops.html">TestJS-for-loops</a></td></tr>
   54 
   55         </tbody>
   56     </table>
   57 
   58 </body>
   59 </html>