mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-02-13 09:58:22 +03:00
This caused failures in the HTML push tests but the fix required to change the expected output of the HTML SAX tests.
28 lines
614 B
Plaintext
28 lines
614 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.startElement(body)
|
|
SAX.error: htmlParseEntityRef: expecting ';'
|
|
SAX.error: htmlParseEntityRef: no name
|
|
SAX.startElement(p, tst='a&b', tst2='a&b', tst3='a & b')
|
|
SAX.characters(
|
|
a, 2)
|
|
SAX.characters(&, 1)
|
|
SAX.characters(b
|
|
a, 3)
|
|
SAX.error: htmlParseEntityRef: expecting ';'
|
|
SAX.characters(&, 1)
|
|
SAX.characters(b, 1)
|
|
SAX.characters(
|
|
a , 3)
|
|
SAX.error: htmlParseEntityRef: no name
|
|
SAX.characters(&, 1)
|
|
SAX.characters( b
|
|
, 3)
|
|
SAX.endElement(p)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(body)
|
|
SAX.endElement(html)
|
|
SAX.endDocument()
|