mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-28 07:21:26 +03:00
abac41e829
* parser.c: fixing bug #166777 (and #169838), it was an heuristic in areBlanks which failed. * result/winblanks.xml* result/noent/winblanks.xml test/winblanks.xml: added the input file to the regression tests Daniel
19 lines
407 B
Plaintext
19 lines
407 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElementNs(a, NULL, NULL, 0, 0, 0)
|
|
SAX.characters(
|
|
, 5)
|
|
SAX.startElementNs(B, NULL, NULL, 0, 0, 0)
|
|
SAX.characters(
|
|
, 9)
|
|
SAX.startElementNs(C, NULL, NULL, 0, 0, 0)
|
|
SAX.endElementNs(C, NULL, NULL)
|
|
SAX.characters( , 3)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElementNs(B, NULL, NULL)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElementNs(a, NULL, NULL)
|
|
SAX.endDocument()
|