Chromium Code Reviews| OLD | NEW |
|---|---|
| (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(function(undefi ned_arg) { | |
| 14 assert_unreached('import should fail.') | |
| 15 }).catch(function(error) { | |
|
yhirano
2016/07/21 05:16:56
This catches the assert_unreached exception. I wou
| |
| 16 assert_equals(error.name, 'NetworkError', 'error should be a Network Error.'); | |
| 17 }); | |
| 18 | |
| 19 }, 'Importing a script rejects the given promise with NetworkError because i t violated the same origin CSP policy.'); | |
| 20 </script> | |
| 21 </body> | |
| 22 </html> | |
| OLD | NEW |