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"?><?xml-stylesheet href="test-to-html.xsl" type="text/xml"?>
  2.  
  3. <!--
  4.  
  5. Copyright (c) 2001-2004 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 "dom3.dtd">
  18. <test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-3" name="elementsetidattributenode08">
  19.  <metadata>
  20.    <title>elementsetidattributenode08</title>
  21.    <creator>IBM</creator>
  22.    <description>
  23.     This method declares the attribute specified by node to be of type ID. If the value of the specified attribute
  24.     is unique then this element node can later be retrieved using getElementById on Document. Note, however,
  25.     that this simply affects this node and does not change any grammar that may be in use.
  26.    
  27.     Invoke setIdAttributeNode on the 2nd acronym element and 3rd p element using the title and xmlns:dmstc attributes respectively
  28.     as parameters .  Verify by calling isID on the attribute node and getElementById on document node.  
  29.    </description>
  30.    <contributor>Jenny Hsu</contributor>
  31.    <date qualifier="created">2003-02-27</date>
  32.    <subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ID-ElSetIdAttrNode"/>
  33.  </metadata>
  34.  <implementationAttribute name="namespaceAware" value="true"/>
  35.  <var name="doc" type="Document"/>
  36.  <var name="elemList1" type="NodeList"/>
  37.  <var name="elemList2" type="NodeList"/>
  38.  <var name="acronymElem" type="Element"/>
  39.  <var name="pElem" type="Element"/>
  40.  <var name="attributesMap" type="NamedNodeMap"/>
  41.  <var name="attr" type="Attr"/>
  42.  <var name="id" type="boolean" value="false"/>
  43.  <var name="elem" type="Element"/>
  44.  <var name="elemName" type="DOMString"/>
  45.  <load var="doc" href="hc_staff" willBeModified="false"/>
  46.  <getElementsByTagNameNS var="elemList1" obj="doc" localName='"acronym"' namespaceURI='"*"' interface="Document"/>
  47.  <getElementsByTagNameNS var="elemList2" obj="doc" localName='"p"' namespaceURI='"*"' interface="Document"/>
  48.  <item var="acronymElem" obj="elemList1" index="1" interface="NodeList"/>
  49.  <item var="pElem" obj="elemList2" index="2" interface="NodeList"/>
  50.  <attributes var="attributesMap" obj="acronymElem"/>
  51.  <getNamedItem var="attr" obj="attributesMap" name='"title"'/>
  52.  <setIdAttributeNode obj="acronymElem" idAttr="attr" isId="true"/>
  53.  <isId var="id" obj="attr"/>
  54.  <assertTrue actual="id" id="elementsetidattributenodeIsId1True08"/>
  55.  <attributes var="attributesMap" obj="pElem"/>
  56.  <getNamedItem var="attr" obj="attributesMap" name='"xmlns:dmstc"'/>
  57.  <setIdAttributeNode obj="pElem" idAttr="attr" isId="true"/>
  58.  <isId var="id" obj="attr"/>
  59.  <assertTrue actual="id" id="elementsetidattributenodeIsId2True08"/>
  60.  <getElementById obj="doc" var="elem" elementId='"Yes"'/>
  61.  <tagName obj="elem" var="elemName"/>
  62.  <assertEquals actual="elemName" expected='"acronym"' id="elementsetidattributenode1GetElementById08" ignoreCase="false"/>
  63.  <getElementById obj="doc" var="elem" elementId='"http://www.netzero.com"'/>
  64.  <tagName obj="elem" var="elemName"/>
  65.  <assertEquals actual="elemName" expected='"p"' id="elementsetidattributenode2GetElementById08" ignoreCase="false"/>
  66. </test>
  67.