[Httpunit-commit] CVS: httpunit/doc Javascript-support.html,1.5,1.6 faq.html,1.14,1.15 release_notes
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-08-15 00:06:35
|
Update of /cvsroot/httpunit/httpunit/doc In directory usw-pr-cvs1:/tmp/cvs-serv13563/doc Modified Files: Javascript-support.html faq.html release_notes.txt Log Message: Handle embedded spaces in URL Index: Javascript-support.html =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/Javascript-support.html,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- Javascript-support.html 13 Aug 2002 20:00:38 -0000 1.5 +++ Javascript-support.html 15 Aug 2002 00:06:31 -0000 1.6 @@ -60,6 +60,12 @@ <li>onMouseOver - invoked when link.mouseOver() is invoked<li> </ul> +<h3>Input (and subclasses)</h3> +<h4>methods</h4> +<ul> +<li>focus() - a no-op</li> +</ul> + <h3>Text</h3> <h4>properties</h4> <ul> Index: faq.html =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/faq.html,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- faq.html 30 Jul 2002 14:11:14 -0000 1.14 +++ faq.html 15 Aug 2002 00:06:31 -0000 1.15 @@ -8,6 +8,7 @@ <LI><A HREF="#Cannot unzip">Why can't I unzip the download library?</A></LI> <LI><A HREF="#org.xml.sax">What is the org.xml.sax package?</A></LI> <LI><A HREF="#javascript">How do I use HttpUnit to test my pages that use JavaScript?</A></LI> +<LI><A HREF="#norhino">JavaScript is not being executed at all. Why not?</A></LI> <LI><A HREF="sslfaq.html">Does HttpUnit support https?</A></LI> <LI><A HREF="#proxy">Can I use HttpUnit through a proxy server?</A></LI> <LI><A HREF="#charset">Why isn't HttpUnit handling my non-English pages?</A></LI> @@ -30,8 +31,11 @@ and install Tidy.jar in your classpath. <A NAME="javascript"><H2>How do I use HttpUnit to test my pages that use JavaScript?</H2></A> -Unfortunately, you can't - yet. I have started to add JavaScript support, but it is very basic as yet. -If you would like to help out, please examine the code in cvs. +You should not have to do anything special; however, not all JavaScript constructs are supported as yet. See +<a href="javascript-support.html">the list of supported JavaScript features</a> for more information. + +<A NAME="#norhino"><H2>JavaScript is not being executed at all. Why not?</H2></A> +If you do not have the Rhino JAR (js.jar) in your classpath, JavaScript features do not work. <A NAME="proxy"><H2>Can I use HttpUnit through a proxy server?</H2></A> Yes. HttpUnit uses java.net.HttpURLConnection, so the Index: release_notes.txt =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/release_notes.txt,v retrieving revision 1.135 retrieving revision 1.136 diff -u -r1.135 -r1.136 --- release_notes.txt 13 Aug 2002 20:00:38 -0000 1.135 +++ release_notes.txt 15 Aug 2002 00:06:31 -0000 1.136 @@ -12,6 +12,13 @@ Revision History: +14-Aug-2002 +Additions: + 1. The focus() method is now defined as a no-op for all controls + +Problems fixed: + 1. Embedded spaces in URLs are now encoded when a request is made + 13-Aug-2002 Additions: 1. The onChange event now works for Select controls, Text controls, and TextArea controls. |