trunk/resources/tests/dom3/Core/canonicalform02.xml
changeset 0 5057afe1ec87
equal deleted inserted replaced
-1:000000000000 0:5057afe1ec87
       
     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 
       
    19 <test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-3" name="canonicalform02">
       
    20 <metadata>
       
    21 <title>canonicalform02</title>
       
    22 <creator>Curt Arnold</creator>
       
    23 <description>
       
    24 Normalize document with normalize-characters set to false, check that
       
    25 characters are not normalized.
       
    26 </description>
       
    27 <date qualifier="created">2004-02-24</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 <subject resource="http://www.w3.org/TR/2003/WD-charmod-20030822/"/>
       
    31 </metadata>
       
    32 <implementationAttribute name="namespaceAware" value="true"/>
       
    33 <var name="doc" type="Document"/>
       
    34 <var name="docElem" type="Element"/>
       
    35 <var name="domConfig" type="DOMConfiguration"/>
       
    36 <var name="errorMonitor" type="DOMErrorMonitor"/>
       
    37 <var name="pList" type="NodeList"/>
       
    38 <var name="pElem" type="Element"/>
       
    39 <var name="text" type="Text"/>
       
    40 <var name="textValue" type="DOMString"/>
       
    41 <var name="retval" type="Node"/>
       
    42 <var name="canSet" type="boolean"/>
       
    43 <load var="doc" href="barfoo" willBeModified="true"/>
       
    44 <domConfig obj="doc" var="domConfig" interface="Document"/>
       
    45 <canSetParameter var="canSet" obj="domConfig" name='"canonical-form"' value="true"/>
       
    46 <if><isTrue value="canSet"/>
       
    47 <setParameter obj="domConfig" name='"canonical-form"' value="true"/>
       
    48 <setParameter obj="domConfig" name='"error-handler"' value="errorMonitor"/>
       
    49 <getElementsByTagName var="pList" obj="doc" tagname='"p"' interface="Document"/>
       
    50 <item var="pElem" obj="pList" index="0" interface="NodeList"/>
       
    51 <!--  character entity is expanded during code generation
       
    52         code equivalent to "suc\u0327on"    -->
       
    53 <createTextNode var="text" obj="doc" data='"suc&#x327;on"'/>
       
    54 <appendChild var="retval" obj="pElem" newChild="text"/>
       
    55 <normalizeDocument obj="doc"/>
       
    56 <!--  fail test if normalize had any errors or fatal errors   -->
       
    57 <assertLowerSeverity obj="errorMonitor" id="normalizeError" severity="SEVERITY_ERROR"/>
       
    58 <getElementsByTagName var="pList" obj="doc" tagname='"p"' interface="Document"/>
       
    59 <item var="pElem" obj="pList" index="0" interface="NodeList"/>
       
    60 <firstChild var="text" obj="pElem" interface="Node"/>
       
    61 <nodeValue var="textValue" obj="text"/>
       
    62 <assertEquals actual="textValue" expected='"barsuc&#x327;on"' 
       
    63 	ignoreCase="false" id="noCharNormalization"/> 
       
    64 </if>
       
    65 </test> 
       
    66  
       
    67