Source code
Revision control
Copy as Markdown
Other Tools
// META: global=worker
function update() {
onmessage = undefined;
}
test(() => {
for (var i = 0; i < 8; ++i) {
update();
}
}, "Tests that repeatedly setting 'onmessage' within a worker doesn't crash.");