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.xsl" 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="HTMLSelectElement03">
  20. <metadata>
  21. <title>HTMLSelectElement03</title>
  22. <creator>NIST</creator>
  23. <description>
  24.    The selectedIndex attribute specifies the ordinal index of the selected  
  25.    option.  If no element is selected -1 is returned.
  26.  
  27.    Retrieve the selectedIndex attribute from the second SELECT element and
  28.    examine its value.  
  29.  
  30.    Per http://www.w3.org/TR/html401/interact/forms.html#h-17.6.1,
  31.    without an explicit selected attribute, user agent behavior is
  32.    undefined.  There is no way to coerce no option to be selected.
  33. </description>
  34. <contributor>Mary Brady</contributor>
  35. <date qualifier="created">2002-02-22</date>
  36. <subject resource="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-85676760"/>
  37. </metadata>
  38. <var name="nodeList" type="NodeList"/>
  39. <var name="testNode" type="Node"/>
  40. <var name="vselectedindex" type="int"/>
  41. <var name="doc" type="Document"/>
  42. <load var="doc" href="select" willBeModified="false"/>
  43. <getElementsByTagName interface="Document" obj="doc" var="nodeList" tagname='"select"'/>
  44. <assertSize collection="nodeList" size="3" id="Asize"/>
  45. <item interface="NodeList" obj="nodeList" var="testNode" index="1"/>
  46. <selectedIndex interface="HTMLSelectElement" obj="testNode" var="vselectedindex"/>
  47. <!-- Commented assertion per section 17.6.3   -->
  48. <!-- assertEquals actual="vselectedindex" expected="-1" id="selectedIndexLink" ignoreCase="false"/ -->
  49. </test>
  50.