Revision 98932eb7420923b691dacea405b3bb4bb105016a authored by Emilio Cobos Álvarez on 10 April 2018, 20:19:22 UTC, committed by moz-wptsync-bot on 10 April 2018, 20:19:22 UTC
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1452640
gecko-commit: 00ac14e011212f55d75afd6043ac8e41636dec5f
gecko-integration-branch: central
gecko-reviewers: xidorn
1 parent e504871
Raw File
link-header-preload.html
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/preload/resources/preload_helper.js"></script>
<script>
    var t = async_test('Makes sure that Link headers preload resources');
</script>
<body>
<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?link-header-preload", 1);
        verifyNumberOfDownloads("resources/dummy.js?link-header-preload", 1);
        verifyNumberOfDownloads("resources/dummy.css?link-header-preload", 1);
        t.done();
    }));
</script>
</body>
back to top