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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/navigation/resources/notify-done.html

Issue 1908233002: One and only one top-loading-frame across all renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split-setTopLoadingFrame-into-set-and-clear
Patch Set: Rebasing... Created 4 years, 8 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: third_party/WebKit/LayoutTests/http/tests/navigation/resources/notify-done.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/navigation/resources/notify-done.html b/third_party/WebKit/LayoutTests/http/tests/navigation/resources/notify-done.html
index 998e9278ef7b846b7a2d9203e45507be03ffa1ea..3eaacdc7e67efe26f27b0d24f716b311ecfc8a48 100644
--- a/third_party/WebKit/LayoutTests/http/tests/navigation/resources/notify-done.html
+++ b/third_party/WebKit/LayoutTests/http/tests/navigation/resources/notify-done.html
@@ -1,8 +1,11 @@
<html>
<script>
-if (window.testRunner)
Łukasz Anforowicz 2016/04/25 23:19:59 I plan to land changes to this file separately - i
- testRunner.notifyDone();
+function onLoad() {
+ if (window.testRunner)
+ testRunner.notifyDone();
+}
</script>
-<body>
+<body onload="onLoad()">
This page calls testRunner.notifyDone().
+</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698