Tests prolog with wrong field ordering. The XMLDecl occurs after the DTD and a comment. The other comment occurs before the DTD.
<!-- Wrong ordering patter 4 --> <!DOCTYPE doc [ <!ELEMENT doc EMPTY> ]> <!-- Wrong ordering Misc, DTD, Misc, and XMLDecl --> <?xml version="1.0" encoding="ASCII" ?> <doc/>
Expected result | Actual result for com.bluecast.xml.Piccolo |
---|---|
<?xml version="1.0" encoding="UTF-8"?> <ConformanceResults> <startDocument/> <fatalError/> <endDocument/> </ConformanceResults> | <?xml version="1.0" encoding="UTF-8"?> <ConformanceResults> <startDocument/> <fatalError/> <endDocument/> </ConformanceResults> |