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) 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="canonicalform01">
  20. <metadata>
  21. <title>canonicalform01</title>
  22. <creator>Curt Arnold</creator>
  23. <description>
  24. Normalize document with 'canonical-form' set to true, check that
  25. entity references are expanded and unused entity declaration are maintained.
  26. </description>
  27. <date qualifier="created">2004-02-26</date>
  28. <subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-normalizeDocument"/>
  29. <subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-canonical-form"/>
  30. </metadata>
  31. <implementationAttribute name="namespaceAware" value="true"/>
  32. <var name="doc" type="Document"/>
  33. <var name="pList" type="NodeList"/>
  34. <var name="pElem" type="Element"/>
  35. <var name="domConfig" type="DOMConfiguration"/>
  36. <var name="canSet" type="boolean"/>
  37. <var name="canSetValidate" type="boolean"/>
  38. <var name="errorMonitor" type="DOMErrorMonitor"/>
  39. <var name="child" type="Node"/>
  40. <var name="childName" type="DOMString"/>
  41. <var name="entRef" type="EntityReference"/>
  42. <var name="childValue" type="DOMString"/>
  43. <var name="entities" type="NamedNodeMap"/>
  44. <var name="ent2" type="Entity"/>
  45. <var name="doctype" type="DocumentType"/>
  46. <load var="doc" href="barfoo" willBeModified="true"/>
  47. <domConfig obj="doc" var="domConfig" interface="Document"/>
  48. <canSetParameter var="canSet" obj="domConfig" name='"canonical-form"' value="true"/>
  49. <if><isTrue value="canSet"/>
  50. <setParameter obj="domConfig" name='"canonical-form"' value="true"/>
  51. <setParameter obj="domConfig" name='"error-handler"' value="errorMonitor"/>
  52. <!--  add an entity reference to the content of the p element  -->
  53. <getElementsByTagName
  54.         var="pList"
  55.         obj="doc"
  56.         tagname='"p"'
  57.         interface="Document"/>
  58. <item var="pElem" obj="pList" interface="NodeList" index="0"/>
  59. <createEntityReference var="entRef" obj="doc" name='"ent1"'/>
  60. <appendChild var="child" obj="pElem" newChild="entRef"/>
  61. <normalizeDocument obj="doc"/>
  62. <!--  fail test if normalize had any errors or fatal errors   -->
  63. <assertLowerSeverity obj="errorMonitor" id="normalizeError" severity="SEVERITY_ERROR"/>
  64. <getElementsByTagName
  65.         var="pList"
  66.         obj="doc"
  67.         tagname='"p"'
  68.         interface="Document"/>
  69. <item var="pElem" obj="pList" interface="NodeList" index="0"/>
  70. <lastChild var="child" obj="pElem" interface="Node"/>
  71. <assertNotNull actual="child" id="lastChildNotNull"/>
  72. <!--   this should be a Text node  -->
  73. <nodeName var="childName" obj="child"/>
  74. <assertEquals actual="childName" expected='"#text"' ignoreCase="false" id="firstChildName"/>
  75. <nodeValue var="childValue" obj="child"/>
  76. <assertEquals actual="childValue" expected='"barfoo"' ignoreCase="false" id="firstChildValue"/>
  77. </if>
  78. </test>
  79.  
  80.  
  81.