[Httpunit-commit] CVS: httpunit/doc Javascript-support.html,1.11,1.12 release_notes.txt,1.142,1.143
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-08-21 19:06:30
|
Update of /cvsroot/httpunit/httpunit/doc In directory usw-pr-cvs1:/tmp/cvs-serv25069/doc Modified Files: Javascript-support.html release_notes.txt Log Message: Added support for prompt() and confirm() Index: Javascript-support.html =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/Javascript-support.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- Javascript-support.html 21 Aug 2002 03:45:01 -0000 1.11 +++ Javascript-support.html 21 Aug 2002 19:06:27 -0000 1.12 @@ -20,7 +20,9 @@ </ul> <h4>methods</h4> <ul> -<li>alert() - queues up an alert message, accessible via WebResponse.getNextAlert() or popNextAlert()</li> +<li>alert() - queues up an alert message, accessible via WebResponse.getNextAlert() or popNextAlert()</li> +<li>confirm() - invokes a callback supplied via WebClient.setDialogResponder to return the user's response</li> +<li>prompt() - invokes a callback supplied via WebClient.setDialogResponder to return the user's response</li> </ul> <h3>Document</h3> Index: release_notes.txt =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/release_notes.txt,v retrieving revision 1.142 retrieving revision 1.143 diff -u -r1.142 -r1.143 --- release_notes.txt 21 Aug 2002 03:45:01 -0000 1.142 +++ release_notes.txt 21 Aug 2002 19:06:27 -0000 1.143 @@ -11,6 +11,14 @@ Revision History: +21-Aug-2002 + +Additions: + 1. JavaScript - Window.confirm is now supported. By default, it always returns true. Users may change this by supplying an + implementation of DialogResponder to the WebClient. + 2. JavScript - Window.prompt is now supported. By default, it always returns the default value. Users may change this by supplying an + implementation of DialogResponder to the WebClient. + 20-Aug-2002 Problems fixed: |