Test case ibm-invalid-P32-ibm32i01.xml: oracle.xml.parser.v2.SAXParser Failed

Test case ibm-invalid-P32-ibm32i01.xml: oracle.xml.parser.v2.SAXParser Failed

This test violates VC: Standalone Document Declaration in P32. The standalone document declaration has the value yes, BUT there is an external markup declaration of attributes with default values, and the associated element appears in the document with specified values for those attributes.

<?xml version="1.0" standalone="yes" ?>
<!DOCTYPE animal SYSTEM "ibm32i01.dtd" [
   <!ELEMENT animal EMPTY>
]>
<!-- This is against VC: Standalone Document Declaration in P32
 The standalone document declaration has the value "yes", there is an external 
 markup declaration of attributes with default values, and the associated 
 element appears in the document with specified values for those attributes.   
-->
<animal/>
Expected resultActual result for oracle.xml.parser.v2.SAXParser
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
    <startDocument/>
    <resolveEntity>
        <systemID>file:/home/elharo/SAXTest/xmlconf/ibm/invalid/P32/ibm32i01.dtd</systemID>
    </resolveEntity>
    <startElement>
        <namespaceURI/>
        <localName>animal</localName>
        <qualifiedName>animal</qualifiedName>
        <attributes>
            <attribute>
                <namespaceURI/>
                <localName>color</localName>
                <qualifiedName>color</qualifiedName>
                <value>yellow</value>
                <type>CDATA</type>
            </attribute>
        </attributes>
    </startElement>
    <endElement>
        <namespaceURI/>
        <localName>animal</localName>
        <qualifiedName>animal</qualifiedName>
    </endElement>
    <endDocument/>
</ConformanceResults>
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
    <startDocument/>
    <startElement>
        <namespaceURI/>
        <localName>animal</localName>
        <qualifiedName>animal</qualifiedName>
        <attributes/>
    </startElement>
    <endElement>
        <namespaceURI/>
        <localName>animal</localName>
        <qualifiedName>animal</qualifiedName>
    </endElement>
    <endDocument/>
</ConformanceResults>