blob: 6df5e92fda37a9e78d60426c01b60ede512d47de [file] [log] [blame]
<!doctype html>
<meta charset=utf-8>
<title>same-origin checks; the script is in a script element</title>
<meta name="timeout" content="long">
<link rel=help href="https://html.spec.whatwg.org/multipage/workers.html#dom-worker">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
// Needed to prevent a race condition if a worker throws an exception that may or may
// not propogate to the window before the tests finish
setup({allow_uncaught_exception: true});
function testWorkerHelper(t, script) {
try {
var worker = new Worker(script);
worker.onerror = t.step_func_done(function(e) {
assert_true(e instanceof Event);
});
} catch (e) {
assert_throws("SecurityError", () => {throw e}, "DOMExceptions thrown on cross-origin Worker construction must be SecurityErrors");
t.done();
}
}
test(function() {
assert_throws("SecurityError", function() { new Worker('unsupported:'); });
}, "unsupported_scheme");
async_test(function() {
var worker = new Worker('data:,postMessage(1);');
worker.onmessage = this.step_func_done(function(e) {
assert_equals(e.data, 1);
});
}, "data_url");
async_test(function(t) {
testWorkerHelper(t, 'about:blank');
}, "about_blank");
async_test(function(t) {
testWorkerHelper(t, 'http://www.example.invalid/');
}, "example_invalid");
async_test(function(t) {
testWorkerHelper(t, location.protocol+'//'+location.hostname+':81/');
}, "port_81");
async_test(function(t) {
testWorkerHelper(t, 'https://'+location.hostname+':80/');
}, "https_port_80");
async_test(function(t) {
testWorkerHelper(t, 'https://'+location.hostname+':8000/');
}, "https_port_8000");
async_test(function(t) {
testWorkerHelper(t, 'http://'+location.hostname+':8012/');
}, "http_post_8012");
async_test(function(t) {
testWorkerHelper(t,'javascript:""');
}, "javascript_url");
</script>