From: <rb...@us...> - 2013-12-31 16:04:32
|
Revision: 8927 http://sourceforge.net/p/htmlunit/code/8927 Author: rbri Date: 2013-12-31 16:04:29 +0000 (Tue, 31 Dec 2013) Log Message: ----------- Window.opener is setable from javascript (FF24) Modified Paths: -------------- trunk/htmlunit/src/changes/changes.xml trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java Modified: trunk/htmlunit/src/changes/changes.xml =================================================================== --- trunk/htmlunit/src/changes/changes.xml 2013-12-31 15:57:43 UTC (rev 8926) +++ trunk/htmlunit/src/changes/changes.xml 2013-12-31 16:04:29 UTC (rev 8927) @@ -9,6 +9,9 @@ <body> <release version="2.14" date="???" description="Bugfixes, initial work on FF24 and IE11"> <action type="fix" dev="rbri"> + JavaScript: Window.opener is setable from javascript (FF24). + </action> + <action type="fix" dev="rbri"> JavaScript: Node.attributes is no longer supported (since FF22). </action> <action type="fix" dev="rbri"> Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java 2013-12-31 15:57:43 UTC (rev 8926) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java 2013-12-31 16:04:29 UTC (rev 8927) @@ -1297,7 +1297,7 @@ /** Changing the opener of an window to something not null * is not valid (in FF). */ - @BrowserFeature({ @WebBrowser(FF), @WebBrowser(CHROME) }) + @BrowserFeature({ @WebBrowser(value = FF, maxVersion = 17), @WebBrowser(CHROME) }) JS_WINDOW_CHANGE_OPENER_NOT_ALLOWED, /** Support for accessing the frame of a window by id additionally |