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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/loading/promote-img-in-viewport-priority.html

Issue 2211283004: Drop test-only WebFrameClient params/functions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <body>
3 <script src="/js-test-resources/js-test.js"></script>
4 <script>
5 window.jsTestIsAsync = true;
6
7 if (window.testRunner)
8 testRunner.dumpResourceRequestPriorities();
9
10 // Load test target html inside an iframe to ensure that
11 // resource request dumps always include preloader requests.
12 var iframe = document.createElement("iframe");
13 iframe.src = "resources/promote-img-in-viewport-priority-iframe.html";
14 document.body.appendChild(iframe);
15 window.onload = function() {
16 setTimeout(function() {
17 document.body.removeChild(iframe);
18 finishJSTest();
19 }, 0);
20 };
21 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698