kolibrios/programs/network/netsurf/libdom/test/testcases/tests/level3/ls/LSParserConfig1.xml

62 lines
2.7 KiB
XML
Raw Normal View History

<?xml version="1.0" standalone="no"?>
<?xml-stylesheet href="test-to-html.xsl" type="text/xml"?>
<!--
Copyright (c) 2003 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="LSParserConfig1">
<metadata>
<title>LSParserConfig1</title>
<creator>Curt Arnold</creator>
<description>Checks initial state of parser configuration.</description>
<date qualifier="created">2003-12-08</date>
<subject resource="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/load-save#LS-LSParser-config"/>
</metadata>
<var name="domImpl" type="DOMImplementationLS"/>
<var name="parser" type="LSParser"/>
<var name="config" type="DOMConfiguration"/>
<var name="state" type="boolean"/>
<var name="resolver" type="LSResourceResolver"/>
<var name="NULL_SCHEMA_TYPE" type="DOMString" isNull="true"/>
<implementation var="domImpl"/>
<createLSParser var="parser" obj="domImpl" schemaType="NULL_SCHEMA_TYPE" mode="1"/>
<domConfig var="config" obj="parser" interface="LSParser"/>
<assertNotNull actual="config" id="configNotNull"/>
<getParameter var="state" obj="config" name='"cHarset-overrides-xml-encoding"'/>
<assertTrue actual="state" id="charset-overrides-xml-encoding-is-true"/>
<getParameter var="state" obj="config" name='"dIsallow-doctype"'/>
<assertFalse actual="state" id="disallow-doctype-is-false"/>
<getParameter var="state" obj="config" name='"iGnore-unknown-character-denormalizations"'/>
<assertTrue actual="state" id="ignore-unknown-character-denormalizations-is-true"/>
<getParameter var="state" obj="config" name='"iNfoset"'/>
<assertTrue actual="state" id="infoset-is-true"/>
<getParameter var="state" obj="config" name='"nAmespaces"'/>
<assertTrue actual="state" id="namespaces-is-true"/>
<getParameter var="resolver" obj="config" name='"rEsource-resolver"'/>
<assertNull actual="resolver" id="resource-resolver-is-null"/>
<getParameter var="state" obj="config" name='"sUpported-media-types-only"'/>
<assertFalse actual="state" id="supported-media-types-only-is-false"/>
<getParameter var="state" obj="config" name='"wEll-formed"'/>
<assertTrue actual="state" id="well-formed-is-true"/>
</test>