Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="test-to-html.xml" type="text/xml"?>
  3.  
  4. <!--
  5.  
  6. Copyright (c) 2001 World Wide Web Consortium,
  7. (Massachusetts Institute of Technology, Institut National de
  8. Recherche en Informatique et en Automatique, Keio University).  All
  9. Rights Reserved.  This program is distributed under the W3C's Software
  10. Intellectual Property License.  This program is distributed in the
  11. hope that it will be useful, but WITHOUT ANY WARRANTY; without even
  12. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  13. PURPOSE.  
  14.  
  15. See W3C License http://www.w3.org/Consortium/Legal/ for more details.
  16.  
  17. -->
  18. <!DOCTYPE test SYSTEM "dom1.dtd">
  19. <test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-1" name="HTMLTableElement30">
  20. <metadata>
  21. <title>HTMLTableElement30</title>
  22. <creator>NIST</creator>
  23. <description>
  24.     The insertRow() method inserts a new empty table row.  
  25.    
  26.     Retrieve the second TABLE element and invoke the insertRow() method
  27.     with an index of four. After the new row is inserted the number of rows
  28.     in the table should be five.
  29.     Also the number of rows in the TFOOT section before
  30.     insertion of the new row is one.  After the new row is inserted the number
  31.     of rows in the TFOOT section is two.
  32. </description>
  33. <contributor>Rick Rivello</contributor>
  34. <date qualifier="created">2002-05-02</date>
  35. <subject resource="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-39872903"/>
  36. </metadata>
  37. <var name="nodeList" type="NodeList"/>
  38. <var name="tbodiesnodeList" type="HTMLCollection"/>
  39. <var name="testNode" type="Node"/>
  40. <var name="newRow" type="HTMLElement"/>
  41. <var name="rowsnodeList" type="HTMLCollection"/>
  42. <var name="vsection1" type="HTMLTableSectionElement"/>
  43. <var name="vrows" type="int" />
  44. <var name="doc" type="Document"/>
  45. <load var="doc" href="table" willBeModified="true"/>
  46. <getElementsByTagName interface="Document" obj="doc" var="nodeList" tagname='"table"'/>
  47. <assertSize collection="nodeList" size="3" id="Asize"/>
  48. <item interface="NodeList" obj="nodeList" var="testNode" index="1"/>
  49. <rows interface="HTMLTableSectionElement" obj="testNode" var="rowsnodeList"/>
  50. <length interface="HTMLCollection" obj="rowsnodeList" var="vrows"/>
  51. <assertEquals actual="vrows" expected="4" id="rowsLink1" ignoreCase="false"/>
  52. <tFoot interface="HTMLTableElement" obj="testNode" var="vsection1"/>
  53. <rows interface="HTMLTableSectionElement" obj="vsection1" var="rowsnodeList"/>
  54. <length interface="HTMLCollection" obj="rowsnodeList" var="vrows"/>
  55. <assertEquals actual="vrows" expected="1" id="rowsLink" ignoreCase="false"/>
  56. <insertRow interface="HTMLTableElement" obj="testNode" var="newRow" index="4"/>
  57. <rows interface="HTMLTableSectionElement" obj="testNode" var="rowsnodeList"/>
  58. <length interface="HTMLCollection" obj="rowsnodeList" var="vrows"/>
  59. <assertEquals actual="vrows" expected="5" id="rowsLink2" ignoreCase="false"/>
  60. <tFoot interface="HTMLTableElement" obj="testNode" var="vsection1"/>
  61. <rows interface="HTMLTableSectionElement" obj="vsection1" var="rowsnodeList"/>
  62. <length interface="HTMLCollection" obj="rowsnodeList" var="vrows"/>
  63. <assertEquals actual="vrows" expected="2" id="rowsLink3" ignoreCase="false"/>
  64. </test>
  65.