mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-28 07:21:26 +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.
38 lines
728 B
Plaintext
38 lines
728 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(head)
|
|
SAX.characters(
|
|
, 3)
|
|
SAX.startElement(title)
|
|
SAX.characters(This service is temporary down, 30)
|
|
SAX.endElement(title)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(head)
|
|
SAX.characters(
|
|
|
|
, 2)
|
|
SAX.startElement(body, bgcolor='#FFFFFF')
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(h1, align='center')
|
|
SAX.characters(Sorry, this service is tempora, 37)
|
|
SAX.endElement(h1)
|
|
SAX.characters(
|
|
We are doing our best to get , 48)
|
|
SAX.startElement(p)
|
|
SAX.characters(The W3C system administrators, 29)
|
|
SAX.endElement(p)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endDocument()
|