EVALUATION
Requires careful understanding of security bulletin and the mentioned workaround to provide the fix in Java Plug-in
###@###.### 2004-08-03
The API AppletContext.showDocument() internally uses DOM API window.open() to perform the operation. With the new hotfix, window.open() doesn't allow JavaScript URL usage. Hence applets using JavaScript URL in showDocument() will fail after the hotfix is applied.
###@###.### 2004-08-05
The MS IE implementation for showDocument has been changed as follows:
> window.open( url, _top );
--
< if (url is javascript){
< window.execScript( "window.open(url)" );
< }else{
< window.open( url, _top );
< }
###@###.### 2004-09-10
----------------------------------------
|