mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
Automatic update from web-platform-testsConvert Input Events IDL test to use idl_test (#12572) -- wpt-commits: 77cf912c4f8bda874e12a3141628b53100e53de2 wpt-pr: 12572
14 lines
258 B
JavaScript
14 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")'],
|
|
});
|
|
}
|
|
);
|