mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
15 lines
433 B
HTML
15 lines
433 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<title>Base URL in workers: XHR</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
async_test(function() {
|
|
var worker = new Worker("../beta/xhr.py");
|
|
worker.onmessage = this.step_func_done(function(e) {
|
|
assert_equals(e.data, "gamma\n");
|
|
});
|
|
worker.onerror = this.unreached_func("Got error event");
|
|
});
|
|
</script>
|