mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

this establishes the baseline behavior so that subsequent commits which modify this behavior are clear about what's being changed.
34 lines
740 B
Plaintext
34 lines
740 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.characters(
|
|
, 3)
|
|
SAX.startElement(body)
|
|
SAX.characters(
|
|
, 5)
|
|
SAX.startElement(div)
|
|
SAX.characters(
|
|
, 7)
|
|
SAX.startElement(h3)
|
|
SAX.characters(
|
|
, 9)
|
|
SAX.startElement(a, href='https://html.spec.whatwg.org/multipage/parsing.html#parse-error-incorrectly-closed-comment')
|
|
SAX.characters(
|
|
Incorrectly closed , 81)
|
|
SAX.endElement(a)
|
|
SAX.characters(
|
|
, 7)
|
|
SAX.endElement(h3)
|
|
SAX.characters(
|
|
, 7)
|
|
SAX.startElement(div)
|
|
SAX.characters(
|
|
, 9)
|
|
SAX.error: Comment not terminated
|
|
<!--incorrectly closed comment--!><span id=under-test>
|
|
SAX.endElement(div)
|
|
SAX.endElement(div)
|
|
SAX.endElement(body)
|
|
SAX.endElement(html)
|
|
SAX.endDocument()
|