https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b0a5adb79b683700fb1a3e59dd2632387c506701 authored by Luke Bjerring on 29 March 2018, 17:14:00 UTC
Remove redundant Array.from
Tip revision: b0a5adb
shared-inheritance.html
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<meta http-equiv="content-security-policy" content="connect-src 'self'">
<script>
  // SharedWorkers do not inherit policy.
  fetch_tests_from_worker(new SharedWorker("./support/connect-src-allow.sub.js"));
  fetch_tests_from_worker(new SharedWorker("./support/connect-src-self.sub.js?pipe=sub|header(Content-Security-Policy,connect-src 'self')"));
  fetch_tests_from_worker(new SharedWorker("./support/connect-src-self.sub.js?pipe=sub|header(Content-Security-Policy,default-src 'self')"));
</script>
back to top