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

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

Issue 1907413003: Wait until the test page is fully loaded before dumping the contents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <script> 2 <script>
3 if (window.testRunner) 3 function onLoad() {
4 testRunner.notifyDone(); 4 if (window.testRunner)
5 testRunner.notifyDone();
6 }
5 </script> 7 </script>
6 <body> 8 <body onload="onLoad()">
7 This page calls testRunner.notifyDone(). 9 This page calls testRunner.notifyDone().
10 </body>
8 </html> 11 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698