tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_HTMLTableElement30.html (8855B)


      1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
      2 <html>
      3 <head>
      4 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
      5 <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
      6 <title>http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLTableElement30</title>
      7 <link type="text/css" rel="stylesheet" href="/tests/SimpleTest/test.css">
      8 <script src="/tests/SimpleTest/SimpleTest.js" type="text/javascript"></script>
      9 <script src="DOMTestCase.js" type="text/javascript"></script>
     10 <script type="text/javascript">
     11 // expose test function names
     12 function exposeTestFunctionNames()
     13 {
     14 return ['HTMLTableElement30'];
     15 }
     16 
     17 var docsLoaded = -1000000;
     18 var builder = null;
     19 
     20 //
     21 //   This function is called by the testing framework before
     22 //      running the test suite.
     23 //
     24 //   If there are no configuration exceptions, asynchronous
     25 //        document loading is started.  Otherwise, the status
     26 //        is set to complete and the exception is immediately
     27 //        raised when entering the body of the test.
     28 //
     29 function setUpPage() {
     30   setUpPageStatus = 'running';
     31   try {
     32     //
     33     //   creates test document builder, may throw exception
     34     //
     35     builder = createConfiguredBuilder();
     36 
     37      docsLoaded = 0;
     38      
     39      var docRef = null;
     40      if (typeof(this.doc) != 'undefined') {
     41        docRef = this.doc;
     42      }
     43      docsLoaded += preload(docRef, "doc", "table");
     44        
     45       if (docsLoaded == 1) {
     46          setUpPage = 'complete';
     47       }
     48    } catch(ex) {
     49    	catchInitializationError(builder, ex);
     50        setUpPage = 'complete';
     51    }
     52 }
     53 
     54 
     55 
     56 //
     57 //   This method is called on the completion of 
     58 //      each asychronous load started in setUpTests.
     59 //
     60 //   When every synchronous loaded document has completed,
     61 //      the page status is changed which allows the
     62 //      body of the test to be executed.
     63 function loadComplete() {
     64    if (++docsLoaded == 1) {
     65        setUpPageStatus = 'complete';
     66        runJSUnitTests();
     67        SimpleTest.finish();
     68    }
     69 }
     70 
     71 
     72 /**
     73 * 
     74    The insertRow() method inserts a new empty table row.  
     75    
     76    Retrieve the second TABLE element and invoke the insertRow() method
     77    with an index of four. After the new row is inserted the number of rows
     78    in the table should be five.
     79    Also the number of rows in the TFOOT section before
     80    insertion of the new row is one.  After the new row is inserted the number 
     81    of rows in the TFOOT section is two.
     82 
     83 * @author NIST
     84 * @author Rick Rivello
     85 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-39872903
     86 */
     87 function HTMLTableElement30() {
     88   var success;
     89    if(checkInitialization(builder, "HTMLTableElement30") != null) return;
     90    var nodeList;
     91      var tbodiesnodeList;
     92      var testNode;
     93      var newRow;
     94      var rowsnodeList;
     95      var vsection1;
     96      var vrows;
     97      var doc;
     98      
     99      var docRef = null;
    100      if (typeof(this.doc) != 'undefined') {
    101        docRef = this.doc;
    102      }
    103      doc = load(docRef, "doc", "table");
    104      nodeList = doc.getElementsByTagName("table");
    105      assertSize("Asize",3,nodeList);
    106 testNode = nodeList.item(1);
    107      rowsnodeList = testNode.rows;
    108 
    109      vrows = rowsnodeList.length;
    110 
    111      assertEquals("rowsLink1",4,vrows);
    112       vsection1 = testNode.tFoot;
    113 
    114      rowsnodeList = vsection1.rows;
    115 
    116      vrows = rowsnodeList.length;
    117 
    118      assertEquals("rowsLink",1,vrows);
    119       newRow = testNode.insertRow(4);
    120      rowsnodeList = testNode.rows;
    121 
    122      vrows = rowsnodeList.length;
    123 
    124      assertEquals("rowsLink2",5,vrows);
    125       vsection1 = testNode.tFoot;
    126 
    127      rowsnodeList = vsection1.rows;
    128 
    129      vrows = rowsnodeList.length;
    130 
    131      assertEquals("rowsLink3",2,vrows);
    132       
    133 }
    134 
    135 </script>
    136 </head>
    137 <body>
    138 <h2>Test http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLTableElement30</h2>
    139 <p>&lt;test name='HTMLTableElement30' schemaLocation='http://www.w3.org/2001/DOM-Test-Suite/Level-1 dom1.xsd'&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;metadata&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;title&gt;HTMLTableElement30&lt;/title&gt;
    140 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;creator&gt;NIST&lt;/creator&gt;
    141 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;description&gt;
    142    The insertRow() method inserts a new empty table row.  
    143    
    144    Retrieve the second TABLE element and invoke the insertRow() method
    145    with an index of four. After the new row is inserted the number of rows
    146    in the table should be five.
    147    Also the number of rows in the TFOOT section before
    148    insertion of the new row is one.  After the new row is inserted the number 
    149    of rows in the TFOOT section is two.
    150 &lt;/description&gt;
    151 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;contributor&gt;Rick Rivello&lt;/contributor&gt;
    152 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;date qualifier='created'&gt;2002-05-02&lt;/date&gt;
    153 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;subject resource='<a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-39872903">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-39872903</a>'/&gt;
    154 <br>&lt;/metadata&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='nodeList' type='NodeList'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='tbodiesnodeList' type='HTMLCollection'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='testNode' type='Node'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='newRow' type='HTMLElement'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='rowsnodeList' type='HTMLCollection'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='vsection1' type='HTMLTableSectionElement'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='vrows' type='int'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='doc' type='Document'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;load var='doc' href='table' willBeModified='true'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;getElementsByTagName interface='Document' obj='doc' var='nodeList' tagname='"table"'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertSize collection='nodeList' size='3' <a id="Asize">id='Asize'</a>/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;item interface='NodeList' obj='nodeList' var='testNode' index='1'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;rows interface='HTMLTableSectionElement' obj='testNode' var='rowsnodeList'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;length interface='HTMLCollection' obj='rowsnodeList' var='vrows'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertEquals actual='vrows' expected='4' <a id="rowsLink1">id='rowsLink1'</a> ignoreCase='false'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tFoot interface='HTMLTableElement' obj='testNode' var='vsection1'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;rows interface='HTMLTableSectionElement' obj='vsection1' var='rowsnodeList'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;length interface='HTMLCollection' obj='rowsnodeList' var='vrows'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertEquals actual='vrows' expected='1' <a id="rowsLink">id='rowsLink'</a> ignoreCase='false'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;insertRow interface='HTMLTableElement' obj='testNode' var='newRow' index='4'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;rows interface='HTMLTableSectionElement' obj='testNode' var='rowsnodeList'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;length interface='HTMLCollection' obj='rowsnodeList' var='vrows'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertEquals actual='vrows' expected='5' <a id="rowsLink2">id='rowsLink2'</a> ignoreCase='false'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tFoot interface='HTMLTableElement' obj='testNode' var='vsection1'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;rows interface='HTMLTableSectionElement' obj='vsection1' var='rowsnodeList'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;length interface='HTMLCollection' obj='rowsnodeList' var='vrows'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertEquals actual='vrows' expected='2' <a id="rowsLink3">id='rowsLink3'</a> ignoreCase='false'/&gt;<br>&lt;/test&gt;<br>
    155 </p>
    156 <p>
    157 		Copyright (c) 2001-2004 World Wide Web Consortium,
    158 		(Massachusetts Institute of Technology, Institut National de
    159 		Recherche en Informatique et en Automatique, Keio University). All
    160 		Rights Reserved. This program is distributed under the W3C's Software
    161 		Intellectual Property License. This program is distributed in the
    162 		hope that it will be useful, but WITHOUT ANY WARRANTY; without even
    163 		the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
    164 		PURPOSE.
    165 		</p>
    166 <p>See W3C License <a href="http://www.w3.org/Consortium/Legal/">http://www.w3.org/Consortium/Legal/</a> 
    167 for more details.</p>
    168 <iframe name="doc" src="files/table.html"></iframe>
    169 <br>
    170 </body>
    171 </html>