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="elementsetidattributens11">
  19.  <metadata>
  20.    <title>elementsetidattributens11</title>
  21.    <creator>IBM</creator>
  22.    <description>
  23.     Declares the attribute specified by local name and namespace URI to be of type ID. If the value of the
  24.     specified attribute is unique then this element node can later be retrieved using getElementById on Document.
  25.     Note, however, that this simply affects this node and does not change any grammar that may be in use.
  26.    
  27.     Invoke setIdAttributeNS on two existing namespace attributes with same local name but different values.  Verify by calling
  28.     isId on the attributes node and getElementById with different values on document node.  
  29.    </description>
  30.    <contributor>Jenny Hsu</contributor>
  31.    <date qualifier="created">2003-02-26</date>
  32.    <subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ID-ElSetIdAttrNS"/>
  33.  </metadata>
  34.  <implementationAttribute name="namespaceAware" value="true"/>
  35.  <var name="doc" type="Document"/>
  36.  <var name="elemList" type="NodeList"/>
  37.  <var name="pElem1" type="Element"/>
  38.  <var name="pElem2" type="Element"/>
  39.  <var name="attributesMap" type="NamedNodeMap"/>
  40.  <var name="attr" type="Attr"/>
  41.  <var name="id" type="boolean" value="false"/>
  42.  <var name="elem" type="Element"/>
  43.  <var name="elemName" type="DOMString"/>
  44.  <load var="doc" href="hc_staff" willBeModified="false"/>
  45.  <getElementsByTagNameNS var="elemList" obj="doc" localName='"p"' namespaceURI='"*"' interface="Document"/>
  46.  <item var="pElem1" obj="elemList" index="1" interface="NodeList"/>
  47.  <item var="pElem2" obj="elemList" index="2" interface="NodeList"/>
  48.  <setIdAttributeNS obj="pElem1" localName='"dmstc"' namespaceURI='"http://www.w3.org/2000/xmlns/"' isId="true"/>
  49.  <setIdAttributeNS obj="pElem2" localName='"dmstc"' namespaceURI='"http://www.w3.org/2000/xmlns/"' isId="true"/>
  50.  <attributes var="attributesMap" obj="pElem1"/>
  51.  <getNamedItem var="attr" obj="attributesMap" name='"xmlns:dmstc"'/>
  52.  <isId var="id" obj="attr"/>
  53.  <assertTrue actual="id" id="elementsetidattributensIsId1True11"/>
  54.  <attributes var="attributesMap" obj="pElem2"/>
  55.  <getNamedItem var="attr" obj="attributesMap" name='"xmlns:dmstc"'/>
  56.  <isId var="id" obj="attr"/>
  57.  <assertTrue actual="id" id="elementsetidattributensIsId2True11"/>
  58.  <getElementById obj="doc" var="elem" elementId='"http://www.netzero.com"'/>
  59.  <tagName obj="elem" var="elemName"/>
  60.  <assertEquals actual="elemName" expected='"p"' id="elementsetidattributens1GetElementById11" ignoreCase="false"/>
  61.  <getElementById obj="doc" var="elem" elementId='"http://www.usa.com"'/>
  62.  <tagName obj="elem" var="elemName"/>
  63.  <assertEquals actual="elemName" expected='"p"' id="elementsetidattributens2GetElementById11" ignoreCase="false"/>
  64. </test>
  65.