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
If the relevant global object of this is not a top-level browsing context
First, the global object will be a Window. You cannot use the predicate "top-level browsing context" on a Window object; they're different things.
Window
Second, in whatwg/html#6315 we generally moved away from browsing contexts.
So, the right way to do this is:
If [=this=]'s [=relevant global object=]'s [=Window/navigable=] is not a [=top-level traversable=], then...
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
First, the global object will be a
Window
. You cannot use the predicate "top-level browsing context" on aWindow
object; they're different things.Second, in whatwg/html#6315 we generally moved away from browsing contexts.
So, the right way to do this is:
The text was updated successfully, but these errors were encountered: