blob: 07147fae71a6e104ff96f0546f25237a76cce2b3 [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', {method: 'foobar'});
}, 'Preload match fails because the request method does not match (see the console log).');
</script>
</body>
</html>