Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /webidl/ecmascript-binding/es-exceptions/DOMException-is-error.any.html - WPT Dashboard Interop Dashboard
- /webidl/ecmascript-binding/es-exceptions/DOMException-is-error.any.shadowrealm-in-dedicatedworker.html - WPT Dashboard Interop Dashboard
- /webidl/ecmascript-binding/es-exceptions/DOMException-is-error.any.shadowrealm-in-shadowrealm.html - WPT Dashboard Interop Dashboard
- /webidl/ecmascript-binding/es-exceptions/DOMException-is-error.any.shadowrealm-in-sharedworker.html - WPT Dashboard Interop Dashboard
- /webidl/ecmascript-binding/es-exceptions/DOMException-is-error.any.shadowrealm-in-window.html - WPT Dashboard Interop Dashboard
- /webidl/ecmascript-binding/es-exceptions/DOMException-is-error.any.worker.html - WPT Dashboard Interop Dashboard
- /webidl/ecmascript-binding/es-exceptions/DOMException-is-error.https.any.shadowrealm-in-audioworklet.html - WPT Dashboard Interop Dashboard
- /webidl/ecmascript-binding/es-exceptions/DOMException-is-error.https.any.shadowrealm-in-serviceworker.html - WPT Dashboard Interop Dashboard
// META: global=window,dedicatedworker,shadowrealm
'use strict';
test(function() {
assert_true(Error.isError(new DOMException()));
});