-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Test all input types with scrollTo and onscroll #20172
base: master
Are you sure you want to change the base?
Conversation
This test does not follow any spec yet. Instead it expects all `input` types to be scrollable and fire a `scroll` event in response to `scrollTo()`, to more clearly demonstrate which elements do this in browsers currently. Variants tested: * overflow: visible / hidden / scroll * appearance: auto / none See whatwg/html#4840
I think actually the Firefox result on wpt.fyi matches what whatwg/html#4840 currently requires (if we take the "overflow doesn't apply" + no statement to allow or require a scroll container to mean that scrolling shouldn't be supported). However, on macOS I get different results in Firefox Nightly: |
I've updated the test based on my previous comment. Firefox passes all subtests. |
@MatsPalmgren can you review this? |
This test does not follow any spec yet.
Instead it expects all
input
types to be scrollableand fire a
scroll
event in response toscrollTo()
,to more clearly demonstrate which elements do this in
browsers currently.
Variants tested:
See whatwg/html#4840