mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-16 02:50:07 +03:00
This caused failures in the HTML push tests but the fix required to change the expected output of the HTML SAX tests.
24 lines
403 B
Plaintext
24 lines
403 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(pre)
|
|
SAX.startElement(a, href='toto')
|
|
SAX.endElement(a)
|
|
SAX.startElement(img, src='titi')
|
|
SAX.endElement(img)
|
|
SAX.endElement(pre)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endDocument()
|