blob: e3ce36b82cfc6cf9593768c39585c3153dc9b664 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!doctype html>
<title>async XMLHttpRequest in shared worker</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
var t = async_test();
function runtest() {
var worker = new SharedWorker('003.js', '');
worker.port.onmessage = this.step_func(function(e) {
assert_equals(e.data, '');
this.done();
});
}
</script>
<iframe src=001-1.xml onload="t.step(runtest);"></iframe>
|