Automatic update from web-platform-tests Add interfaces/serial.idl and test (#25770) Closes https://github.com/web-platform-tests/wpt/pull/25745 -- wpt-commits: 6dbdce64a0ff49973a4542d503263ef598afd4c6 wpt-pr: 25770
23 lines
473 B
JavaScript
23 lines
473 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['serial'],
|
|
['html', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
Serial: ['navigator.serial'],
|
|
// TODO: SerialPort
|
|
// TODO: SerialPortInfo
|
|
});
|
|
|
|
if (self.GLOBAL.isWorker()) {
|
|
idl_array.add_objects({ WorkerNavigator: ['navigator'] });
|
|
} else {
|
|
idl_array.add_objects({ Navigator: ['navigator'] });
|
|
}
|
|
}
|
|
);
|