This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
[web] Hide autofill overlay #39294
Merged
Merged
[web] Hide autofill overlay #39294
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8614d88
Make autofill styling transparent
htoor3 a7a0de5
Formatting
htoor3 b7a45f0
Add tests
htoor3 34446df
Merge remote-tracking branch 'upstream/main' into hide-autofill-overlay
htoor3 91bc9a5
Modify tests
htoor3 7ff9f6e
Add correct prefix for safari and firefox tests
htoor3 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should we start targeting the standard
:autofill
pseudo-class as well?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.
It does mention here https://developer.mozilla.org/en-US/docs/Web/CSS/:autofill to use both for best browser compatibility, but in manual testing:
:-webkit-autofill
style on every browser. Like you mentioned above, safari and firefox just read it internally as:autofill
:autofill
...chrome and edge both need the webkit prefix.So we can certainly conditionally target the
:autofill
selector for Firefox and Safari for "completeness", but it works fine as is too. The one downside I see in targeting:autofill
as well is that it won't work for older versions of those browsers.What do you think?
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.
I think that until firefox and safari break because they don't recognize
-webkit-autofill
, we're fine :P