Tests PI. The content of the PI includes the sequence "(less than)?".
<?xml version="1.0"?> <!DOCTYPE student [ <!ELEMENT student (#PCDATA)> ]> <!-- testing invalid PI with illegal sequence --> <?MyInstruct This is ?> a test ?> <student>My Name is SnowMan. </student>
| Expected result | Actual result for org.apache.crimson.parser.XMLReaderImpl |
|---|---|
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<processingInstruction>
<target>MyInstruct</target>
<data>This\sis\s</data>
</processingInstruction>
<fatalError/>
<endDocument/>
</ConformanceResults>
| <?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<processingInstruction>
<target>MyInstruct</target>
<data>This\sis\s</data>
</processingInstruction>
<fatalError/>
</ConformanceResults>
|