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="nodereplacechild38">
  20. <metadata>
  21. <title>nodereplacechild38</title>
  22. <creator>IBM</creator>
  23. <description>
  24.         Using replaceChild on an Entity node attempt to replace its Text child with new Text,
  25.         Comment, ProcessingInstruction and CDATASection nodes and in each case verify if
  26.         a NO_MODIFICATION_ALLOWED_ERR is raised.
  27. </description>
  28. <contributor>Neil Delima</contributor>
  29. <date qualifier="created">2002-06-10</date>
  30. <subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ID-785887307"/>
  31. </metadata>
  32. <var name="doc" type="Document"/>
  33. <var name="docType" type="DocumentType"/>
  34. <var name="entitiesMap" type="NamedNodeMap"/>
  35. <var name="ent" type="Entity"/>
  36. <var name="oldChild" type="Text"/>
  37. <var name="entRef" type="EntityReference"/>
  38. <var name="txt" type="Text"/>
  39. <var name="elem" type="Element"/>
  40. <var name="comment" type="Comment"/>
  41. <var name="pi" type="ProcessingInstruction"/>
  42. <var name="cdata" type="CDATASection"/>
  43. <var name="replaced" type="Node"/>
  44. <load var="doc" href="hc_staff" willBeModified="true"/>
  45. <doctype var="docType" obj="doc" />
  46. <entities var="entitiesMap" obj="docType" />
  47. <getNamedItem var="ent" obj="entitiesMap" name='"alpha"'/>
  48. <assertNotNull actual="ent" id="alphaEntity"/>
  49. <firstChild var="oldChild" obj="ent" interface="Node"/>
  50. <assertNotNull actual="oldChild" id="alphaText"/>
  51. <createCDATASection var="cdata" obj="doc" data='"CDATASection"'/>
  52. <assertDOMException id="throw_NO_MODIFICATION_ALLOWED_ERR1">
  53.         <NO_MODIFICATION_ALLOWED_ERR>
  54.                 <replaceChild obj="ent" var="replaced" oldChild="oldChild" newChild="cdata"/>
  55.         </NO_MODIFICATION_ALLOWED_ERR>
  56. </assertDOMException>
  57. <createProcessingInstruction var="pi" obj="doc" target='"target"' data='"data"'/>
  58. <assertDOMException id="throw_NO_MODIFICATION_ALLOWED_ERR2">
  59.         <NO_MODIFICATION_ALLOWED_ERR>
  60.                 <replaceChild obj="ent" var="replaced" oldChild="oldChild" newChild="pi"/>
  61.         </NO_MODIFICATION_ALLOWED_ERR>
  62. </assertDOMException>
  63. <createComment var="comment" obj="doc" data='"Comment"'/>
  64. <assertDOMException id="throw_NO_MODIFICATION_ALLOWED_ERR3">
  65.         <NO_MODIFICATION_ALLOWED_ERR>
  66.                 <replaceChild obj="ent" var="replaced" oldChild="oldChild" newChild="comment"/>
  67.         </NO_MODIFICATION_ALLOWED_ERR>
  68. </assertDOMException>
  69. <createTextNode var="txt" obj="doc" data='"Text"'/>
  70. <assertDOMException id="throw_NO_MODIFICATION_ALLOWED_ERR4">
  71.         <NO_MODIFICATION_ALLOWED_ERR>
  72.                 <replaceChild obj="ent" var="replaced" oldChild="oldChild" newChild="txt"/>
  73.         </NO_MODIFICATION_ALLOWED_ERR>
  74. </assertDOMException>
  75. <createElementNS var="elem" obj="doc" namespaceURI='"http://www.w3.org/1999/xhtml"' qualifiedName='"xhtml:p"'/>
  76. <assertDOMException id="throw_NO_MODIFICATION_ALLOWED_ERR5">
  77.         <NO_MODIFICATION_ALLOWED_ERR>
  78.                 <replaceChild obj="ent" var="replaced" oldChild="oldChild" newChild="elem"/>
  79.         </NO_MODIFICATION_ALLOWED_ERR>
  80. </assertDOMException>
  81. <createEntityReference var="entRef" obj="doc" name='"delta"'/>
  82. <assertDOMException id="throw_NO_MODIFICATION_ALLOWED_ERR6">
  83.         <NO_MODIFICATION_ALLOWED_ERR>
  84.                 <replaceChild obj="ent" var="replaced" oldChild="oldChild" newChild="entRef"/>
  85.         </NO_MODIFICATION_ALLOWED_ERR>
  86. </assertDOMException>
  87. </test>
  88.