Reserved prefixes and namespaces: binding a reserved prefix
<?xml version="1.0"?> <!-- Reserved prefixes and namespaces: binding a reserved prefix --> <foo xmlns:xml2="http://example.org/namespace"/>
| Expected result | Actual result for oracle.xml.parser.v2.SAXParser |
|---|---|
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<startPrefixMapping>
<prefix>xml2</prefix>
<data>http://example.org/namespace</data>
</startPrefixMapping>
<startElement>
<namespaceURI/>
<localName>foo</localName>
<qualifiedName>foo</qualifiedName>
<attributes/>
</startElement>
<endElement>
<namespaceURI/>
<localName>foo</localName>
<qualifiedName>foo</qualifiedName>
</endElement>
<endPrefixMapping>
<prefix>xml2</prefix>
</endPrefixMapping>
<endDocument/>
</ConformanceResults>
| <?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<startPrefixMapping>
<prefix>xml2</prefix>
<data>http://example.org/namespace</data>
</startPrefixMapping>
<startElement>
<namespaceURI/>
<localName>foo</localName>
<qualifiedName>foo</qualifiedName>
<attributes>
<attribute>
<namespaceURI>http://www.w3.org/2000/xmlns/</namespaceURI>
<localName>xml2</localName>
<qualifiedName>xmlns:xml2</qualifiedName>
<value>http://example.org/namespace</value>
<type>CDATA</type>
</attribute>
</attributes>
</startElement>
<endElement>
<namespaceURI/>
<localName>foo</localName>
<qualifiedName>foo</qualifiedName>
</endElement>
<endPrefixMapping>
<prefix>xml2</prefix>
</endPrefixMapping>
<endDocument/>
</ConformanceResults>
|