WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
NEW
220723
Page scrolls when dispatching space keypress event from an input field
https://bugs.webkit.org/show_bug.cgi?id=220723
Summary
Page scrolls when dispatching space keypress event from an input field
Mats
Reported
2021-01-19 00:52:14 PST
When pressing space key inside a textfield, no page scroll is observed. Should work the same for untrusted events, test case below: Open any page with an input on it, such as:
https://bugs.webkit.org/
Run this in the console: const input = $('input[type=text]'); // grab first input on the page const event = new KeyboardEvent('keypress', { altKey: false, bubbles: true, cancelBubble: false, cancelable: true, charCode: 32, code: "Space", composed: true, ctrlKey: false, currentTarget: null, defaultPrevented: false, detail: 0, eventPhase: 0, isComposing: false, key: " ", keyCode: 0, location: 0, metaKey: false, repeat: false, returnValue: true, shiftKey: false, srcElement: input, target: input, type: "keypress", which: 0 }); input.focus(); input.dispatchEvent(event); Note that page scrolls.
Attachments
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2021-01-21 18:43:15 PST
<
rdar://problem/73479284
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug