Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /loading/early-hints/preload-fetchpriority.h2.window.html - WPT Dashboard Interop Dashboard
// 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);
});