Changeset 29340 in webkit


Ignore:
Timestamp:
Jan 9, 2008 12:13:07 PM (16 years ago)
Author:
ap@webkit.org
Message:

Reviewed by Adam Roben.

<rdar://problem/5673716> fast/loader/opaque-base-url.html is failing
<rdar://problem/5670275> fast/loader/onunload-form-submit-crash.html is failing
<rdar://problem/5667277> fast/loader/onunload-form-submit-crash-2.html is failing

  • fast/loader/meta-refresh-vs-open.html: Changed to be more DRT-friendly.
  • platform/win/Skipped: Removed tests that were victims of the above.
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r29339 r29340  
     12008-01-09  Alexey Proskuryakov  <ap@webkit.org>
     2
     3        Reviewed by Adam Roben.
     4
     5        <rdar://problem/5673716> fast/loader/opaque-base-url.html is failing
     6        <rdar://problem/5670275> fast/loader/onunload-form-submit-crash.html is failing
     7        <rdar://problem/5667277> fast/loader/onunload-form-submit-crash-2.html is failing
     8
     9        * fast/loader/meta-refresh-vs-open.html: Changed to be more DRT-friendly.
     10        * platform/win/Skipped: Removed tests that were victims of the above.
     11
    1122008-01-09  Alexey Proskuryakov  <ap@webkit.org>
    213
  • trunk/LayoutTests/fast/loader/meta-refresh-vs-open.html

    r27986 r29340  
    99<meta http-equiv="refresh" content="0;url=data:text/plain,You should not have been redirected here.">
    1010</head>
    11 <body onload="if (window.layoutTestController) document.write('<p>FAIL: onload</p>'); else alert('FAIL: onload');">
     11<body>
    1212<iframe id="ifrm" src="about:blank"></iframe>
    1313<script>
     14    document.body.onload = function() {
     15        if (window.layoutTestController)
     16            document.write('<p>FAIL: onload</p>');
     17        else
     18            alert('FAIL: onload');
     19    }
     20
     21    // Having a subframe open should prevent refresh.
    1422    document.getElementById("ifrm").contentDocument.open();
    15     if (window.layoutTestController)
    16         setTimeout("layoutTestController.notifyDone()", 500);
     23
     24    setTimeout(function () {
     25        // Test succeeded, now remove traps and return to a state that won't confuse our test runner.
     26        document.body.onload = function() {};
     27        if (window.stop)
     28            stop();
     29        document.getElementById("ifrm").contentDocument.close();
     30        if (window.layoutTestController)
     31            layoutTestController.notifyDone();
     32      }, 500);
    1733</script>
    1834<p>SUCCESS - shouldn't refresh or invoke onload.</p>
  • trunk/LayoutTests/platform/win/Skipped

    r29324 r29340  
    390390fast/dynamic/layer-hit-test-crash.html
    391391
    392 # <rdar://5667277>
    393 fast/loader/onunload-form-submit-crash-2.html
    394 
    395392# <rdar://5667279> Undefined value exception
    396393http/tests/xmlhttprequest/XMLHttpRequestException.html
     
    406403editing/selection/4895428-3.html
    407404
    408 # <rdar://5670275>
    409 fast/loader/onunload-form-submit-crash.html
    410 
    411405# <rdar://5673685>
    412406fast/forms/input-readonly-autoscroll.html
     
    414408# <rdar://5673709>
    415409fast/xsl/sort-unicode.xml
    416 
    417 # <rdar://5673716>
    418 fast/loader/opaque-base-url.html
    419410
    420411################################################################################
Note: See TracChangeset for help on using the changeset viewer.