1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00
libxml2/result/winblanks.xml.sax2
Daniel Veillard abac41e829 fixing bug #166777 (and #169838), it was an heuristic in areBlanks which
* 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
2005-07-06 15:17:38 +00:00

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()