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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/worklet-import-blocked.html

Issue 2178223002: Refactor Worklet class to use ScriptResource (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add tests, DCHECK(frame) Created 4 years, 4 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 <html>
3 <head>
4 <script src="../../resources/testharness.js"></script>
5 <script src="../../resources/testharnessreport.js"></script>
6 <meta http-equiv="Content-Security-Policy" content="default-src 'none';script-sr c 'unsafe-inline'"/>
7
8 </head>
9 <body>
10 <script>
11 promise_test(function() {
12
13 return paintWorklet.import('/resources/worklet.js').then(
14 function(undefined_arg) {
15 assert_unreached('import should fail.')
16 },
17 function(error) {
18 assert_equals(error.name, 'NetworkError', 'error should be a Net workError.');
19 });
20
21 }, 'Importing a script rejects the given promise with NetworkError because i t violated the same origin CSP policy.');
22 </script>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698