[Httpunit-commit] CVS: httpunit/doc Javascript-support.html,1.7,1.8 release_notes.txt,1.138,1.139
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-08-19 18:52:29
|
Update of /cvsroot/httpunit/httpunit/doc In directory usw-pr-cvs1:/tmp/cvs-serv7684/doc Modified Files: Javascript-support.html release_notes.txt Log Message: Added support for form.submit and Button.onClick Index: Javascript-support.html =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/Javascript-support.html,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- Javascript-support.html 16 Aug 2002 18:52:50 -0000 1.7 +++ Javascript-support.html 19 Aug 2002 18:52:25 -0000 1.8 @@ -43,6 +43,10 @@ <ul> <li>onSubmit - invoked when the form.submit() is invoked</li> </ul> +<h4>methods</h4> +<ul> +<li>submit - submits the form</li> +</ul> <h3>Image</h3> <h4>properties</h4> @@ -62,9 +66,19 @@ </ul> <h3>Input (and subclasses)</h3> +<h4>properties</h4> +<ul> +<li>form - read-only - the form containing the input</li> +</ul> <h4>methods</h4> <ul> <li>focus() - a no-op</li> +</ul> + +<h3>Button</h3> +<h4>events</h4> +<ul> +<li>onClick - invoked when button.click() is called</li> </ul> <h3>Text</h3> Index: release_notes.txt =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/release_notes.txt,v retrieving revision 1.138 retrieving revision 1.139 diff -u -r1.138 -r1.139 --- release_notes.txt 16 Aug 2002 18:52:50 -0000 1.138 +++ release_notes.txt 19 Aug 2002 18:52:25 -0000 1.139 @@ -12,6 +12,14 @@ Revision History: +19-Aug-2002 + +Additions: + 1. WebForm.getButtons() now returns all form buttons, including reset buttons and generic buttons. + 2. JavaScript: The "onClick" event is now supported for generic form buttons + 3. JavaScript: Form.submit() is now working + + 16-Aug-2002 Acknowledgements: Thanks to PeterRoyal for fixing the handling of query-only relative URLs and the IllegalStateException when |