Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/abort/tests/unit/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
function run_test() {
let ac = new AbortController();
Assert.ok(ac instanceof AbortController);
Assert.ok(ac.signal instanceof AbortSignal);
}