Changeset 25250 in webkit


Ignore:
Timestamp:
Aug 25, 2007 1:42:23 PM (17 years ago)
Author:
ddkilzer
Message:

LayoutTests:

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:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r25249 r25250  
     12007-08-25  David Kilzer  <ddkilzer@apple.com>
     2
     3        Reviewed by NOBODY (fixes layout tests).
     4
     5        Don't pass any options to window.open() in target-frame-from-window.html, specifically
     6        those that cause the window to be resized.  This caused a downstream failure in
     7        cross-frame-access-put.html because the window.outerHeight and window.outerWidth
     8        properties were sometimes affected by the new window size used in the popup window.
     9
     10        * http/tests/navigation/target-frame-from-window.html:
     11
    1122007-08-24  Sam Weinig  <sam@webkit.org>
    213
  • trunk/LayoutTests/http/tests/navigation/target-frame-from-window.html

    r25206 r25250  
    1616    if (runOnce) return;
    1717    runOnce++;
    18     var opt="toolbar=0,location=0,menubar=0,scrollbars=1,resizable=1,width=300,height=500";
    19     window.open('resources/target-frame-from-window-popup.html', "popup", opt);
     18    window.open('resources/target-frame-from-window-popup.html', "popup");
    2019}
    2120// -->
Note: See TracChangeset for help on using the changeset viewer.