mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-02-12 05:57:47 +03:00
Wayne Davison <wayned@blorf.net> - result/HTML/*.sax: regenerated HTML SAX output - parser.c: more cleanup. Daniel
37 lines
676 B
Plaintext
37 lines
676 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.startElement(head)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.startElement(title)
|
|
SAX.characters(Regression test 1, 17)
|
|
SAX.endElement(title)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.endElement(head)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.startElement(body)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.startElement(h1)
|
|
SAX.characters(Regression test 1, 17)
|
|
SAX.endElement(h1)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.startElement(p)
|
|
SAX.characters(
|
|
Ok file no problem
|
|
, 20)
|
|
SAX.endElement(p)
|
|
SAX.endElement(body)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.endElement(html)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.endDocument()
|