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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/workers/support/ImportScriptsNosniffErr.js

Issue 2689173002: Implement script MIME restrictions for X-Content-Type-Options: nosniff for Workers (Closed)
Patch Set: incorporated mkwst@'s comment Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/workers/support/ImportScriptsNosniffErr.js
diff --git a/third_party/WebKit/LayoutTests/external/wpt/workers/support/ImportScriptsNosniffErr.js b/third_party/WebKit/LayoutTests/external/wpt/workers/support/ImportScriptsNosniffErr.js
new file mode 100644
index 0000000000000000000000000000000000000000..fefbfc736735ec69634ec79ca25fb4a548f799bc
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/workers/support/ImportScriptsNosniffErr.js
@@ -0,0 +1,9 @@
+importScripts('/resources/testharness.js');
+
+test(t => {
+ assert_throws('NetworkError', () => {
+ importScripts("nosiniff-error-worker.py");
+ });
+}, "importScripts throws on 'nosniff' violation");
+
+done();

Powered by Google App Engine
This is Rietveld 408576698