system literals may not contain URI fragments
<!--Inability to resolve a notation should not be reported as an error--> <!DOCTYPE doc [ <!ELEMENT doc EMPTY> <!NOTATION not1 SYSTEM "a%a&b�<!ELEMENT<!--<?</>?>/\''"> <!NOTATION not2 SYSTEM 'a b"""'> <!NOTATION not3 SYSTEM ""> <!NOTATION not4 SYSTEM ''> ]> <doc/>
Expected result | Actual result for net.sf.saxon.aelfred.SAXDriver |
---|---|
<?xml version="1.0" encoding="UTF-8"?> <ConformanceResults> <startDocument/> <notation> <name>not1</name> <systemID>a%a&b&#0<!ELEMENT<!--<?</>?>/\''</systemID> </notation> <notation> <name>not2</name> <systemID>a b"""</systemID> </notation> <notation> <name>not3</name> <systemID/> </notation> <notation> <name>not4</name> <systemID/> </notation> <startElement> <namespaceURI/> <localName>doc</localName> <qualifiedName>doc</qualifiedName> <attributes/> </startElement> <endElement> <namespaceURI/> <localName>doc</localName> <qualifiedName>doc</qualifiedName> </endElement> <endDocument/> </ConformanceResults> | <?xml version="1.0" encoding="UTF-8"?> <ConformanceResults> <startDocument/> <resolveEntity> <systemID>file:/home/elharo/SAXTest/xmlconf/oasis/p11pass1.xml</systemID> </resolveEntity> <notation> <name>not1</name> <systemID>a%a&b&#0<!ELEMENT<!--<?</>?>/\''</systemID> </notation> <notation> <name>not2</name> <systemID>a b"""</systemID> </notation> <notation> <name>not3</name> <systemID/> </notation> <notation> <name>not4</name> <systemID/> </notation> <startElement> <namespaceURI/> <localName>doc</localName> <qualifiedName>doc</qualifiedName> <attributes/> </startElement> <endElement> <namespaceURI/> <localName>doc</localName> <qualifiedName>doc</qualifiedName> </endElement> <endDocument/> </ConformanceResults> |