mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-19 14:50:07 +03:00
* HTMLparser.c: Applied the last patch from Gary Coady for #304637 changing the behaviour when text nodes are found in body * result/HTML/*: this changes the output of some tests Daniel
38 lines
782 B
Plaintext
38 lines
782 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.startElement(head)
|
|
SAX.ignorableWhitespace(
|
|
, 3)
|
|
SAX.startElement(title)
|
|
SAX.characters(This service is temporary down, 30)
|
|
SAX.endElement(title)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.endElement(head)
|
|
SAX.ignorableWhitespace(
|
|
|
|
, 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.ignorableWhitespace(
|
|
, 1)
|
|
SAX.endElement(html)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.endDocument()
|