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.  
  18. <!DOCTYPE test SYSTEM "dom3.dtd">
  19. <test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-3" name="noderemovechild21">
  20. <metadata>
  21. <title>noderemovechild21</title>
  22. <creator>IBM</creator>
  23. <description>
  24.         Using removeChild on a new Element node attempt to remove a new Element child
  25.         and verify the name of the returned node that was removed.  Now append the parent
  26.         to the documentElement and attempt to remove the child using removeChild on the
  27.         documentElement and verify if a NOT_FOUND_ERR is thrown.
  28. </description>
  29. <contributor>Neil Delima</contributor>
  30. <date qualifier="created">2002-06-10</date>
  31. <subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ID-1734834066"/>
  32. </metadata>
  33. <var name="doc" type="Document"/>
  34. <var name="docElem" type="Element"/>
  35. <var name="parent" type="Element"/>
  36. <var name="child" type="Element"/>
  37. <var name="removed" type="Element"/>
  38. <var name="removedName" type="DOMString"/>
  39. <var name="removedNode" type="Node"/>
  40. <var name="appendedChild" type="Node"/>
  41.  
  42. <load var="doc" href="hc_staff" willBeModified="true"/>
  43. <documentElement var="docElem" obj="doc"/>
  44. <createElementNS var="parent" obj="doc" namespaceURI='"http://www.w3.org/1999/xhtml"' qualifiedName='"dom3:p"'/>
  45. <createElementNS var="child" obj="doc" namespaceURI='"http://www.w3.org/1999/xhtml"' qualifiedName='"dom3:br"'/>
  46. <appendChild obj="parent" var="appendedChild" newChild="child"/>
  47. <appendChild obj="docElem" var="appendedChild" newChild="parent"/>
  48. <removeChild var="removed"  obj="parent" oldChild="child" />
  49. <nodeName obj="removed" var="removedName"/>
  50. <assertEquals actual="removedName" expected='"dom3:br"' id="noderemovechild21" ignoreCase="false"/>
  51. <assertDOMException id="throw_NOT_FOUND_ERR">
  52.         <NOT_FOUND_ERR>
  53.                 <removeChild obj="docElem" var="removedNode" oldChild="child" />
  54.         </NOT_FOUND_ERR>
  55. </assertDOMException>
  56. </test>
  57.