Skip to content
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

fix regression in definition of beforeunload prompts caused by #1040 / #1518 #1573

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

jtnord
Copy link

@jtnord jtnord commented Feb 22, 2021

The definition of what happens to a prompt created from a beforeunload event unintentionally changed from being implicitly dismissed from explicit navigation to implicit navigation.

the link used to go to "Go" but this was renamed in #1040 leaving a dead link.
This link was "fixed" in #1518 but instead of fixing the link to how it was (by linking to the new "Navigate To" which was renamed earlier) it linked to the default definition of navigate which is vastly different and covers all navigation implicit or explicit.

fixes #1294


Preview | Diff

The wording of the current entry implies to some that promots from
beforeunloaded are always dismissed and thus the promot is in effect
never shown and the user will have no chance to interact with it.

This interpretation would lead it to be impossible to interact with them
and test them - which seems to be the purpose of the webdriver spec, so
this would imply that that interpretation is incorrect.

This clarifies the wording to say that the promot is dismissed on
*subsequent* navigations, thus if a prompt was shown and a navigation
attempt was performed then it would be dismissed, however if the cause
of the alter was a navigation then the promot will be shown so that the
user can interact with it.

fixes w3c#1294
@andreastt andreastt removed their request for review February 22, 2021 12:28
Copy link
Member

@jgraham jgraham left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is a clarification; it's a total change in the model. As written it implies that something like closing a window can fail, but subsequent calls will succeed. That would need much more support in the spec than this patch provides.

If there's a desire to change the way the protocol works with beforeUnload prompts, the first question is what existing implementations do. If current implementations always follow the current spec it seems likely that unilateral change in the spec will break tests. If there are various behaviours there might be more flexibility to change things without breaking users.

(FWIW I would expect this kind of thing to be fixed in the BiDi version of WebDriver, and clients will get to implement whatever behaviour they like).

@jtnord
Copy link
Author

jtnord commented Feb 22, 2021

If there's a desire to change the way the protocol works with beforeUnload prompts, the first question is what existing implementations do.

Chrome - allows the user to handle them
Previous versions of firefox (not sure if this is firefox or a geckodriver change) allowed the user to handle them
Firefox/geckodriver latest releases - does not allow the user to handle them.

If current implementations always follow the current spec it seems likely that unilateral change in the spec will break tests.

See above - this is not the case.

If there are various behaviours there might be more flexibility to change things without breaking users.

Potentially the issue at hand is that the link to navigate includes all forms of navigationby linking to dfn-navigation (even ones performed by click on a WebElement rather than just explicit ones (forward / back / navigate to) by linking to navigation (section 10)?

@jtnord
Copy link
Author

jtnord commented Feb 22, 2021

Potentially the issue at hand is that the link to navigate includes all forms of navigationby linking to dfn-navigation (even ones performed by click on a WebElement rather than just explicit ones (forward / back / navigate to) by linking to navigation (section 10)?

which could as I understand it have been introduced in 321fff4 because prior to that change there was no definition of navigation and thus IIUC the link would have taken you to the section header?

@jtnord
Copy link
Author

jtnord commented Feb 22, 2021

incorrect link in the above. It did indeed used to link not to dfn-navigation but go (which was explicit navigation triggered by webdriver and not by implicit navigation caused by a click on an element.

33c1f38

Go was what Navigate To was called - so I think this is the actual issue :)
so this was as intended prior to #1040

The "navigation" used in versions of the spec from
33c1f38 used to link to "Go".

The previous commit attempted to fix this by removing the link and
linking to the generic navigation definition however this was not the
intent.

SO this was originally introduced in w3c#1040

this fixes this and so now correctly shows when prompts from
beforeunload should be implicitly dismissed
are <a>dismissed</a> implicitly upon <a>navigation</a>
or <a>close window</a>,
regardless of the defined <a>user prompt handler</a>.
are <a>dismissed</a> implicitly upon a <a data-lt="Navigate To">navigation</a>
Copy link
Author

@jtnord jtnord Feb 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#1040 changed Go to Navigate To and broke the link.
#1518 then tried to fix warnings in invalid links but linked to the wrong thing. (navigation being all implicit navigation and not just explicit in Navigate To)

@jtnord jtnord changed the title clarify the bahaviour of beforeunloaded prompts fix regression in definition of beforeunload prompts caused by #1040 / #1518 Feb 22, 2021
@jtnord jtnord requested a review from jgraham February 22, 2021 14:38
@jtnord
Copy link
Author

jtnord commented Feb 23, 2021

@jgraham have you had a chance to look and (in)validate my latest analysis here?

Given that Mozilla Firefox / geckodriver is now implementing this "as written" and differently to other browsers based seems pretty scary to me, when as written is caused by an innocent accident.

@jtnord
Copy link
Author

jtnord commented Feb 23, 2021

I realise that #1518 changed Go (navigate to) to navigate in multiple places so this is a wider issue than just here.

Comment on lines +9733 to +9734
are <a>dismissed</a> implicitly upon a <a data-lt="Navigate To">navigation</a>
or a <a>close window</a>, regardless of the defined <a>user prompt handler</a>.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
are <a>dismissed</a> implicitly upon a <a data-lt="Navigate To">navigation</a>
or a <a>close window</a>, regardless of the defined <a>user prompt handler</a>.
are <a>dismissed</a> implicitly upon a WebDriver-initiated <a data-lt="Navigate To">
navigation</a> or <a>close window</a>, regardless of the defined <a>user prompt
handler</a>.

Copy link
Author

@jtnord jtnord Mar 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jgraham I am not sure that this makes clearer, rather the reverse.
Navigate To is a webdriver spec - (it is a POST /session/{session id}/url) so should not be "WebDriver Initiated" - but always initiated by some other code. If some other functionality was linked to "Navigate To" in the spec then this would already be handled by the spec and behaviour - but nothing is linked to this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

User prompts for "beforeunload" event should not automatically be dismissed
2 participants