mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-28 17:47:00 +03:00
0b2d5c48e3
This caused failures in the HTML push tests but the fix required to change the expected output of the HTML SAX tests.
44 lines
722 B
Plaintext
44 lines
722 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(head)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(title)
|
|
SAX.characters(Regression test 4, 17)
|
|
SAX.endElement(title)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(head)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(h1)
|
|
SAX.characters(Regression test 4, 17)
|
|
SAX.endElement(h1)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(p)
|
|
SAX.characters(
|
|
Wrong close of tag P
|
|
, 22)
|
|
SAX.endElement(p)
|
|
SAX.startElement(hr)
|
|
SAX.endElement(hr)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.error: Unexpected end tag : p
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endDocument()
|