https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e34fc8ca0e95655e1e449389e854ddf5d47f349c authored by Emilio Cobos Álvarez on 20 March 2018, 02:29:00 UTC
Make Shadow DOM account for stylesheet applicableness correctly.
Tip revision: e34fc8c
Worker_cross_origin_security_err.htm
<!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>
back to top