blob: 44aebf720a05d90db5f12477dbe83327c0e25a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<meta charset=utf-8>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="early-hints-helpers.sub.js"></script>
<body>
<script>
async function fetchModuleScript(url) {
return new Promise((resolve, reject) => {
const el = document.createElement("script");
el.src = url;
el.type = "module";
el.onload = resolve;
el.onerror = _ => reject(new Error("Failed to fetch resource: " + url));
document.body.appendChild(el);
});
}
promise_test(async (t) => {
const params = new URLSearchParams(window.location.search);
const resource_url = params.get("resource-url");
await fetchModuleScript(resource_url);
assert_true(isPreloadedByEarlyHints(resource_url));
}, "Modulepreload in an early hints.");
</script>
</body>
|