summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/Worker_cross_origin_security_err.htm
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/workers/Worker_cross_origin_security_err.htm')
-rw-r--r--testing/web-platform/tests/workers/Worker_cross_origin_security_err.htm21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/workers/Worker_cross_origin_security_err.htm b/testing/web-platform/tests/workers/Worker_cross_origin_security_err.htm
new file mode 100644
index 0000000000..a3e49df79a
--- /dev/null
+++ b/testing/web-platform/tests/workers/Worker_cross_origin_security_err.htm
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<title>Worker cross-origin URL</title>
+<meta name="timeout" content="long">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<div id=log></div>
+<script>
+async_test(function(t) {
+ var w = new Worker("ftp://example.org/support/WorkerBasic.js");
+ w.onerror = t.step_func_done(function(e) {
+ assert_true(e instanceof Event);
+ });
+ }, "Cross-origin classic workers should fail to fetch");
+
+async_test(function(t) {
+ var w = new Worker("ftp://example.org/support/WorkerBasic.js", {type: "module"});
+ w.onerror = t.step_func_done(function(e) {
+ assert_true(e instanceof Event);
+ });
+}, "Cross-origin module workers should fail to fetch");
+</script>