summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/web-locks/idlharness.https.any.js
blob: 2df7831c3405720f62428eb2c8722c7d172f743e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: global=window,dedicatedworker,sharedworker,serviceworker
// META: timeout=long

'use strict';

idl_test(
  ['web-locks'],
  ['html'],
  async idl_array => {
    idl_array.add_objects({
      LockManager: ['navigator.locks'],
      Lock: ['lock'],
    });

    if (self.Window) {
      idl_array.add_objects({ Navigator: ['navigator'] });
    } else {
      idl_array.add_objects({ WorkerNavigator: ['navigator'] });
    }

    try {
      await navigator.locks.request('name', l => { self.lock = l; });
    } catch (e) {
      // Surfaced in idlharness.js's test_object below.
    }
  }
);