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

This caused failures in the HTML push tests but the fix required to change the expected output of the HTML SAX tests.
24 lines
413 B
Plaintext
24 lines
413 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(form)
|
|
SAX.characters(
|
|
, 3)
|
|
SAX.startElement(input, type='text', name='test', value='š')
|
|
SAX.endElement(input)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(form)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(html)
|
|
SAX.endDocument()
|