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="importNode11">
  19. <metadata>
  20. <title>importNode11</title>
  21. <creator>NIST</creator>
  22. <description>
  23.     The "importNode(importedNode,deep)" method for a
  24.    Document should import the given importedNode into that Document.
  25.    The importedNode is of type Entity_Reference.
  26.    Only the EntityReference is copied, regardless of deep's value.
  27.    If the Document provides a definition for the entity name, its value is assigned.
  28.    
  29.    Create an entity reference whose name is "ent3" in a different document.
  30.    Invoke method importNode(importedNode,deep) on this document with importedNode
  31.    being "ent3".
  32.    Method should return a node of type Entity_Reference whose first child's value is "Texas" as defined
  33.    in this document.
  34. </description>
  35. <contributor>Mary Brady</contributor>
  36. <date qualifier="created">2001-08-17</date>
  37. <subject resource="http://www.w3.org/TR/DOM-Level-2-Core/core#Core-Document-importNode"/>
  38. </metadata>
  39. <var name="doc" type="Document"/>
  40. <var name="aNewDoc" type="Document"/>
  41. <var name="entRef" type="EntityReference"/>
  42. <var name="aNode" type="Node"/>
  43. <var name="name" type="DOMString"/>
  44. <var name="child" type="Node"/>
  45. <var name="childValue" type="DOMString"/>
  46. <load var="doc" href="staff" willBeModified="true"/>
  47. <load var="aNewDoc" href="staff" willBeModified="true"/>
  48. <createEntityReference obj="aNewDoc" var="entRef" name='"ent3"'/>
  49. <assertNotNull actual="entRef" id="createdEntRefNotNull"/>
  50. <importNode obj="doc" var="aNode" importedNode="entRef" deep="true"/>
  51. <nodeName obj="aNode" var="name"/>
  52. <assertEquals actual="name" id="entityName" expected='"ent3"' ignoreCase="false"/>
  53. <firstChild interface="Node" obj="aNode" var="child"/>
  54. <assertNotNull id="child" actual="child"/>
  55. <nodeValue obj="child" var="childValue"/>
  56. <assertEquals actual="childValue" id="childValue" expected='"Texas"' ignoreCase="false"/>
  57. </test>
  58.