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="HTMLTableRowElement12">
  20. <metadata>
  21. <title>HTMLTableRowElement12</title>
  22. <creator>NIST</creator>
  23. <description>
  24.     The insertCell() method inserts an empty TD cell into this row.
  25.  
  26.    
  27.     Retrieve the fourth TR element and examine the value of
  28.     the cells length attribute which should be set to six.  
  29.     Check the value of the last TD element.  Invoke the
  30.     insertCell() which will append the empty cell to the end of the list.
  31.     Check the value of the newly created cell and make sure it is null
  32.     and also the numbers of cells should now be seven.
  33. </description>
  34. <contributor>Rick Rivello</contributor>
  35. <date qualifier="created">2002-05-06</date>
  36. <subject resource="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-68927016"/>
  37. </metadata>
  38. <var name="nodeList" type="NodeList"/>
  39. <var name="cellsnodeList" type="HTMLCollection"/>
  40. <var name="testNode" type="Node"/>
  41. <var name="trNode" type="Node"/>
  42. <var name="cellNode" type="Node"/>
  43. <var name="value" type="DOMString"/>
  44. <var name="newCell" type="HTMLElement"/>
  45. <var name="vcells" type="int" />
  46. <var name="doc" type="Document"/>
  47. <load var="doc" href="tablerow" willBeModified="true"/>
  48. <getElementsByTagName interface="Document" obj="doc" var="nodeList" tagname='"tr"'/>
  49. <assertSize collection="nodeList" size="5" id="Asize"/>
  50. <item interface="NodeList" obj="nodeList" var="testNode" index="3"/>
  51. <cells interface="HTMLTableRowElement" obj="testNode" var="cellsnodeList"/>
  52. <length interface="HTMLCollection" obj="cellsnodeList" var="vcells"/>
  53. <assertEquals actual="vcells" expected="6" id="cellsLink1" ignoreCase="false"/>
  54. <item interface="HTMLCollection" obj="cellsnodeList" var="trNode" index="5"/>
  55. <firstChild interface="Node" obj="trNode" var="cellNode"/>
  56. <nodeValue obj="cellNode" var="value"/>
  57. <assertEquals actual="value" expected='"1230 North Ave. Dallas, Texas 98551"' id="value1Link" ignoreCase="false"/>
  58. <insertCell interface="HTMLTableRowElement" obj="testNode" var="newCell" index="6"/>
  59. <item interface="NodeList" obj="nodeList" var="testNode" index="3"/>
  60. <cells interface="HTMLTableRowElement" obj="testNode" var="cellsnodeList"/>
  61. <length interface="HTMLCollection" obj="cellsnodeList" var="vcells"/>
  62. <assertEquals actual="vcells" expected="7" id="cellsLink2" ignoreCase="false"/>
  63. <item interface="HTMLCollection" obj="cellsnodeList" var="trNode" index="6"/>
  64. <firstChild interface="Node" obj="trNode" var="cellNode"/>
  65. <assertNull actual="cellNode" id="value2Link"/>
  66. </test>
  67.