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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/loading/sync-xhr-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 <html>
2 <head>
3 <script src="/js-test-resources/js-test.js"></script>
4 <script>
5 if (window.testRunner) {
6 testRunner.dumpResourceRequestPriorities();
7 testRunner.dumpAsText();
8 }
9 </script>
10 </head>
11 <body>
12 <script>
13 var xhr = new XMLHttpRequest();
14 xhr.open("GET", "../resources/test.mp4", false);
15 xhr.send();
16 </script>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698