1. We have a link to open a new tab
<a href="https://myapp.foo.com/bar" target="_blank">Link β</a>
The open tab is still in a sandboxed env triggering issue like
If we middle click or right click open in new tab this is ok
As asked here Please set allow-popups-to-escape-sandbox
A solution is to add
allow-popups-to-escape-sandbox
https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/iframe#allow-popups-to-escape-sandbox
or
allow-top-navigation-by-user-activation
<iframe>: The Inline Frame element - HTML: HyperText Markup Language | MDN
Perhaps you have other solution or a process to validate our application to allow this.