michael@0: michael@0: michael@0: michael@0: michael@0: michael@0: http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLTableElement31 michael@0: michael@0: michael@0: michael@0: michael@0: michael@0: michael@0:

Test http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLTableElement31

michael@0:

<test name='HTMLTableElement31' schemaLocation='http://www.w3.org/2001/DOM-Test-Suite/Level-1 dom1.xsd'>
     <metadata>
          <title>HTMLTableElement31</title> michael@0:
          <creator>NIST</creator> michael@0:
          <description> michael@0: The insertRow() method inserts a new empty table row. In addition, when michael@0: the table is empty the row is inserted into a TBODY which is created michael@0: and inserted into the table. michael@0: michael@0: Load the table1 file which has a non-empty table element. michael@0: Create an empty TABLE element and append to the document. michael@0: Check to make sure that the empty TABLE element doesn't michael@0: have a TBODY element. Insert a new row into the empty michael@0: TABLE element. Check for existence of the a TBODY element michael@0: in the table. michael@0: </description> michael@0:
          <contributor>Rick Rivello</contributor> michael@0:
          <date qualifier='created'>2002-05-02</date> michael@0:
          <subject resource='http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-39872903'/> michael@0:
          <subject resource='http://lists.w3.org/Archives/Public/www-dom-ts/2002Aug/0019.html'/> michael@0:
          <subject resource='http://www.w3.org/Bugs/Public/show_bug.cgi?id=502'/> michael@0:
</metadata>
     <var name='nodeList' type='NodeList'/>
     <var name='testNode' type='Node'/>
     <var name='tableNode' type='Node'/>
     <var name='tbodiesnodeList' type='HTMLCollection'/>
     <var name='newRow' type='HTMLElement'/>
     <var name='doc' type='Document'/>
     <var name='table' type='Element'/>
     <var name='tbodiesLength' type='int'/>
     <load var='doc' href='table1' willBeModified='true'/>
     <getElementsByTagName interface='Document' obj='doc' var='nodeList' tagname='"body"'/>
     <assertSize collection='nodeList' size='1' id='tableSize1'/>
     <item interface='NodeList' obj='nodeList' index='0' var='testNode'/>
     <createElement obj='doc' var='table' tagName='"table"'/>
     <appendChild obj='testNode' newChild='table' var='tableNode'/>
     <getElementsByTagName interface='Document' obj='doc' var='nodeList' tagname='"table"'/>
     <assertSize collection='nodeList' size='2' id='tableSize2'/>
     <tBodies interface='HTMLTableElement' obj='tableNode' var='tbodiesnodeList'/>
     <length var='tbodiesLength' obj='tbodiesnodeList' interface='HTMLCollection'/>
     <assertEquals actual='tbodiesLength' expected='0' id='Asize3' ignoreCase='false'/>
     <insertRow interface='HTMLTableElement' obj='tableNode' var='newRow' index='0'/>
     <tBodies interface='HTMLTableElement' obj='tableNode' var='tbodiesnodeList'/>
     <length var='tbodiesLength' obj='tbodiesnodeList' interface='HTMLCollection'/>
     <assertEquals actual='tbodiesLength' expected='1' id='Asize4' ignoreCase='false'/>
</test>
michael@0:

michael@0:

michael@0: Copyright (c) 2001-2004 World Wide Web Consortium, michael@0: (Massachusetts Institute of Technology, Institut National de michael@0: Recherche en Informatique et en Automatique, Keio University). All michael@0: Rights Reserved. This program is distributed under the W3C's Software michael@0: Intellectual Property License. This program is distributed in the michael@0: hope that it will be useful, but WITHOUT ANY WARRANTY; without even michael@0: the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR michael@0: PURPOSE. michael@0:

michael@0:

See W3C License http://www.w3.org/Consortium/Legal/ michael@0: for more details.

michael@0: michael@0:
michael@0: michael@0: