Changeset 29340 in webkit
- Timestamp:
- Jan 9, 2008, 12:13:07 PM (17 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r29339 r29340 1 2008-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 1 12 2008-01-09 Alexey Proskuryakov <ap@webkit.org> 2 13 -
trunk/LayoutTests/fast/loader/meta-refresh-vs-open.html
r27986 r29340 9 9 <meta http-equiv="refresh" content="0;url=data:text/plain,You should not have been redirected here."> 10 10 </head> 11 <body onload="if (window.layoutTestController) document.write('<p>FAIL: onload</p>'); else alert('FAIL: onload');">11 <body> 12 12 <iframe id="ifrm" src="about:blank"></iframe> 13 13 <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. 14 22 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); 17 33 </script> 18 34 <p>SUCCESS - shouldn't refresh or invoke onload.</p> -
trunk/LayoutTests/platform/win/Skipped
r29324 r29340 390 390 fast/dynamic/layer-hit-test-crash.html 391 391 392 # <rdar://5667277>393 fast/loader/onunload-form-submit-crash-2.html394 395 392 # <rdar://5667279> Undefined value exception 396 393 http/tests/xmlhttprequest/XMLHttpRequestException.html … … 406 403 editing/selection/4895428-3.html 407 404 408 # <rdar://5670275>409 fast/loader/onunload-form-submit-crash.html410 411 405 # <rdar://5673685> 412 406 fast/forms/input-readonly-autoscroll.html … … 414 408 # <rdar://5673709> 415 409 fast/xsl/sort-unicode.xml 416 417 # <rdar://5673716>418 fast/loader/opaque-base-url.html419 410 420 411 ################################################################################
Note:
See TracChangeset
for help on using the changeset viewer.