Return to script.html.sax CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / libxml2 / result / HTML |
1.1 ! misho 1: SAX.setDocumentLocator() ! 2: SAX.startDocument() ! 3: SAX.startElement(html) ! 4: SAX.ignorableWhitespace( ! 5: , 1) ! 6: SAX.startElement(head) ! 7: SAX.startElement(title) ! 8: SAX.characters(Script tests, 12) ! 9: SAX.endElement(title) ! 10: SAX.endElement(head) ! 11: SAX.ignorableWhitespace( ! 12: , 1) ! 13: SAX.startElement(body) ! 14: SAX.characters( ! 15: , 1) ! 16: SAX.startElement(script, language='javascript') ! 17: SAX.cdata( ! 18: if (window.open<max) ;, 28) ! 19: SAX.endElement(script) ! 20: SAX.characters( ! 21: , 1) ! 22: SAX.startElement(input, onclick='if(window.open<max);') ! 23: SAX.endElement(input) ! 24: SAX.characters( ! 25: , 1) ! 26: SAX.endElement(body) ! 27: SAX.ignorableWhitespace( ! 28: , 1) ! 29: SAX.endElement(html) ! 30: SAX.ignorableWhitespace( ! 31: , 1) ! 32: SAX.endDocument()