Tests BaseChar with an illegal character. The character #x04EC occurs as the first character of the PITarget in the PI in the DTD.
<!DOCTYPE animal [ <!ELEMENT animal ANY> <?Ӭ an illegal char #x4ec in PITarget ?> ]> <animal/>
| Expected result | Actual result for org.apache.crimson.parser.XMLReaderImpl |
|---|---|
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<fatalError/>
<endDocument/>
</ConformanceResults>
| <?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<processingInstruction>
<target>Ӭ</target>
<data>an\sillegal\schar\s#x4ec\n\sin\sPITarget\s</data>
</processingInstruction>
<startElement>
<namespaceURI/>
<localName>animal</localName>
<qualifiedName>animal</qualifiedName>
<attributes/>
</startElement>
<endElement>
<namespaceURI/>
<localName>animal</localName>
<qualifiedName>animal</qualifiedName>
</endElement>
<endDocument/>
</ConformanceResults>
|