Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Unified Diff: LayoutTests/fast/frames/frameset-dynamic-resize.html

Issue 551973005: Streamline frame detach (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/frames/frameset-dynamic-resize.html
diff --git a/LayoutTests/fast/frames/frameset-dynamic-resize.html b/LayoutTests/fast/frames/frameset-dynamic-resize.html
index 704ba9533bf3781a44f8a4f8d8a34c6fc58698f3..da11c42e978a0bb4ea41ffdca2a1af91969a0c3c 100644
--- a/LayoutTests/fast/frames/frameset-dynamic-resize.html
+++ b/LayoutTests/fast/frames/frameset-dynamic-resize.html
@@ -5,11 +5,8 @@ https://code.google.com/p/chromium/issues/detail?id=266882.
Visually it should show a green 100x100 square.
-->
<script>
-if (window.testRunner) {
+if (window.testRunner)
testRunner.dumpAsText();
- // FIXME: Why is waitUntilDone needed? Shouldn't this body onload wait for the subframes?
- testRunner.waitUntilDone();
-}
function runTest() {
var iframe = document.getElementById('target');
@@ -21,9 +18,7 @@ function runTest() {
document.write("PASS");
else
document.write("FAIL, height should be 100, is: " + height);
-
- if (window.testRunner)
- testRunner.notifyDone();
+ document.close();
}
</script>
<iframe id="target" style="width: 100px; height: 1px; border: 0px" src="resources/frameset-dynamic-resize-inner1.html" onload="runTest()"></iframe>

Powered by Google App Engine
This is Rietveld 408576698