mirror of
https://github.com/servo/servo.git
synced 2025-10-18 01:09:16 +01:00
20 lines
394 B
JavaScript
20 lines
394 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
'use strict';
|
|
|
|
// https://wicg.github.io/webhid/
|
|
|
|
idl_test(
|
|
['webhid'],
|
|
['html', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
HID: ['navigator.hid'],
|
|
Navigator: ['navigator'],
|
|
// TODO: HIDConnectionEvent
|
|
// TODO: HIDInputReportEvent
|
|
// TODO: HIDDevice
|
|
});
|
|
}
|
|
);
|