Revision cb8b86ba657eb03160aed1e528f07a33bbc6ca26 authored by Mike West on 28 August 2015, 05:14:24 UTC, committed by Mike West on 28 August 2015, 05:14:24 UTC
use standard b64 encoding as per spec, not b64url
2 parent s 20eb289 + a18bca8
Raw File
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>
test(function() {
  assert_throws("SECURITY_ERR", function() {
    new Worker("ftp://example.org/support/WorkerBasic.js");
  });
});
</script>
back to top