Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /workers/Worker-custom-event.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /workers/Worker-custom-event.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /workers/Worker-custom-event.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=worker
async_test(t => {
var target = self;
target.addEventListener('custom-event', t.step_func_done());
var event = new Event('custom-event');
target.dispatchEvent(event);
}, 'Test CustomEvents on workers.');