==A new tab opened with window.open() is under control of the original window by default==.

COOP (Cross-Origin Opener Policy), prevent a website from cross-origin window reference manipulation (tabnabbing, clickjacking), isolating the current window

Example

Windows opened via window.open() can communicate with each other, even if they come from different sources

const newTab = window.open("https://example.com");
console.log(newTab.opener); // this has a reference to the other tab

With Cross-Origin-Opener-Policy: same-origin every window is isolated, and window.open is set to null


References