[Htmlparser-cvs] htmlparser/src/org/htmlparser/tests/lexerTests LexerTests.java,1.29,1.30
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2006-05-27 14:02:34
|
Update of //cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv27338/tests/lexerTests Modified Files: LexerTests.java Log Message: fix bug #1345049 HTMLParser should not terminate a comment with ---> add static STRICT_REMARKS to Lexer class, which when true follows the specification for remarks Index: LexerTests.java =================================================================== RCS file: //cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/lexerTests/LexerTests.java,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** LexerTests.java 17 Apr 2006 13:53:12 -0000 1.29 --- LexerTests.java 27 May 2006 14:02:28 -0000 1.30 *************** *** 622,625 **** --- 622,628 ---- mAcceptable.add ("H1"); mAcceptable.add ("H3"); + mAcceptable.add ("OBJECT"); + mAcceptable.add ("PARAM"); + mAcceptable.add ("EMBED"); } |