summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webidl/idlharness.any.js
blob: 3c662ba8e63f2f585ce1c5674eb1e165e5810313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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")']
    });
  }
);