First person scripts no longer working

Good morning all,
I logged onto my project today to no errors from the fist person template script, but it wasn’t working. No movement, no looking around, nothing. I looked at the Fly Camrea script and the issue was the same there. The mouse doesn’t even lock.
I made a sample project:
https://playcanvas.com/project/1341369/settings
press q to switch between first person template and fly camera.

Hi!

Launch a separate tab by copying the url from the project launch page.

Publishing fixed it, but I still dont get why it doesn’t work in-editor.

The Browser developers have tightened the rules, now cursor interception is not available in tabs created from another tab.

Interesting, thanks for the update. Is this on google and when did this start if you know?

inject code to html page and click TEST button, pointer lock not work for this case on new tab:

<button onclick="(() => {
    const launcher = window.open();
    launcher.opener = null;
    launcher.location = 'https://mdn.github.io/dom-examples/pointer-lock/';}
)()">TEST</button>