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"?>
  2. <!--
  3. Copyright (c) 2001-2004 World Wide Web Consortium,
  4. (Massachusetts Institute of Technology, Institut National de
  5. Recherche en Informatique et en Automatique, Keio University). All
  6. Rights Reserved. This program is distributed under the W3C's Software
  7. Intellectual Property License. This program is distributed in the
  8. hope that it will be useful, but WITHOUT ANY WARRANTY; without even
  9. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  10. PURPOSE.
  11. See W3C License http://www.w3.org/Consortium/Legal/ for more details.
  12. --><!DOCTYPE test SYSTEM "dom1.dtd">
  13.  
  14. <test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-1" name="elementremoveattribute">
  15. <metadata>
  16. <title>elementRemoveAttribute</title>
  17. <creator>NIST</creator>
  18. <description>
  19.     The "removeAttribute(name)" removes an attribute by name.
  20.    If the attribute has a default value, it is immediately
  21.    replaced.
  22.    
  23.    Retrieve the attribute named "street" from the last child
  24.    of the fourth employee, then remove the "street"
  25.    attribute by invoking the "removeAttribute(name)" method.
  26.    The "street" attribute has a default value defined in the
  27.    DTD file, that value should immediately replace the old
  28.    value.
  29. </description>
  30. <contributor>Mary Brady</contributor>
  31. <date qualifier="created">2001-08-17</date>
  32. <subject resource="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-6D6AC0F9"/>
  33. <!--  DOM WG opinion on default attributes -->
  34. <subject resource="http://lists.w3.org/Archives/Public/www-dom-ts/2002Mar/0002.html"/>
  35. </metadata>
  36. <implementationAttribute name="validating" value="true"/>
  37. <var name="doc" type="Document"/>
  38. <var name="elementList" type="NodeList"/>
  39. <var name="testEmployee" type="Element"/>
  40. <var name="attrValue" type="DOMString"/>
  41. <load var="doc" href="staff" willBeModified="true"/>
  42. <getElementsByTagName interface="Document" obj="doc" tagname='"address"' var="elementList"/>
  43. <item interface="NodeList" obj="elementList" index="3" var="testEmployee"/>
  44. <removeAttribute obj="testEmployee" name='"street"'/>
  45. <getAttribute obj="testEmployee" var="attrValue" name='"street"'/>
  46. <assertEquals actual="attrValue" expected='"Yes"' id="streetYes" ignoreCase="false"/>
  47. </test>
  48.