mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-12 09:17:37 +03:00
f34a20e69d
* xmlschemastypes.c: "" is a valid hexbinary string dixit xmlschema-dev * result/schemas/hexbinary_0_1.err test/schemas/hexbinary_1.xml: update the test. * test/ns5 result//ns5*: added a test for the namespace bug fixed in previous commit. * Makefile.am: added a message in the regression tests Daniel
12 lines
285 B
Plaintext
12 lines
285 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(element, name='foo', xmlns:rng='http://example.org/ns/1', xmlns='http://example.org/ns/1')
|
|
SAX.characters(
|
|
, 3)
|
|
SAX.startElement(empty)
|
|
SAX.endElement(empty)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(element)
|
|
SAX.endDocument()
|