Update web-platform-tests to revision 8a2ceb5f18911302b7a5c1cd2791f4ab50ad4326

This commit is contained in:
Josh Matthews 2017-10-12 09:25:50 -04:00
parent 462c272380
commit 1f531f66ea
5377 changed files with 174916 additions and 84369 deletions

View file

@ -6,13 +6,13 @@
var t = async_test('Makes sure that Link headers preload resources');
</script>
<body>
<script src="resources/dummy.js?pipe=trickle(d5)"></script>
<script src="resources/dummy.js?pipe=trickle(d5)&link-header-preload"></script>
<script>
window.addEventListener("load", t.step_func(function() {
verifyPreloadAndRTSupport();
verifyNumberOfDownloads("resources/square.png", 1);
verifyNumberOfDownloads("resources/dummy.js", 1);
verifyNumberOfDownloads("resources/dummy.css", 1);
verifyNumberOfDownloads("resources/square.png?link-header-preload", 1);
verifyNumberOfDownloads("resources/dummy.js?link-header-preload", 1);
verifyNumberOfDownloads("resources/dummy.css?link-header-preload", 1);
t.done();
}));
</script>