Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /workers/Worker-replace-event-handler.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /workers/Worker-replace-event-handler.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /workers/Worker-replace-event-handler.any.worker.html - WPT Dashboard Interop Dashboard
// 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.");