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-global-constructor.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /workers/Worker-replace-global-constructor.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /workers/Worker-replace-global-constructor.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=worker
test(() => {
try {
self.MessageEvent = 'PASS';
assert_equals(self.MessageEvent, 'PASS');
} catch (ex) {
assert_unreached("FAIL: unexpected exception (" + ex + ") received while replacing global constructor MessageEvent.");
}
}, 'Test replacing global constructors in a worker context.');