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="getAttributeNS04">
  19. <metadata>
  20. <title>getAttributeNS04</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 and value with the "setAttributeNS()" method.
  29.    The value returned by the "getAttributeNS()" method should be  
  30.    the string "NewValue" since the attribute had a specified 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;blank&quot;"/>
  38. <var name="qualifiedName" type="DOMString" value="&quot;emp:blank&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. <setAttributeNS obj="testAddr" namespaceURI="namespaceURI" qualifiedName="qualifiedName" value="&quot;NewValue&quot;"/>
  51. <getAttributeNS obj="testAddr" var="attrValue" namespaceURI="namespaceURI" localName="localName"/>
  52. <assertEquals actual="attrValue" expected="&quot;NewValue&quot;" id="throw_Equals" ignoreCase="false"/>
  53. </test>
  54.