Edit

kc3-lang/libxml2/result/HTML/entities.html.sax

Branch :

  • Show log

    Commit

  • Author : Nick Wellnhofer
    Date : 2017-06-12 19:10:04
    Hash : 0b2d5c48
    Message : Initialize keepBlanks in HTML parser This caused failures in the HTML push tests but the fix required to change the expected output of the HTML SAX tests.

  • result/HTML/entities.html.sax
  • SAX.setDocumentLocator()
    SAX.startDocument()
    SAX.startElement(html)
    SAX.startElement(body)
    SAX.error: htmlParseEntityRef: expecting ';'
    SAX.error: htmlParseEntityRef: no name
    SAX.startElement(p, tst='a&b', tst2='a&b', tst3='a & b')
    SAX.characters(
    a, 2)
    SAX.characters(&, 1)
    SAX.characters(b
    a, 3)
    SAX.error: htmlParseEntityRef: expecting ';'
    SAX.characters(&, 1)
    SAX.characters(b, 1)
    SAX.characters(
    a , 3)
    SAX.error: htmlParseEntityRef: no name
    SAX.characters(&, 1)
    SAX.characters( b
    , 3)
    SAX.endElement(p)
    SAX.characters(
    , 1)
    SAX.endElement(body)
    SAX.endElement(html)
    SAX.endDocument()