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

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: 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..6e97180ad6b1a817971f20641733d56d743915bf
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/workers/support/ImportScriptsNosniffErr.js
@@ -0,0 +1,15 @@
+var result = "Fail";
+
+try
+{
+ importScripts("nosiniff-error-worker.py");
+}
+catch(ex)
+{
+ if (ex.code != null && ex.code == ex.NETWORK_ERR)
+ {
+ result = "Pass";
+ }
+}
+
+postMessage(result);

Powered by Google App Engine
This is Rietveld 408576698