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 1, 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 1, 17)
     22 SAX.endElement(h1)
     23 SAX.characters(
     24 , 1)
     25 SAX.startElement(p)
     26 SAX.characters(
     27 Ok file no problem
     28 , 20)
     29 SAX.endElement(p)
     30 SAX.endElement(body)
     31 SAX.ignorableWhitespace(
     32 , 1)
     33 SAX.endElement(html)
     34 SAX.ignorableWhitespace(
     35 , 1)
     36 SAX.endDocument()
     37