[Htmlparser-cvs] htmlparser/src/org/htmlparser/tests/tagTests ImageTagTest.java,1.43,1.44 ScriptTagT
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2004-07-18 21:31:29
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29557/src/org/htmlparser/tests/tagTests Modified Files: ImageTagTest.java ScriptTagTest.java LinkTagTest.java Log Message: Fix some javadoc warnings. Index: ImageTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/ImageTagTest.java,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** ImageTagTest.java 24 May 2004 16:18:33 -0000 1.43 --- ImageTagTest.java 18 Jul 2004 21:31:21 -0000 1.44 *************** *** 179,182 **** --- 179,183 ---- /** + * Test empty attribute. * See bug #755929 Empty string attr. value causes attr parsing to be stopped * and bug #753012 IMG SRC not parsed v1.3 & v1.4 Index: LinkTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/LinkTagTest.java,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** LinkTagTest.java 2 Jul 2004 00:49:31 -0000 1.48 --- LinkTagTest.java 18 Jul 2004 21:31:21 -0000 1.49 *************** *** 340,343 **** --- 340,344 ---- /** + * Test mail link. * Bug #738504 MailLink != HTTPLink */ Index: ScriptTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/ScriptTagTest.java,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** ScriptTagTest.java 14 Jan 2004 02:53:47 -0000 1.43 --- ScriptTagTest.java 18 Jul 2004 21:31:21 -0000 1.44 *************** *** 76,89 **** /** ! * Bug check by Wolfgang Germund 2002-06-02 ! * Upon parsing : ! * <script language="javascript"> ! * if(navigator.appName.indexOf("Netscape") != -1) ! * document.write ('xxx'); ! * else ! * document.write ('yyy'); ! * </script> ! * check toRawString(). ! */ public void testToHTMLWG() throws ParserException { --- 76,90 ---- /** ! * Test raw string. ! * Bug check by Wolfgang Germund 2002-06-02 ! * Upon parsing : ! * <script language="javascript"> ! * if(navigator.appName.indexOf("Netscape") != -1) ! * document.write ('xxx'); ! * else ! * document.write ('yyy'); ! * </script> ! * check toRawString(). ! */ public void testToHTMLWG() throws ParserException { |