[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 20:10:41
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29429/src/org/htmlparser/tests/parserHelperTests Modified Files: Tag: v1_41 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. Index: StringParserTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/parserHelperTests/StringParserTest.java,v retrieving revision 1.46 retrieving revision 1.46.2.1 diff -C2 -d -r1.46 -r1.46.2.1 *** StringParserTest.java 2 Jan 2004 16:24:56 -0000 1.46 --- StringParserTest.java 22 May 2004 20:10:32 -0000 1.46.2.1 *************** *** 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>" + |