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.  
  3. <!--
  4.  
  5. Copyright (c) 2001 World Wide Web Consortium,
  6. (Massachusetts Institute of Technology, Institut National de
  7. Recherche en Informatique et en Automatique, Keio University).  All
  8. Rights Reserved.  This program is distributed under the W3C's Software
  9. Intellectual Property License.  This program is distributed in the
  10. hope that it will be useful, but WITHOUT ANY WARRANTY; without even
  11. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  12. PURPOSE.  
  13.  
  14. See W3C License http://www.w3.org/Consortium/Legal/ for more details.
  15.  
  16. -->
  17. <!DOCTYPE test SYSTEM "dom2.dtd">
  18. <test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-2" name="HTMLOptionsCollection06">
  19. <metadata>
  20. <title>HTMLOptionsCollection06</title>
  21. <creator>NIST</creator>
  22. <description>
  23.    An HTMLOptionsCollection is a list of nodes representing HTML option
  24.    element.
  25.    An individual node may be accessed by either ordinal index, the node's
  26.     name or id attributes.  (Test ordinal index).
  27.     The item() method retrieves a node specified by ordinal index.  
  28.     A value of null is returned if the index is out of range.
  29.  
  30.     Retrieve the first SELECT element.  Create a HTMLOptionsCollection.
  31.     Retrieve the tenth item in the list - null should be returned since
  32.     there are not 10 items in the list.
  33. </description>
  34. <contributor>Rick Rivello</contributor>
  35. <date qualifier="created">2002-08-01</date>
  36. <subject resource="http://www.w3.org/TR/DOM-Level-2-HTML/html#HTMLOptionsCollection-item"/>
  37. </metadata>
  38. <var name="nodeList" type="NodeList"/>
  39. <var name="testNode" type="Node"/>
  40. <var name="optionsNode" type="Node"/>
  41. <var name="optionsValueNode" type="Node"/>
  42. <var name="optionsList" type="HTMLOptionsCollection"/>
  43. <var name="vvalue" type="DOMString"/>
  44. <var name="doc" type="Document"/>
  45. <load var="doc" href="optionscollection" willBeModified="false"/>
  46. <getElementsByTagName interface="Document" obj="doc" var="nodeList" tagname='"select"'/>
  47. <assertSize collection="nodeList" size="2" id="Asize"/>
  48. <item interface="NodeList" obj="nodeList" var="testNode" index="0"/>
  49. <options interface="HTMLSelectElement" obj="testNode" var="optionsList"/>
  50. <item interface="HTMLOptionsCollection" obj="optionsList" var="optionsNode" index="10"/>
  51. <assertNull actual="optionsNode" id="optionsIndexLink"/>
  52. </test>
  53.