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="HTMLTableElement19">
  20. <metadata>
  21. <title>HTMLTableElement19</title>
  22. <creator>NIST</creator>
  23. <description>
  24.     The createTHead() method creates a table header row or returns
  25.     an existing one.
  26.  
  27.     Create a new THEAD element on the first TABLE element.  The first
  28.     TABLE element should return null to make sure one doesn't exist.
  29.     After creation of the THEAD element the value is once again
  30.     checked and should not be null.
  31. </description>
  32. <contributor>Rick Rivello</contributor>
  33. <date qualifier="created">2002-05-02</date>
  34. <subject resource="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-70313345"/>
  35. </metadata>
  36. <var name="nodeList" type="NodeList"/>
  37. <var name="testNode" type="Node"/>
  38. <var name="vsection1" type="HTMLTableSectionElement" />
  39. <var name="vsection2" type="HTMLTableSectionElement" />
  40. <var name="newHead" type="HTMLElement" />
  41. <var name="doc" type="Document"/>
  42. <load var="doc" href="table" willBeModified="true"/>
  43. <getElementsByTagName interface="Document" obj="doc" var="nodeList" tagname='"table"'/>
  44. <assertSize collection="nodeList" size="3" id="Asize"/>
  45. <item interface="NodeList" obj="nodeList" var="testNode" index="0"/>
  46. <tHead interface="HTMLTableElement" obj="testNode" var="vsection1"/>
  47. <assertNull actual="vsection1" id="vsection1Id"/>
  48. <createTHead interface="HTMLTableElement" obj="testNode" var="newHead"/>
  49. <tHead interface="HTMLTableElement" obj="testNode" var="vsection2"/>
  50. <assertNotNull actual="vsection2" id="vsection2Id"/>
  51. </test>
  52.