mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-26 10:03:34 +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.
27 lines
493 B
Plaintext
27 lines
493 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(head)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(style)
|
|
SAX.cdata(
|
|
.......
|
|
....................., 1000)
|
|
SAX.cdata(.............................., 1000)
|
|
SAX.cdata(.............................., 1000)
|
|
SAX.cdata(................
|
|
............., 977)
|
|
SAX.endElement(style)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(head)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endDocument()
|