-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
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
Use the topmost browsing context for links in the dialog iframe #8194
Conversation
@@ -1,11 +1,11 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<base target="_top"> | |||
<meta charset="utf-8"> | |||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
off-topic: <meta charset>
should be present in the first 1024 bytes of the document: https://web.dev/charset/
For |
Yeah, let's just do the dialog frame for now. |
Per #8193 (review).
(
target="_top"
escapes all levels of iframes, not only parents.)