mirror of
https://github.com/servo/servo.git
synced 2025-10-18 17:29:18 +01:00
16 lines
353 B
JavaScript
16 lines
353 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
"use strict";
|
|
|
|
idl_test(
|
|
['webidl'],
|
|
[],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
DOMException: ['new DOMException()',
|
|
'new DOMException("my message")',
|
|
'new DOMException("my message", "myName")']
|
|
});
|
|
}
|
|
);
|