mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-12 09:17:37 +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.
15 lines
274 B
Plaintext
15 lines
274 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.startElement(body)
|
|
SAX.startElement(td)
|
|
SAX.endElement(td)
|
|
SAX.startElement(td)
|
|
SAX.comment( <a><b> )
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(td)
|
|
SAX.endElement(body)
|
|
SAX.endElement(html)
|
|
SAX.endDocument()
|