summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/netinfo/idlharness.any.js
blob: 21d5595012735079165e68f8aa8a5b29a7fb7bdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: timeout=long

'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'] });
    }
  }
);