mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
333 B
JavaScript
14 lines
333 B
JavaScript
onmessage = function(evt) {
|
|
postMessage(postMessage('ignore') == undefined);
|
|
|
|
var id = setInterval(function() {}, 200);
|
|
postMessage(clearInterval(id) == undefined);
|
|
|
|
id = setTimeout(function() {}, 200);
|
|
postMessage(clearTimeout(id) == undefined);
|
|
|
|
postMessage(dump(42 + '\n') == undefined);
|
|
|
|
postMessage('finished');
|
|
}
|