Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests
In directory sc8-pr-cvs1:/tmp/cvs-serv26197/tests/visitorsTests
Modified Files:
UrlModifyingVisitorTest.java
Log Message:
Removed lexer level AbstractNode.
Removed data package from parser level tags.
Separated tag creation from recursion in NodeFactory interface.
Index: UrlModifyingVisitorTest.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/visitorsTests/UrlModifyingVisitorTest.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** UrlModifyingVisitorTest.java 28 Sep 2003 19:30:04 -0000 1.10
--- UrlModifyingVisitorTest.java 20 Oct 2003 01:28:04 -0000 1.11
***************
*** 43,48 ****
private static final String MODIFIED_HTML =
"<HTML><BODY>" +
! "<A HREF=localhost://mylink.html>" +
! "<IMG SRC=localhost://mypic.jpg></A>" +
"<IMG SRC=\"localhost://my second image.gif\">" +
"</BODY></HTML>";
--- 43,48 ----
private static final String MODIFIED_HTML =
"<HTML><BODY>" +
! "<A HREF=\"localhost://mylink.html\">" +
! "<IMG SRC=\"localhost://mypic.jpg\"></A>" +
"<IMG SRC=\"localhost://my second image.gif\">" +
"</BODY></HTML>";
|