Changeset 83726 in webkit


Ignore:
Timestamp:
Apr 13, 2011 7:01:55 AM (13 years ago)
Author:
tonyg@chromium.org
Message:

2011-04-13 Tony Gentilcore <tonyg@chromium.org>

Reviewed by David Levin.

[chromium] Regression(r80861): fast/dom/Window/window-lookup-precedence.html started failing on Windows.
https://bugs.webkit.org/show_bug.cgi?id=56608

Previously the test unintentionally navigated the iframe when setting
window.location. Instead, now, we just skip setting window.location.

  • fast/dom/Window/window-lookup-precedence.html:
  • platform/chromium-win/fast/dom/Window/window-lookup-precedence-expected.txt: Moved to chromium.
  • platform/chromium/fast/dom/Window/window-lookup-precedence-expected.txt: Moved from chromium-win.
  • platform/chromium/test_expectations.txt:
Location:
trunk/LayoutTests
Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r83723 r83726  
     12011-04-13  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        [chromium] Regression(r80861): fast/dom/Window/window-lookup-precedence.html started failing on Windows.
     6        https://bugs.webkit.org/show_bug.cgi?id=56608
     7
     8        Previously the test unintentionally navigated the iframe when setting
     9        window.location. Instead, now, we just skip setting window.location.
     10
     11        * fast/dom/Window/window-lookup-precedence.html:
     12        * platform/chromium-win/fast/dom/Window/window-lookup-precedence-expected.txt: Moved to chromium.
     13        * platform/chromium/fast/dom/Window/window-lookup-precedence-expected.txt: Moved from chromium-win.
     14        * platform/chromium/test_expectations.txt:
     15
    1162011-04-13  Csaba Osztrogonác  <ossy@webkit.org>
    217
  • trunk/LayoutTests/fast/dom/Window/window-lookup-precedence.html

    r61599 r83726  
    4242    if (name == "showModalDialog")
    4343      return;
    44     // Check subframe precedence.
    45     try {
    46       subframe[name] = name;
    47     } catch (e) {
    48       debug("Unable to set subframe[" + name + "]: " + e);
     44    if (name != "location") { // Avoid navigating the subframe.
     45      // Check subframe precedence.
     46      try {
     47        subframe[name] = name;
     48      } catch (e) {
     49        debug("Unable to set subframe[" + name + "]: " + e);
     50      }
    4951    }
    5052    checkValue(name, original);
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r83708 r83726  
    15691569BUGCR18116 : svg/custom/global-constructors.html = TEXT
    15701570
    1571 // Flaky crashes
    1572 BUGCR18656 MAC RELEASE : fast/dom/Window/window-lookup-precedence.html = FAIL
    1573 BUGCR18656 MAC DEBUG : fast/dom/Window/window-lookup-precedence.html = FAIL
    1574 
    15751571// Test failures from WebKit merge 46894 to 46977
    15761572BUGCR26737 : fast/js/prototypes.html = FAIL
     
    31363132// Test changed in Wk r80743, throws an exception rather than returning 'true'
    31373133BUGCR75740 : fast/js/regexp-test-null-string.html = FAIL
    3138 
    3139 BUGWK56608 WIN : fast/dom/Window/window-lookup-precedence.html = TEXT
    31403134
    31413135// Skip an overly restrictive cross-origin HTTPS test
Note: See TracChangeset for help on using the changeset viewer.