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="HTMLCollection12">
  20. <metadata>
  21. <title>HTMLCollection12</title>
  22. <creator>NIST</creator>
  23. <description>
  24.    The namedItem(name) method retrieves a node using a name.  It first  
  25.    searches for a node with a matching id attribute.  If it doesn't find
  26.     one, it then searches for a Node with a matching name attribute, but only
  27.     on those elements that are allowed a name attribute. If there isn't
  28.    a matching node the method returns null.
  29.  
  30.    Retrieve the first FORM element and create a HTMLCollection by invoking
  31.    the elements attribute.  The method returns null since there is not a
  32.    match of the name or id attribute.
  33. </description>
  34. <contributor>Rick Rivello</contributor>
  35. <date qualifier="created">2002-05-01</date>
  36. <subject resource="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-21069976"/>
  37. </metadata>
  38. <var name="nodeList" type="NodeList"/>
  39. <var name="testNode" type="Node"/>
  40. <var name="formNode" type="Node"/>
  41. <var name="formsnodeList" type="HTMLCollection"/>
  42. <var name="doc" type="Document"/>
  43. <load var="doc" href="collection" willBeModified="false"/>
  44. <getElementsByTagName interface="Document" obj="doc" var="nodeList" tagname='"form"'/>
  45. <assertSize collection="nodeList" size="1" id="Asize"/>
  46. <item interface="NodeList" obj="nodeList" var="testNode" index="0"/>
  47. <elements interface="HTMLFormElement" obj="testNode" var="formsnodeList"/>
  48. <namedItem obj="formsnodeList" var="formNode" name='"select9"'/>
  49. <assertNull actual="formNode" id="nameIndexLink" />
  50. </test>
  51.