chromium/third_party/blink/web_tests/external/wpt/compute-pressure/resources/compute-pressure-disabled-by-permissions-policy-worker.js

'use strict';

importScripts('/resources/testharness.js');

const header = 'Permissions-Policy header compute-pressure=()';
let workerType;

if (typeof postMessage === 'function') {
  workerType = 'dedicated';
}

promise_test(async t => {
  const observer =
      new PressureObserver(t.unreached_func('oops should not end up here'));
  await promise_rejects_dom(t, 'NotAllowedError', observer.observe('cpu'));
}, `$Inherited ${header} disallows ${workerType} workers.`);

done();