Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /workers/baseurl/alpha/sharedworker-in-worker.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf-8>
<title>Base URL in workers: new SharedWorker()</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(function() {
var worker = new Worker("../beta/sharedworker.py");
worker.onmessage = this.step_func_done(function(e) {
assert_equals(e.data, "gamma");
});
worker.onerror = this.unreached_func("Got error event");
});
</script>