[Httpunit-commit] CVS: httpunit/doc Javascript-support.html,1.9,1.10 release_notes.txt,1.140,1.141
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-08-20 19:39:23
|
Update of /cvsroot/httpunit/httpunit/doc In directory usw-pr-cvs1:/tmp/cvs-serv26478/doc Modified Files: Javascript-support.html release_notes.txt Log Message: Added properties for Checkbox Index: Javascript-support.html =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/Javascript-support.html,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- Javascript-support.html 20 Aug 2002 15:09:27 -0000 1.9 +++ Javascript-support.html 20 Aug 2002 19:39:20 -0000 1.10 @@ -71,6 +71,7 @@ <h4>properties</h4> <ul> <li>form - read-only - the form containing the input</li> +<li>name - read-only - the name of the control</li> </ul> <h4>methods</h4> <ul> @@ -122,7 +123,13 @@ <h3>Checkbox</h3> <h4>properties</h4> <ul> -<li>checked - read/write - the state of the checkbox</li> +<li>checked - read/write - the state of the checkbox</li> +<li>defaultChecked - read-only - the default state of the checkbox</li> +<li>value - read/write - the value transmitted if the control is checked</li> +</ul> +<h4>events</h4> +<ul> +<li>onClick - invoked when the state of the control is changed via form.setParameter</li> </ul> <h3>Select</h3> Index: release_notes.txt =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/release_notes.txt,v retrieving revision 1.140 retrieving revision 1.141 diff -u -r1.140 -r1.141 --- release_notes.txt 20 Aug 2002 15:09:27 -0000 1.140 +++ release_notes.txt 20 Aug 2002 19:39:20 -0000 1.141 @@ -14,8 +14,11 @@ 20-Aug-2002 Problems fixed: - 1. JavaScript - HTML comments were not supported + 1. JavaScript - HTML comments prevented JavaScript from working 2. JavaScript - Errors were reported if Rhino was not present in the classpath + +Additions: + 1. JavaScript - Added Checkbox.value property, along with Checkbox.defaultChecked and Input.name 19-Aug-2002 |