-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Should input/change events be fired when the UA restores a form? #6853
Comments
This seems reasonable to me. It would be great if we had some autofill infrastructure in web-platform-tests. cc @whatwg/forms |
I have seen real sites in which 'change' event handlers trigger navigation. We might need to disallow navigation while UA is restoring values. e.g.
It seems the Chrome change changed the behavior for some input types, excluding <input type=file> and <select>. |
Not restoring file inputs seems reasonable to me. But select seems like it should be restored, if we can get away with it... |
However upon a moment's further consideration I think there's just no way restoring select would be web-compatible without some mitigation of the type @tkent-google discusses. Those kind of dropdown-to-navigate patterns are too prevalent. Hmm. |
So this seems like people generally agree with the existing spec language. I'm thinking I should just file browser bugs. Does that make sense to people? |
I think we're scared that the existing spec language might not be web-compatible for select and file inputs. |
As a web developer, I'm currently having difficulty adapting to Chrome's new The current spec language speaks of Example problem: Web forms commonly trigger back-end actions on |
Thanks for adding the comment here. Also thanks for the comment you just made on the Chromium bug. I actually wanted to copy part of that response here, because it has a nuance that is interesting to me. So the spec currently says this:
And you said:
The point you make is that from the user's point of view, nothing is changing, they're just "going back" to the past page, with form values (and everything else!) intact. I can certainly see that. And in fact that made me revisit the original bug that triggered my change to Chromium. In that case, there are some other elements on the page that "respond" to changes in the inputs. And the bug was that those other elements don't get properly "restored" when a tab is duplicated or a back/forward navigation happens. But the interesting thing there is that that behavior (not restoring the other elements) is a Chromium-only behavior. Gecko and WebKit both restore the entire page, so there's no need to re-fire the I adapted this example page to show this. The text values next to the range sliders respond to input/change events and change accordingly, but with a 2 second delay so you can see them. In Chromium, before the delay, you can see the bug - the sliders are restored, but the text does not match. After the events fire, things look good again. But this behavior is not shared by Gecko and WebKit - they both restore the full page, including the modified values, immediately. They have no need, therefore, for the extra events being fired. I'm beginning to think I should restore Chromium's behavior. Regardless of that decision, clearly it would be good to at least clarify this part of the spec. We should define (or link to?) what it means to "change" an input element's value. |
One of my action items from the last spec triage meeting was to experiment with the behavior of element restoration across engines. I put together this doc with the results: Apologies for sharing as a Google Doc, but it was a lot easier to build the table. Please address comments back here to this thread, and not in the doc. TL;DR: there are definitely some differences between the engines for non-form elements ( |
After some significant discussion [1][2], we've reached the conclusion that these changes should be rolled back. The issue is that the spec says "user agent is to change an input element's value", and in the case of form restoration on back/forward nav or tab navigation, that isn't seen by a user as a "change". It is a restoration of pre-existing state, which shouldn't even be visible to the user. I left the existing tests, but inverted their logic. I'm not sure that's hugely valuable, but that's what I did. [1] whatwg/html#6853 [2] https://crbug.com/1244603 [3] whatwg/html#6853 (comment) Fixed: 1244603 Bug: 1131234 Change-Id: Ifdd92a6dc473e7d33ee6c28609d730e1903e3fda Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3140573 Commit-Queue: Mason Freed <masonf@chromium.org> Commit-Queue: Joey Arhar <jarhar@chromium.org> Auto-Submit: Mason Freed <masonf@chromium.org> Reviewed-by: Joey Arhar <jarhar@chromium.org> Cr-Commit-Position: refs/heads/main@{#918293}
Just to quickly update this issue. The conclusion we reached was that not firing events when the UA restores form controls (e.g. during tab duplicate or back/forward nav) is the right thing to do. So on it's face, this issue should be closed. However, there is still an open action item to update the spec to make this situation more clear. I'll leave this issue open pending that change. |
@mfreed7 @smaug---- hey, @gijsk brought https://bugzilla.mozilla.org/show_bug.cgi?id=654072 to my attention. That indicates Firefox restores the disabled state of controls. It also indicates developers would like to know this restoration has happened in some way. That does suggest to me it might be worth spending more effort here on the full model and perhaps adding an event developers can act upon. |
@mfreed7 your document and observations are interesting - have you also considered how browsers handle redirects? I believe both page refresh and submit/back would count as navigate requests? So redirects would be an entirely different mode where restoration occurs? It seems the general consensus among browsers is that restoration shouldn't occur on page refresh - this makes logical sense because the act of REFRESHING means you want a clean slate. Restoring on page back makes sense, because your restoring an original page state, not refreshing state. If firefox didn't restore on page refresh I think that would help with most devs grumbles about how it differs in operation to all other browsers |
(But, it does fire formStateRestoreCallback, since that is explicitly used for synchronizing the custom element's internal state.) Closes #6853.
(But, it does fire formStateRestoreCallback, since that is explicitly used for synchronizing the custom element's internal state.) Closes #6853.
I've posted #7283 which IMO should close out this issue. Regarding @annevk's comment in #6853 (comment): I think there's a potential separate issue worth filing around driving better interop on form state restoration during navigation, if implementers desire. Currently the spec is intentionally vague: https://html.spec.whatwg.org/#persisted-user-state-restoration says
and
which we could try to make more normative if they want. E.g. prohibiting that clause from being used for "reload" navigations. As for an event, I think |
(But, it does fire formStateRestoreCallback, since that is explicitly used for synchronizing the custom element's internal state.) Closes #6853.
(But, it does fire formStateRestoreCallback, since that is explicitly used for synchronizing the custom element's internal state.) Closes whatwg#6853.
(But, it does fire formStateRestoreCallback, since that is explicitly used for synchronizing the custom element's internal state.) Closes whatwg#6853.
After some significant discussion [1][2], we've reached the conclusion that these changes should be rolled back. The issue is that the spec says "user agent is to change an input element's value", and in the case of form restoration on back/forward nav or tab navigation, that isn't seen by a user as a "change". It is a restoration of pre-existing state, which shouldn't even be visible to the user. I left the existing tests, but inverted their logic. I'm not sure that's hugely valuable, but that's what I did. [1] whatwg/html#6853 [2] https://crbug.com/1244603 [3] whatwg/html#6853 (comment) Fixed: 1244603 Bug: 1131234 Change-Id: Ifdd92a6dc473e7d33ee6c28609d730e1903e3fda Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3140573 Commit-Queue: Mason Freed <masonf@chromium.org> Commit-Queue: Joey Arhar <jarhar@chromium.org> Auto-Submit: Mason Freed <masonf@chromium.org> Reviewed-by: Joey Arhar <jarhar@chromium.org> Cr-Commit-Position: refs/heads/main@{#918293} NOKEYCHECK=True GitOrigin-RevId: 6306a97192a65c7ce96555b7cf74f78a64907bd9
The existing spec seems to say that
input
andchange
events should be fired whenever the UA performs form filling/restoration activities:Chromium recently fixed a bug here and implemented this behavior, which landed in M90. We have received only one bug report about the new behavior, so I think it is relatively safe to assume this change was web compatible.
Gecko and WebKit do not currently appear to implement the above event firing behavior.
It would seem to me that we should honor this part of the spec - from a developer's point of view, the value of the input is being changed (on the user's behalf by the UA), so events should be fired to allow the developer to know about that. I've seen many site bugs caused by UA-filled inputs not being "noticed" by the site. E.g. by password fillers. But thoughts appreciated.
The text was updated successfully, but these errors were encountered: