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 "dom2.dtd">
  18. <test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-2" name="getAttributeNS02">
  19. <metadata>
  20. <title>getAttributeNS02</title>
  21. <creator>NIST</creator>
  22. <description>
  23.     The "getAttributeNS(namespaceURI,localName)" method retrieves an
  24.    attribute value by local name and NamespaceURI.
  25.    
  26.    Retrieve the first "emp:address" element.
  27.    Create a new attribute with the "createAttributeNS()" method.
  28.    Add the new attribute with the "setAttributeNS()" method.
  29.    The value returned by the "getAttributeNS()" method should be the
  30.    empty string since the attribute does not have a default value.
  31. </description>
  32. <contributor>Mary Brady</contributor>
  33. <date qualifier="created">2001-08-17</date>
  34. <subject resource="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-ElGetAttrNS"/>
  35. </metadata>
  36. <var name="namespaceURI" type="DOMString" value="&quot;http://www.nist.gov&quot;"/>
  37. <var name="localName" type="DOMString" value="&quot;district&quot;"/>
  38. <var name="qualifiedName" type="DOMString" value="&quot;emp:district&quot;"/>
  39. <var name="doc" type="Document"/>
  40. <var name="newAttribute" type="Attr"/>
  41. <var name="elementList" type="NodeList"/>
  42. <var name="testAddr" type="Element"/>
  43. <var name="districtAttr" type="Attr"/>
  44. <var name="attrValue" type="DOMString"/>
  45. <load var="doc" href="staffNS" willBeModified="true"/>
  46. <createAttributeNS obj="doc" var="newAttribute" namespaceURI="namespaceURI" qualifiedName="qualifiedName"/>
  47. <getElementsByTagName interface="Document" obj="doc" tagname="&quot;emp:address&quot;" var="elementList"/>
  48. <item interface="NodeList" obj="elementList" index="0" var="testAddr"/>
  49. <assertNotNull actual="testAddr" id="empAddrNotNull"/>
  50. <setAttributeNodeNS obj="testAddr" var="districtAttr" newAttr="newAttribute"/>
  51. <getElementsByTagName interface="Document" obj="doc" tagname="&quot;emp:address&quot;" var="elementList"/>
  52. <item interface="NodeList" obj="elementList" index="0" var="testAddr"/>
  53. <getAttributeNS obj="testAddr" var="attrValue" namespaceURI="namespaceURI" localName="localName"/>
  54. <assertEquals actual="attrValue" expected="&quot;&quot;" id="throw_Equals" ignoreCase="false"/>
  55. </test>
  56.