1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-20 18:50:08 +03:00
libxml2/result/HTML/repeat.html.sax
Daniel Veillard 597f1c1f34 applied patch from James Bursa fixing an html parsing bug in push mode
* HTMLparser.c: applied patch from James Bursa fixing an html parsing
  bug in push mode
* result/HTML/repeat.html* test/HTML/repeat.html: added the test to the
  regression suite
Daniel
2005-07-03 23:00:18 +00:00

15 lines
283 B
Plaintext

SAX.setDocumentLocator()
SAX.startDocument()
SAX.startElement(html)
SAX.startElement(body)
SAX.startElement(td)
SAX.endElement(td)
SAX.startElement(td)
SAX.comment( <a><b> )
SAX.ignorableWhitespace(
, 1)
SAX.endElement(td)
SAX.endElement(body)
SAX.endElement(html)
SAX.endDocument()