summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/screen-wake-lock/idlharness.https.window.js
blob: 6509d9c70e25785ef5779e954c834f567fbdb42c (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
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: script=/resources/testdriver.js
// META: script=/resources/testdriver-vendor.js
// META: timeout=long

// https://w3c.github.io/screen-wake-lock/

'use strict';

idl_test(
  ['screen-wake-lock'],
  ['dom', 'html'],
  async idl_array => {
    idl_array.add_objects({ Navigator: ['navigator'] });

    idl_array.add_objects({
      WakeLock: ['navigator.wakeLock'],
      WakeLockSentinel: ['sentinel'],
    });

    await test_driver.set_permission(
        { name: 'screen-wake-lock' }, 'granted');
    self.sentinel = await navigator.wakeLock.request('screen');
    self.sentinel.release();
  }
);