You can only access certain features like SharedArrayBuffer
objects or Performance.now()
with unthrottled timers, if your document has a COEP header with the value require-corp
value set.
Cross-Origin-Embedder-Policy: require-corp
Cross-Origin-Opener-Policy: same-origin
See also the Cross-Origin-Opener-Policy
header which you'll need to set as well.
To check if cross origin isolation has been successful, you can test against the crossOriginIsolated
property available to window and worker contexts:
if (crossOriginIsolated) {
} else {
}