chromium/third_party/blink/web_tests/external/wpt/loading/early-hints/preload-fetchpriority.h2.window.js

// META: script=/common/utils.js
// META: script=resources/early-hints-helpers.sub.js

test(() => {
    const preloads = ["low", "high", "auto"].map(fetchpriority => { return {
        "url": "empty.js?" + token() + fetchpriority,
        "as_attr": "script",
        "fetchpriority_attr": fetchpriority,
    }});
    navigateToTestWithEarlyHints("resources/preload-fetchpriority.html", preloads);
});