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

Unified Diff: LayoutTests/fast/frames/frame-js-url-clientWidth.html

Issue 221673003: Defer iframe JavaScript URL evaluation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/frame-js-url-clientWidth.html
diff --git a/LayoutTests/fast/frames/frame-js-url-clientWidth.html b/LayoutTests/fast/frames/frame-js-url-clientWidth.html
index 4ace48ce256d7ee2337ff3489743fa354b954598..95613e41f74df67476f4965423d6eddd3e9ed109 100644
--- a/LayoutTests/fast/frames/frame-js-url-clientWidth.html
+++ b/LayoutTests/fast/frames/frame-js-url-clientWidth.html
@@ -1,6 +1,8 @@
<script>
-if (window.testRunner)
+if (window.testRunner) {
testRunner.dumpAsText();
+ testRunner.waitUntilDone();
+}
function log(s)
{
@@ -39,6 +41,8 @@ function shouldBe(a, b)
top.shouldBe('frame.frameElement.clientWidth', 250);
top.shouldBe('frame.frameElement.height', 250);
top.shouldBe('frame.frameElement.clientHeight', 250);
+
+ testRunner.notifyDone();
"
>
</frameset>

Powered by Google App Engine
This is Rietveld 408576698