Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /scheduler/scheduler-replaceable.any.html - WPT Dashboard Interop Dashboard
- /scheduler/scheduler-replaceable.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /scheduler/scheduler-replaceable.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /scheduler/scheduler-replaceable.any.worker.html - WPT Dashboard Interop Dashboard
// META: title=Scheduler: scheduler should be replaceable
// META: global=window,worker
'use strict';
test(() => {
class Scheduler {
constructor() {
scheduler = this;
}
}
new Scheduler();
}, 'Tests replacing window.scheduler with a different object');