mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-27 14:03:36 +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.
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()
|