summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/loading/early-hints/modulepreload-cross-origin.h2.window.js
blob: 3499b4d60d0743d1ce118a4e16b50e29f8428126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// META: script=/common/utils.js
// META: script=resources/early-hints-helpers.sub.js

// see modulepreload-in-early-hints.h2.window.js for params explanation
test(() => {
    const params = new URLSearchParams();
    params.set("description", "Modulepreload works in early hints from cross-origin url");
    params.set("resource-url",
        CROSS_ORIGIN_RESOURCES_URL + "/empty.js?" + token());
    params.set("should-preload", true);
    const test_url = "resources/modulepreload-in-early-hints.h2.py?" + params.toString();
    window.location.replace(new URL(test_url, window.location));
});