We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://html.spec.whatwg.org/multipage/browsers.html#dom-open step 4 says:
If this results in there not being a chosen browsing context, then throw an "InvalidAccessError" DOMException
Simple testcase:
<script> try { window.open("http://example.com"); alert("no exception"); } catch (e) { alert("exception: " + e) } </script>
This alerts "no exception" in today's Firefox, Chrome, Safari, Edge.
The text was updated successfully, but these errors were encountered:
Do not throw when window.open() is popup blocked
9adbf6a
This is not compatible with any browser. Fixes #1845.
fbbc480
29fcbad
This is not compatible with any browser. Fixes whatwg#1845.
No branches or pull requests
https://html.spec.whatwg.org/multipage/browsers.html#dom-open step 4 says:
Simple testcase:
This alerts "no exception" in today's Firefox, Chrome, Safari, Edge.
The text was updated successfully, but these errors were encountered: