Source code

Revision control

Copy as Markdown

Other Tools

'use strict';
importScripts('/resources/testharness.js');
const header = 'Permissions-Policy header idle-detection=()';
let workerType;
if (typeof postMessage === 'function') {
workerType = 'dedicated';
}
promise_test(async () => {
try {
await new IdleDetector().start();
assert_unreached('expected start() to throw with SecurityError');
} catch (error) {
assert_equals(error.name, 'SecurityError');
}
},
`Inherited ${header} disallows ${workerType} workers.`);
done();