Edit

kc3-lang/libxml2/result/HTML/entities2.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/entities2.html.sax
  • SAX.setDocumentLocator()
    SAX.startDocument()
    SAX.startElement(html)
    SAX.characters(
    , 1)
    SAX.startElement(body)
    SAX.characters(
    , 1)
    SAX.startElement(form)
    SAX.characters(
      , 3)
    SAX.startElement(input, type='text', name='test', value='š')
    SAX.endElement(input)
    SAX.characters(
    , 1)
    SAX.endElement(form)
    SAX.characters(
    , 1)
    SAX.endElement(body)
    SAX.characters(
    , 1)
    SAX.endElement(html)
    SAX.endDocument()