summaryrefslogtreecommitdiff
path: root/test/testcases/tests/level3/ls/canonicalform13.xml
diff options
context:
space:
mode:
Diffstat (limited to 'test/testcases/tests/level3/ls/canonicalform13.xml')
-rw-r--r--test/testcases/tests/level3/ls/canonicalform13.xml61
1 files changed, 61 insertions, 0 deletions
diff --git a/test/testcases/tests/level3/ls/canonicalform13.xml b/test/testcases/tests/level3/ls/canonicalform13.xml
new file mode 100644
index 0000000..6399714
--- /dev/null
+++ b/test/testcases/tests/level3/ls/canonicalform13.xml
@@ -0,0 +1,61 @@
+<?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.
+
+-->
+
+<!DOCTYPE test SYSTEM "dom3.dtd">
+<test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-3" name="canonicalform13">
+<metadata>
+<title>canonicalform13</title>
+<creator>Curt Arnold</creator>
+<description>
+Serializing an XML 1.1 document when canonical-form raises a SERIALIZE_ERR.
+</description>
+<date qualifier="created">2004-03-31</date>
+<subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/load-save#LS-LSSerializer-writeToString"/>
+<subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-canonical-form"/>
+</metadata>
+<var name="doc" type="Document"/>
+<var name="domConfig" type="DOMConfiguration"/>
+<var name="domImplLS" type="DOMImplementationLS"/>
+<var name="lsSerializer" type="LSSerializer"/>
+<var name="docType" type="DocumentType" isNull="true"/>
+<var name="output" type="DOMString"/>
+<var name="canSet" type="boolean"/>
+<implementation var="domImplLS"/>
+<createLSSerializer var="lsSerializer" obj="domImplLS"/>
+<domConfig obj="lsSerializer" var="domConfig" interface="LSSerializer"/>
+<canSetParameter var="canSet" obj="domConfig" name='"canonical-form"' value="true"/>
+<if><isTrue value="canSet"/>
+<setParameter obj="domConfig" name='""' value="true"/>
+<createDocument var="doc" obj="domImplLS" namespaceURI='"http://www.example.org"'
+ qualifiedName='"test"' doctype="docType"/>
+<try>
+ <xmlVersion obj="doc" value='"1.1"' interface="Document"/>
+ <catch>
+ <DOMException code="NOT_SUPPORTED_ERR">
+ <return/>
+ </DOMException>
+ </catch>
+</try>
+<assertLSException id="throw_SERIALIZE_ERR">
+ <SERIALIZE_ERR>
+ <writeToString var="output" obj="lsSerializer" nodeArg="doc"/>
+ </SERIALIZE_ERR>
+</assertLSException>
+</if>
+</test>
+
+