[Htmlparser-cvs] htmlparser/src/org/htmlparser/tests/lexerTests LexerTests.java,1.22,1.23
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2005-03-06 21:46:44
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29765/tests/lexerTests Modified Files: LexerTests.java Log Message: Bug #1044707 mark()/reset() issues Added wrapping with a org.htmlparser.lexer.Stream if markSupported returns false on the InputStream passed to InputStreamSource constructor. Added better error message when reset fails in setEncoding(). Index: LexerTests.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests/LexerTests.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** LexerTests.java 13 Feb 2005 22:45:48 -0000 1.22 --- LexerTests.java 6 Mar 2005 21:46:32 -0000 1.23 *************** *** 605,608 **** --- 605,614 ---- mAcceptable.add ("FORM"); mAcceptable.add ("INPUT"); + mAcceptable.add ("!DOCTYPE"); + mAcceptable.add ("TBODY"); + mAcceptable.add ("B"); + mAcceptable.add ("DIV"); + mAcceptable.add ("SCRIPT"); + mAcceptable.add ("NOSCRIPT"); } |