[Htmlparser-cvs] htmlparser/src/org/htmlparser/tests/parserHelperTests StringParserTest.java,1.46,1.
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2004-05-22 03:57:39
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25265/tests/parserHelperTests Modified Files: StringParserTest.java Log Message: Fix bug# 919738 Text has not been extracted correctly using StringBean and (duplicate) bug #936392 ScriptTag visitor fails for comments with ' by handling single and multiline ecmascript comments in the Lexer class when called with quotesmart true. Also added test cases for, but didn't fix bug #923146 tag nesting rule too strict for forms (org.htmlparser.tests.tagTests.InputTagTest.testTable) and bug #922439 OutOfMemory on huge HTML files (4,7MB) (org.htmlparser.tests.MemoryTest) which are thus currently failing. Index: StringParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/StringParserTest.java,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** StringParserTest.java 2 Jan 2004 16:24:56 -0000 1.46 --- StringParserTest.java 22 May 2004 03:57:30 -0000 1.47 *************** *** 206,213 **** "</head>" + "<script language=\"JavaScript\" type=\"text/JavaScript\">" + ! "// if this fails, output a 'hello' " + "if (true) " + "{ " + ! "//something good... " + "} " + "</script>" + --- 206,213 ---- "</head>" + "<script language=\"JavaScript\" type=\"text/JavaScript\">" + ! "// if this fails, output a 'hello' \n" + "if (true) " + "{ " + ! "//something good...\n" + "} " + "</script>" + |