trunk/resources/tests/dom3/Core/canonicalform07.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="canonicalform07">
       
    20 <metadata>
       
    21 <title>canonicalform07</title>
       
    22 <creator>Curt Arnold</creator>
       
    23 <description>
       
    24 Normalize document with canonical-form set to true and validation set to true, check that
       
    25 whitespace in element content is preserved.
       
    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="bodyList" type="NodeList"/>
       
    34 <var name="body" 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="text" type="Text"/>
       
    42 <load var="doc" href="barfoo" willBeModified="true"/>
       
    43 <domConfig obj="doc" var="domConfig" interface="Document"/>
       
    44 <canSetParameter var="canSet" obj="domConfig" name='"canonical-form"' value="true"/>
       
    45 <if><isTrue value="canSet"/>
       
    46 <setParameter obj="domConfig" name='"canonical-form"' value="true"/>
       
    47 <setParameter obj="domConfig" name='"error-handler"' value="errorMonitor"/>
       
    48 <!-- if we discarded whitespace on parse, add some back  -->
       
    49 <if><implementationAttribute name="ignoringElementContentWhitespace" value="true"/>
       
    50 	<getElementsByTagName 
       
    51 		var="bodyList" 
       
    52 		obj="doc" 
       
    53 		tagname='"body"' 
       
    54 		interface="Document"/>
       
    55 	<item var="body" obj="bodyList" interface="NodeList" index="0"/>
       
    56 	<firstChild var="child" obj="body" interface="Node"/>
       
    57 	<createTextNode var="text" obj="doc" data='"    "'/>
       
    58 	<insertBefore var="child" obj="body" newChild="text" refChild="child"/>
       
    59 </if>
       
    60 <normalizeDocument obj="doc"/>
       
    61 <!--  fail test if normalize had any errors or fatal errors   -->
       
    62 <assertLowerSeverity obj="errorMonitor" id="normalizeError" severity="SEVERITY_ERROR"/>
       
    63 <getElementsByTagName 
       
    64 	var="bodyList" 
       
    65 	obj="doc" 
       
    66 	tagname='"body"' 
       
    67 	interface="Document"/>
       
    68 <item var="body" obj="bodyList" interface="NodeList" index="0"/>
       
    69 <firstChild var="child" obj="body" interface="Node"/>
       
    70 <assertNotNull actual="child" id="firstChildNotNull"/>
       
    71 <!--   this should be a Text node  -->
       
    72 <nodeName var="childName" obj="child"/>
       
    73 <assertEquals actual="childName" expected='"#text"' ignoreCase="false" id="firstChild"/>
       
    74 <nextSibling var="child" obj="child" interface="Node"/>
       
    75 <assertNotNull actual="child" id="secondChildNotNull"/>
       
    76 <nodeName var="childName" obj="child"/>
       
    77 <assertEquals actual="childName" expected='"p"' ignoreCase="false" id="secondChild"/>
       
    78 </if>
       
    79 </test> 
       
    80  
       
    81