1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00
Files
libxml2/result/HTML/cf_128.html.sax
Daniel Veillard 36d73403ff Applied the last patch from Gary Coady for #304637 changing the behaviour
* 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
2005-09-01 09:52:30 +00:00

70 lines
1.3 KiB
Plaintext

SAX.setDocumentLocator()
SAX.startDocument()
SAX.internalSubset(HTML, -//W3C//DTD HTML 4.0 Transitional//EN, http://www.w3.org/TR/REC-html40/strict.dtd)
SAX.startElement(html)
SAX.ignorableWhitespace(
, 1)
SAX.startElement(head)
SAX.ignorableWhitespace(
, 1)
SAX.startElement(title)
SAX.characters(gnome-xml push mode bug, 23)
SAX.endElement(title)
SAX.ignorableWhitespace(
, 1)
SAX.endElement(head)
SAX.ignorableWhitespace(
, 1)
SAX.startElement(body)
SAX.characters(
, 2)
SAX.startElement(table, border='4')
SAX.characters(
, 3)
SAX.startElement(tr)
SAX.characters(
, 5)
SAX.startElement(td, bgcolor='white')
SAX.characters(
Foo1
, 8)
SAX.startElement(table, border='4')
SAX.characters(
, 4)
SAX.startElement(tr)
SAX.characters(
, 6)
SAX.startElement(td)
SAX.characters(Foo2, 4)
SAX.startElement(p)
SAX.endElement(p)
SAX.startElement(p)
SAX.endElement(p)
SAX.endElement(td)
SAX.endElement(tr)
SAX.endElement(table)
SAX.characters(
, 5)
SAX.endElement(td)
SAX.characters(
, 5)
SAX.startElement(td, bgcolor='blue')
SAX.characters(Foo3, 4)
SAX.endElement(td)
SAX.characters(
, 4)
SAX.endElement(tr)
SAX.characters(
, 3)
SAX.endElement(table)
SAX.characters(
, 3)
SAX.endElement(body)
SAX.ignorableWhitespace(
, 1)
SAX.endElement(html)
SAX.ignorableWhitespace(
, 3)
SAX.endDocument()