Automatic update from web-platform-testsConvert Input Events IDL test to use idl_test (#12572) -- wpt-commits: 77cf912c4f8bda874e12a3141628b53100e53de2 wpt-pr: 12572
15 lines
258 B
JavaScript
15 lines
258 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['input-events'],
|
|
['uievents', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
InputEvent: ['new InputEvent("foo")'],
|
|
});
|
|
}
|
|
);
|