trunk/resources/tests/dom3/Core/datatypenormalization11.xml
changeset 0 5057afe1ec87
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/trunk/resources/tests/dom3/Core/datatypenormalization11.xml	Tue Apr 08 19:47:42 2008 +0000
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="test-to-html.xsl" type="text/xml"?>
+
+<!--
+
+Copyright (c) 2004 World Wide Web Consortium, 
+(Massachusetts Institute of Technology, Institut National de
+Recherche en Informatique et en Automatique, Keio University).  All 
+Rights Reserved.  This program is distributed under the W3C's Software
+Intellectual Property License.  This program is distributed in the 
+hope that it will be useful, but WITHOUT ANY WARRANTY; without even
+the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+PURPOSE.  
+
+See W3C License http://www.w3.org/Consortium/Legal/ for more details.
+
+-->
+
+
+<test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-3" name="datatypenormalization11">
+<metadata>
+<title>datatypenormalization11</title>
+<creator>Curt Arnold</creator>
+<description>
+The default value for the dateTime element must be provided in canonical lexical form.
+</description>
+<date qualifier="created">2004-02-24</date>
+<subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-normalizeDocument"/>
+<subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-datatype-normalization"/>
+</metadata>
+<implementationAttribute name="namespaceAware" value="true"/>
+<var name="doc" type="Document"/>
+<var name="elemList" type="NodeList"/>
+<var name="element" type="Element"/>
+<var name="domConfig" type="DOMConfiguration"/>
+<var name="str" type="DOMString"/>
+<var name="canSetNormalization" type="boolean"/>
+<var name="canSetValidate" type="boolean"/>
+<var name="canSetXMLSchema" type="boolean"/>
+<var name="xsdNS" type="DOMString" value='"http://www.w3.org/2001/XMLSchema"'/>
+<var name="errorMonitor" type="DOMErrorMonitor"/>
+<load var="doc" href="datatype_normalization" willBeModified="true"/>
+
+<domConfig obj="doc" var="domConfig" interface="Document"/>
+<canSetParameter var="canSetNormalization" obj="domConfig" name='"datatype-normalization"' value="true"/>
+<canSetParameter var="canSetValidate" obj="domConfig" name='"validate"' value="true"/>
+<canSetParameter var="canSetXMLSchema" obj="domConfig"  name='"schema-type"' value="xsdNS"/>
+<if>
+	<and>
+		<isTrue value="canSetNormalization"/>
+		<isTrue value="canSetValidate"/>
+		<isTrue value="canSetXMLSchema"/>
+	</and>
+	<setParameter obj="domConfig" name='"datatype-normalization"' value="true"/>
+	<setParameter obj="domConfig" name='"validate"' value="true"/>
+	<setParameter obj="domConfig" name='"schema-type"' value='xsdNS'/>
+	<setParameter obj="domConfig" name='"error-handler"' value="errorMonitor"/>
+	<normalizeDocument obj="doc"/>
+	<!--  fail test if normalize had any errors or fatal errors   -->
+	<assertLowerSeverity obj="errorMonitor" id="normalizeError" severity="SEVERITY_ERROR"/>
+	<getElementsByTagNameNS 
+		var="elemList" 
+		obj="doc" 
+		namespaceURI='"http://www.w3.org/2001/DOM-Test-Suite/Level-3/datatype_normalization"' 
+		localName='"dateTime"' 
+		interface="Document"/>
+	<item var="element" obj="elemList" interface="NodeList" index="0"/>
+	<getAttribute var="str" obj="element" name='"default"'/>
+	<!-- .0 would not be correct, see http://www.w3.org/2001/05/xmlschema-errata#E2-63    -->
+	<assertEquals actual="str" expected='"2004-01-21T20:30:00Z"' ignoreCase="false" id="firstValue"/>
+</if>
+</test> 
+ 
+