mirror of
https://github.com/servo/servo.git
synced 2025-07-10 08:53:41 +01:00
19 lines
458 B
JavaScript
19 lines
458 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
'use strict';
|
|
|
|
// https://wicg.github.io/netinfo/
|
|
|
|
idl_test(
|
|
['netinfo'],
|
|
['html', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({ NetworkInformation: ['navigator.connection'] });
|
|
if (self.GLOBAL.isWorker()) {
|
|
idl_array.add_objects({ WorkerNavigator: ['navigator'] });
|
|
} else {
|
|
idl_array.add_objects({ Navigator: ['navigator'] });
|
|
}
|
|
}
|
|
);
|