summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/preload/avoid-delaying-onload-link-modulepreload-exec.html
blob: 160aef6b5fda43f91605335123dc2b5f611f8e30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/preload/resources/preload_helper.js"></script>
<link rel=modulepreload href="resources/slow-exec.js">
<script>
    setup(() => {
        const link = window.document.createElement("link");
        assert_implements(
            'relList' in link,
            'HTMLLinkElement.relList is not supported');

        assert_implements(
            link.relList.supports("modulepreload"),
            'modulepreload is not supported');
    });

    promise_test(async t => {
        await new Promise(r => window.addEventListener("load", r));

        assert_false(!!window.didLoadModule);
    }, "Executing modulepreload should not block the window's load event");
</script>