Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/inside-worker/shared-inheritance.html

Issue 2765443003: CSP: Upstream worker tests to WPT repository. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="/resources/testharness.js"></script>
3 <script src="/resources/testharnessreport.js"></script>
4
5 <meta http-equiv="content-security-policy" content="connect-src 'self'">
6 <script>
7 // SharedWorkers do not inherit policy.
8 fetch_tests_from_worker(new SharedWorker("./support/connect-src-allow.sub.js") );
9 fetch_tests_from_worker(new SharedWorker("./support/connect-src-self.sub.js?pi pe=sub|header(Content-Security-Policy,connect-src 'self')"));
10 fetch_tests_from_worker(new SharedWorker("./support/connect-src-self.sub.js?pi pe=sub|header(Content-Security-Policy,default-src 'self')"));
11 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698