summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/Worker_cross_origin_security_err.htm
blob: d57dc29d557abcf170d7bc3f308c366e71ee2704 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<title> Worker cross-origin URL </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
async_test(function(t) {
  try {
    var w = new Worker("ftp://example.org/support/WorkerBasic.js");
    w.onerror = t.step_func_done(function(e) {
      assert_true(e instanceof Event);
    });
  } catch (e) {
    t.step_func_done(function(e) { assert_true(true); });
  }
});
</script>