We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 180c27c commit cf76f31Copy full SHA for cf76f31
html/cross-origin-opener-policy/resources/noopener-helper.js
@@ -121,8 +121,9 @@ const test_noopener_navigating_away = (popup_coop) => {
121
assert_equals(await receive(reply_token), 'Popup loaded');
122
t.add_cleanup(() => send(popup_token, 'window.close()'));
123
124
- // Assert that we can script the popup.
125
- assert_not_equals(popup.window, null, 'can script the popup');
+ // There's an open question if we should check that popup.window is null here.
+ // See https://github.com/whatwg/html/issues/10457
126
+ // Assert that we cannot script the popup.
127
assert_false(popup.closed, 'popup closed');
128
129
// Ensure that the popup has no access to its opener.
0 commit comments