mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-02-12 05:57:47 +03:00
* HTMLparser.c test/HTML/lt.html result/HTML/lt.html*: handle the case of < in quoted attributes, Bastian Kleineidam Daniel
20 lines
397 B
Plaintext
20 lines
397 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.startElement(head)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.startElement(meta, name='Author', content='Root <root@aol.com>')
|
|
SAX.endElement(meta)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.endElement(head)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.endElement(html)
|
|
SAX.ignorableWhitespace(
|
|
, 1)
|
|
SAX.endDocument()
|