Bug 1735858 [wpt PR 31247] - App history: make it mostly nonfunctional for opaque...
[gecko.git] / testing / web-platform / tests / serial / idlharness.https.any.js
blobb240da933ade1595d3b1965c3ca6613c91c8318f
1 // META: script=/resources/WebIDLParser.js
2 // META: script=/resources/idlharness.js
4 'use strict';
6 idl_test(
7   ['serial'],
8   ['html', 'dom'],
9   idl_array => {
10     idl_array.add_objects({
11       Serial: ['navigator.serial'],
12       // TODO: SerialPort
13       // TODO: SerialPortInfo
14     });
16     if (self.GLOBAL.isWorker()) {
17       idl_array.add_objects({ WorkerNavigator: ['navigator'] });
18     } else {
19       idl_array.add_objects({ Navigator: ['navigator'] });
20     }
21   }