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="HTMLInputElement08">
  20. <metadata>
  21. <title>HTMLInputElement08</title>
  22. <creator>NIST</creator>
  23. <description>
  24.    The checked attribute represents the current state of the corresponding
  25.    form control when type has the value Radio or Checkbox.
  26.  
  27.    Retrieve the accept attribute of the 3rd INPUT element and examine
  28.    its value.  
  29. </description>
  30. <contributor>Mary Brady</contributor>
  31. <date qualifier="created">2002-02-22</date>
  32. <subject resource="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-30233917"/>
  33. </metadata>
  34. <var name="nodeList" type="NodeList"/>
  35. <var name="testNode" type="Node"/>
  36. <var name="vchecked" type="boolean" />
  37. <var name="doc" type="Document"/>
  38. <load var="doc" href="input" willBeModified="false"/>
  39. <getElementsByTagName interface="Document" obj="doc" var="nodeList" tagname='"input"'/>
  40. <assertSize collection="nodeList" size="9" id="Asize"/>
  41. <item interface="NodeList" obj="nodeList" var="testNode" index="2"/>
  42. <checked interface="HTMLInputElement" obj="testNode" var="vchecked"/>
  43. <assertTrue actual="vchecked" id="checkedLink"/>
  44. </test>
  45.