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="elementsetidattributens12">
  19.  <metadata>
  20.    <title>elementsetidattributens12</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.     Set the noNamespaceSchemaLocation attribute on the first acronym element to "No".  Invoke setIdAttributeNS on the
  28.     noNamespaceSchemaLocation attribute of the first, second and third acronym element.  Verify by calling isId on
  29.     the attributes.  Calling getElementById with "No" as a value should return the acronym element.  
  30.    </description>
  31.    <contributor>Jenny Hsu</contributor>
  32.    <date qualifier="created">2003-02-26</date>
  33.    <subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ID-ElSetIdAttrNS"/>
  34.  </metadata>
  35.  <implementationAttribute name="namespaceAware" value="true"/>
  36.  <var name="doc" type="Document"/>
  37.  <var name="elemList" type="NodeList"/>
  38.  <var name="acronymElem1" type="Element"/>
  39.  <var name="acronymElem2" type="Element"/>
  40.  <var name="acronymElem3" type="Element"/>
  41.  <var name="attributesMap" type="NamedNodeMap"/>
  42.  <var name="attr" type="Attr"/>
  43.  <var name="id" type="boolean" value="false"/>
  44.  <var name="elem" type="Element"/>
  45.  <var name="elemName" type="DOMString"/>
  46.  <load var="doc" href="hc_staff" willBeModified="false"/>
  47.  <getElementsByTagNameNS var="elemList" obj="doc" localName='"acronym"' namespaceURI='"*"' interface="Document"/>
  48.  <item var="acronymElem1" obj="elemList" index="0" interface="NodeList"/>
  49.  <item var="acronymElem2" obj="elemList" index="1" interface="NodeList"/>
  50.  <item var="acronymElem3" obj="elemList" index="2" interface="NodeList"/>
  51.  <setAttributeNS obj="acronymElem1" qualifiedName='"xsi:noNamespaceSchemaLocation"' namespaceURI='"http://www.w3.org/2001/XMLSchema-instance"' value='"No"'/>
  52.  <setIdAttributeNS obj="acronymElem1" localName='"noNamespaceSchemaLocation"' namespaceURI='"http://www.w3.org/2001/XMLSchema-instance"' isId="true"/>
  53.  <setIdAttributeNS obj="acronymElem2" localName='"noNamespaceSchemaLocation"' namespaceURI='"http://www.w3.org/2001/XMLSchema-instance"' isId="true"/>
  54.  <setIdAttributeNS obj="acronymElem3" localName='"noNamespaceSchemaLocation"' namespaceURI='"http://www.w3.org/2001/XMLSchema-instance"' isId="true"/>
  55.  <attributes var="attributesMap" obj="acronymElem1"/>
  56.  <getNamedItem var="attr" obj="attributesMap" name='"xsi:noNamespaceSchemaLocation"'/>
  57.  <isId var="id" obj="attr"/>
  58.  <assertTrue actual="id" id="elementsetidattributensIsId1True12"/>
  59.  <attributes var="attributesMap" obj="acronymElem2"/>
  60.  <getNamedItem var="attr" obj="attributesMap" name='"xsi:noNamespaceSchemaLocation"'/>
  61.  <isId var="id" obj="attr"/>
  62.  <assertTrue actual="id" id="elementsetidattributensIsId2True12"/>
  63.  <attributes var="attributesMap" obj="acronymElem3"/>
  64.  <getNamedItem var="attr" obj="attributesMap" name='"xsi:noNamespaceSchemaLocation"'/>
  65.  <isId var="id" obj="attr"/>
  66.  <assertTrue actual="id" id="elementsetidattributensIsId3True12"/>
  67.  <getElementById obj="doc" var="elem" elementId='"No"'/>
  68.  <tagName obj="elem" var="elemName"/>
  69.  <assertEquals actual="elemName" expected='"acronym"' id="elementsetidattributensGetElementById10" ignoreCase="false"/>
  70.  </test>
  71.