Tests XMLDecl with wrong field ordering. The VersionInfo occurs after the EncodingDecl.
<?xml encoding='ASCII' version='1.0'?> <!DOCTYPE doc [ <!ELEMENT doc EMPTY> ]> <doc/> <!-- Wrong ordering between VersionInfo and EncodingDecl 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/ibm23n02.xml</systemID> </resolveEntity> <fatalError/> <endDocument/> </ConformanceResults> |