Reviewed by NOBODY (fixes layout tests).
Don't pass any options to window.open() in target-frame-from-window.html, specifically
those that cause the window to be resized. This caused a downstream failure in
cross-frame-access-put.html because the window.outerHeight and window.outerWidth
properties were sometimes affected by the new window size used in the popup window.
* http/tests/navigation/target-frame-from-window.html:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@25250
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-08-25 David Kilzer <ddkilzer@apple.com>
+
+ Reviewed by NOBODY (fixes layout tests).
+
+ Don't pass any options to window.open() in target-frame-from-window.html, specifically
+ those that cause the window to be resized. This caused a downstream failure in
+ cross-frame-access-put.html because the window.outerHeight and window.outerWidth
+ properties were sometimes affected by the new window size used in the popup window.
+
+ * http/tests/navigation/target-frame-from-window.html:
+
2007-08-24 Sam Weinig <sam@webkit.org>
Reviewed by Adele.
{
if (runOnce) return;
runOnce++;
- var opt="toolbar=0,location=0,menubar=0,scrollbars=1,resizable=1,width=300,height=500";
- window.open('resources/target-frame-from-window-popup.html', "popup", opt);
+ window.open('resources/target-frame-from-window-popup.html', "popup");
}
// -->
</script>