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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/preload/link_header_preload.html

Issue 2697453005: Import wpt@758b3b4cfa805067f36121333ba031e583d3a62c (Closed)
Patch Set: Add -expected.txt files. Created 3 years, 10 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 <script src="/resources/testharness.js"></script>
3 <script src="/resources/testharnessreport.js"></script>
4 <script>
5 var t = async_test('Makes sure that Link headers preload resources');
6 </script>
7 <body>
8 <script src="resources/dummy.js?pipe=trickle(d5)"></script>
9 <script>
10 window.addEventListener("load", t.step_func(function() {
11 var entries = performance.getEntriesByType("resource");
12 assert_equals(entries.length, 6);
13 t.done();
14 }));
15 </script>
16 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698