Tests a user language code.
<!DOCTYPE root [ <!ELEMENT root EMPTY> <!ATTLIST root xml:lang CDATA #IMPLIED> ]> <root xml:lang="X-Java"/>
| Expected result | Actual result for com.bluecast.xml.Piccolo |
|---|---|
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<startElement>
<namespaceURI/>
<localName>root</localName>
<qualifiedName>root</qualifiedName>
<attributes>
<attribute>
<namespaceURI>http://www.w3.org/XML/1998/namespace</namespaceURI>
<localName>lang</localName>
<qualifiedName>xml:lang</qualifiedName>
<value>X-Java</value>
<type>CDATA</type>
</attribute>
</attributes>
</startElement>
<endElement>
<namespaceURI/>
<localName>root</localName>
<qualifiedName>root</qualifiedName>
</endElement>
<endDocument/>
</ConformanceResults>
| <?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<startElement>
<namespaceURI/>
<localName>root</localName>
<qualifiedName>root</qualifiedName>
<attributes>
<attribute>
<namespaceURI>http://www.w3.org/XML/1998/namespace</namespaceURI>
<localName>la</localName>
<qualifiedName>xml:lang</qualifiedName>
<value>X-Java</value>
<type>CDATA</type>
</attribute>
</attributes>
</startElement>
<endElement>
<namespaceURI/>
<localName>root</localName>
<qualifiedName>root</qualifiedName>
</endElement>
<endDocument/>
</ConformanceResults>
|