summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/loading/early-hints/preload-without-as.h2.window.js
blob: 9ac16210504013c47c018d528f98a31f10bc615c (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

test(() => {
    const params = new URLSearchParams();
    params.set("description",
        "An early hints preload without `as` attribute should be ignored.");
    params.set("resource-url",
        SAME_ORIGIN_RESOURCES_URL + "/empty.js?" + token());
    params.set("should-preload", false);
    const test_url = "resources/preload-as-test.h2.py?" + params.toString();
    window.location.replace(new URL(test_url, window.location));
});