chromium/third_party/blink/web_tests/http/tests/security/subresourceIntegrity/subresource-integrity-fetch-worker.html

<!DOCTYPE html>
<html>
<head>
<title>Tests integrity enforcement on fetch() on Web Worker</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
const SCRIPT = 'resources/subresource-integrity-fetch-worker.js';
fetch_tests_from_worker(new Worker(SCRIPT));
console.log('hello');
</script>
</body>
</html>