blob: 138b29173f73eaed62dc57f4c912d15c174f9a5f [file] [log] [blame]
'use strict';
importScripts('/resources/testharness.js');
const header = 'Feature-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();