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.
39 lines
722 B
Plaintext
39 lines
722 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(HTML, -//W3C//DTD HTML 4.0 Transitional//EN, http://www.w3.org/TR/REC-html40/loose.dtd)
|
|
SAX.startElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(head)
|
|
SAX.characters(
|
|
, 3)
|
|
SAX.startElement(title)
|
|
SAX.endElement(title)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(head)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(ul)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(li)
|
|
SAX.characters(First item
|
|
, 11)
|
|
SAX.endElement(li)
|
|
SAX.startElement(li)
|
|
SAX.characters(Second item, closes the first , 34)
|
|
SAX.endElement(li)
|
|
SAX.endElement(ul)
|
|
SAX.characters(
|
|
|
|
, 2)
|
|
SAX.endElement(body)
|
|
SAX.endElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endDocument()
|