summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/screen-wake-lock/wakelock-screen-type-on-worker.https.worker.js
blob: 0201294e2365abae3e13fcfe21debfd26628236a (plain)
1
2
3
4
5
6
7
8
//META: title=Screen wake lock should not be allowed in dedicated worker
importScripts("/resources/testharness.js");

promise_test(t => {
  return promise_rejects_dom(t, "NotAllowedError", navigator.wakeLock.request('screen'));
}, "Screen wake lock should not be allowed in dedicated worker");

done();