Home | History | Annotate | Download | only in HTML
      1 SAX.setDocumentLocator()
      2 SAX.startDocument()
      3 SAX.startElement(html)
      4 SAX.ignorableWhitespace(
      5 , 1)
      6 SAX.startElement(head)
      7 SAX.ignorableWhitespace(
      8 , 1)
      9 SAX.startElement(title)
     10 SAX.characters(Regression test 4, 17)
     11 SAX.endElement(title)
     12 SAX.ignorableWhitespace(
     13 , 1)
     14 SAX.endElement(head)
     15 SAX.ignorableWhitespace(
     16 , 1)
     17 SAX.startElement(body)
     18 SAX.characters(
     19 , 1)
     20 SAX.startElement(h1)
     21 SAX.characters(Regression test 4, 17)
     22 SAX.endElement(h1)
     23 SAX.characters(
     24 , 1)
     25 SAX.startElement(p)
     26 SAX.characters(
     27 Wrong close of tag P
     28 , 22)
     29 SAX.endElement(p)
     30 SAX.startElement(hr)
     31 SAX.endElement(hr)
     32 SAX.characters(
     33 , 1)
     34 SAX.error: Unexpected end tag : p
     35 SAX.characters(
     36 , 1)
     37 SAX.endElement(body)
     38 SAX.ignorableWhitespace(
     39 , 1)
     40 SAX.endElement(html)
     41 SAX.ignorableWhitespace(
     42 , 1)
     43 SAX.endDocument()
     44