blob: 5b37bc14244fed2b980ac66bdeebd49c68293d4d [file] [log] [blame]
<!doctype html>
<html>
<link rel="preload" as="fetch" crossorigin="anonymous" href="resources/hello.txt"></link>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
promise_test(async (t) => {
await fetch('resources/hello.txt', {keepalive: true});
}, 'Preload match fails because keepalive is set (see the console log).');
</script>
</body>
</html>