blob: f7f140c15371b2f0aa0b9eed04612c9460b9a7ad [file] [edit]
<!DOCTYPE html>
<title>link rel=compression-dictionary, integrity attribute</title>
<meta name="timeout" content="long"/>
<link rel="help" href="https://github.com/whatwg/html/pull/11620">
<link rel="help" href="https://html.spec.whatwg.org/#create-link-options-from-element">
<link rel="help" href="https://html.spec.whatwg.org/#attr-link-integrity">
<link rel="help" href="https://fetch.spec.whatwg.org/#concept-request-integrity-metadata">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/service-workers/service-worker/resources/test-helpers.sub.js"></script>
<script src="./resources/compression-dictionary-util.sub.js"></script>
<script>
let frame;
// Set up the service worker and the frame.
promise_test(t => {
const kScope = 'resources/empty.https.html';
const kScript = 'resources/fetch-options-worker.js';
return service_worker_unregister_and_register(t, kScript, kScope)
.then(registration => {
add_completion_callback(() => {
registration.unregister();
});
return wait_for_state(t, registration.installing, 'activated');
})
.then(() => {
return with_iframe(kScope);
})
.then(f => {
frame = f;
add_completion_callback(() => { f.remove(); });
});
}, 'Initialize global state');
compression_dictionary_promise_test(async t => {
await new Promise((resolve, reject) => {
let node = frame.contentWindow.document.createElement("link");
node.rel = "compression-dictionary";
node.onload = resolve;
node.onerror = reject;
node.setAttribute("integrity", "sha256-abc123");
node.href = "dummy?integrity=";
frame.contentWindow.document.body.appendChild(node);
}).catch(() => {
assert_unreached("Fetch errored.");
});
}, 'HTMLLinkElement rel=compression-dictionary, integrity attribute is ignored.');
</script>