Tests XMLDecl with wrong field ordering. The VersionInfo occurs after the SDDecl and the SDDecl occurs after the VersionInfo.
<?xml encoding='ASCII' standalone='yes' version='1.0'?> <!DOCTYPE doc [ <!ELEMENT doc EMPTY> ]> <doc/> <!-- Wrong ordering EncodingDecl, SDDecl, and VersionInfo in XMLDecl -->
| Expected result | Actual result for net.sf.saxon.aelfred.SAXDriver |
|---|---|
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<fatalError/>
<endDocument/>
</ConformanceResults>
| <?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<resolveEntity>
<systemID>file:/home/elharo/SAXTest/xmlconf/ibm/not-wf/P23/ibm23n03.xml</systemID>
</resolveEntity>
<fatalError/>
<endDocument/>
</ConformanceResults>
|