forked from mirrors/gecko-dev
Automatic update from web-platform-tests Rename WebIDL.idl to webidl.idl (#31241) This rename has happened in @webref/idl 2.7.0: https://github.com/web-platform-tests/wpt/pull/31237 Tests need to be adapted, so do this rename manually. -- wpt-commits: 7e8c07686a91ee9b7f211209afb7830546f134d8 wpt-pr: 31241
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")']
|
|
});
|
|
}
|
|
);
|