22 lines
495 B
JavaScript
22 lines
495 B
JavaScript
'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();
|