mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
17 lines
442 B
HTML
17 lines
442 B
HTML
<!doctype html>
|
|
<title>basic messagechannel test</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<div id="log"></div>
|
|
<script>
|
|
async_test(function(t) {
|
|
var channel = new MessageChannel();
|
|
channel.port1.postMessage(1);
|
|
channel.port2.onmessage = t.step_func(
|
|
function(e) {
|
|
assert_equals(e.data, 1);
|
|
t.done();
|
|
});
|
|
channel.port2.start();
|
|
});
|
|
</script>
|