You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
485 B
19 lines
485 B
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.comment( This tests that two-byte UTF-8 characters are parsed properly when split across a buffer boundary of length XML_PARSER_BIG_BUFFER_SIZE (300 bytes). )
|
|
SAX.startElement(doc)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(p)
|
|
SAX.pcdata(ČČČČČČČČČČ, 1200)
|
|
SAX.endElement(p)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(p)
|
|
SAX.pcdata( ČČČČČČČČČÄ, 1201)
|
|
SAX.endElement(p)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(doc)
|
|
SAX.endDocument()
|