Source code

Revision control

Copy as Markdown

Other Tools

'use strict';
importScripts('/resources/testharness.js');
let workerType;
if (typeof postMessage === 'function') {
workerType = 'dedicated';
}
promise_test(async () => {
await new IdleDetector().start()
},
`Inherited header permissions policy allows ${workerType} workers.`)
done();