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-2003 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="hc_nodeclonenodetrue">
  15. <metadata>
  16. <title>hc_nodeCloneNodeTrue</title>
  17. <creator>Curt Arnold</creator>
  18. <description>
  19.     The "cloneNode(deep)" method returns a copy of the node
  20.     and the subtree under it if deep=true.
  21.    
  22.     Retrieve the second employee and invoke the
  23.     "cloneNode(deep)" method with deep=true.   The
  24.     method should clone this node and the subtree under it.
  25.     The NodeName of each child in the returned node is
  26.     checked to insure the entire subtree under the second
  27.     employee was cloned.
  28. </description>
  29.  
  30. <date qualifier="created">2002-06-09</date>
  31. <subject resource="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-3A0ED0A4"/>
  32. <subject resource="http://www.w3.org/Bugs/Public/show_bug.cgi?id=246"/>
  33. </metadata>
  34. <var name="doc" type="Document"/>
  35. <var name="elementList" type="NodeList"/>
  36. <var name="employeeNode" type="Node"/>
  37. <var name="clonedNode" type="Node"/>
  38. <var name="clonedList" type="NodeList"/>
  39. <var name="clonedChild" type="Node"/>
  40. <var name="clonedChildName" type="DOMString"/>
  41. <var name="origList" type="NodeList"/>
  42. <var name="origChild" type="Node"/>
  43. <var name="origChildName" type="DOMString"/>
  44. <var name="result" type="List"/>
  45. <var name="expected" type="List"/>
  46. <load var="doc" href="hc_staff" willBeModified="true"/>
  47. <getElementsByTagName interface="Document" obj="doc" tagname='"p"' var="elementList"/>
  48. <item interface="NodeList" obj="elementList" index="1" var="employeeNode"/>
  49. <childNodes obj="employeeNode" var="origList"/>
  50. <for-each collection="origList" member="origChild">
  51. <nodeName obj="origChild" var="origChildName"/>
  52. <append collection="expected" item="origChildName"/>
  53. </for-each>
  54. <cloneNode obj="employeeNode" deep="true" var="clonedNode"/>
  55. <childNodes obj="clonedNode" var="clonedList"/>
  56. <for-each collection="clonedList" member="clonedChild">
  57. <nodeName obj="clonedChild" var="clonedChildName"/>
  58. <append collection="result" item="clonedChildName"/>
  59. </for-each>
  60. <assertEquals actual="result" expected="expected" id="clone" ignoreCase="false"/>
  61. </test>
  62.