blob: 25d2582366eb1b739edc2fb540f41a8b0c125486 [file] [log] [blame]
<!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>