mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-28 17:47:00 +03:00
0b2d5c48e3
This caused failures in the HTML push tests but the fix required to change the expected output of the HTML SAX tests.
33 lines
619 B
Plaintext
33 lines
619 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(head)
|
|
SAX.startElement(title)
|
|
SAX.characters(Script tests, 12)
|
|
SAX.endElement(title)
|
|
SAX.endElement(head)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(script, language='javascript')
|
|
SAX.cdata(
|
|
if (window.open<max) ;, 28)
|
|
SAX.endElement(script)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(input, onclick='if(window.open<max);')
|
|
SAX.endElement(input)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(body)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(html)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endDocument()
|