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="HTMLTableSectionElement23">
  20. <metadata>
  21. <title>HTMLTableSectionElement23</title>
  22. <creator>NIST</creator>
  23. <description>
  24.     The deleteRow() method deletes a row from this section.  
  25.    
  26.     Retrieve the first TFOOT element and invoke the deleteRow() method
  27.     with an index of 0.  The nuber of rows in the TFOOT section before
  28.     the deletion of the row is one.  After the row is deleted the number
  29.     of rows in the TFOOT section is zero.
  30. </description>
  31. <contributor>Rick Rivello</contributor>
  32. <date qualifier="created">2002-05-02</date>
  33. <subject resource="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-5625626"/>
  34. </metadata>
  35. <var name="nodeList" type="NodeList"/>
  36. <var name="testNode" type="Node"/>
  37. <var name="rowsnodeList" type="HTMLCollection"/>
  38. <var name="vrows" type="int" />
  39. <var name="doc" type="Document"/>
  40. <load var="doc" href="tablesection" willBeModified="true"/>
  41. <getElementsByTagName interface="Document" obj="doc" var="nodeList" tagname='"tfoot"'/>
  42. <assertSize collection="nodeList" size="1" id="Asize"/>
  43. <item interface="NodeList" obj="nodeList" var="testNode" index="0"/>
  44. <rows interface="HTMLTableSectionElement" obj="testNode" var="rowsnodeList"/>
  45. <length interface="HTMLCollection" obj="rowsnodeList" var="vrows"/>
  46. <assertEquals actual="vrows" expected="1" id="rowsLink1" ignoreCase="false"/>
  47. <deleteRow interface="HTMLTableSectionElement" obj="testNode" index="0"/>
  48. <rows interface="HTMLTableSectionElement" obj="testNode" var="rowsnodeList"/>
  49. <length interface="HTMLCollection" obj="rowsnodeList" var="vrows"/>
  50. <assertEquals actual="vrows" expected="0" id="rowsLink2" ignoreCase="false"/>
  51. </test>
  52.