mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
14 lines
364 B
JavaScript
14 lines
364 B
JavaScript
// META: title=onmessage implied start()
|
|
|
|
async_test(function(t) {
|
|
var channel = new MessageChannel();
|
|
channel.port1.postMessage(1);
|
|
channel.port2.onmessage = function() {
|
|
setTimeout(t.step_func(function() {
|
|
t.done();
|
|
}), 50);
|
|
channel.port2.onmessage = t.step_func(function() {
|
|
assert_unreached();
|
|
});
|
|
}; // implies start()
|
|
});
|