Open
Bug 203231
Opened 23 years ago
Updated 3 years ago
No keypress event generated for some Ctrl+Shift+<number> combinations
Categories
(Core :: DOM: Events, defect, P5)
Tracking
()
NEW
People
(Reporter: DavidA, Unassigned)
Details
(Keywords: testcase)
Attachments
(1 file)
|
1.97 KB,
application/vnd.mozilla.xul+xml
|
Details |
Summary: Ctrl+Shift+6 and Ctrl+Shift+2 result in keypress events but all the
other Ctrl+Shift+<number> keys don't.
The attached XUL is a little demo window that logs keydown/keyup/keypressed
events when they happen in the textbox.
Here is an annotated log showing the different:
Ctrl-Shift-2:
keydown-Ctrl-VK_CONTROL
keydown-Ctrl-Shift-VK_SHIFT
keydown-Ctrl-Shift-VK_2
keypress-Ctrl-Shift-@ # Keypress happened
keyup-Ctrl-Shift-VK_2
keyup-Ctrl-VK_SHIFT
keyup-VK_CONTROL
vs. Ctrl-Shift-3:
keydown-Ctrl-VK_CONTROL
keydown-Ctrl-Shift-VK_SHIFT
keydown-Ctrl-Shift-VK_3
keyup-Ctrl-Shift-VK_3
keyup-Shift-VK_CONTROL
keyup-VK_SHIFT
Note that in the latter case, no keypress event was generated.
This bug has been introduced since 0.9.5.
| Reporter | ||
Comment 1•23 years ago
|
||
Patch showing the bug on the trunk.
| Reporter | ||
Comment 2•23 years ago
|
||
Investigation shows that in 0.9.5, the behavior was different but equally
strange:
keydown-Shift-VK_SHIFT
keydown-Ctrl-Shift-VK_CONTROL
keydown-Ctrl-Shift-VK_1
keypress-Ctrl-Shift-1 # reasonable
keyup-Ctrl-Shift-VK_1
keyup-Ctrl-VK_SHIFT
keyup-VK_CONTROL
keydown-Shift-VK_SHIFT
keydown-Ctrl-Shift-VK_CONTROL
keydown-Ctrl-Shift-VK_2
keypress-Ctrl-Shift-2 # reasonable
keypress-Ctrl-Shift-@ # also reasonable, but both???
keyup-Ctrl-Shift-VK_2
keyup-Ctrl-VK_SHIFT
keyup-VK_CONTROL
Comment 3•20 years ago
|
||
testcase XUL window bit-rotten?
Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.9a1) Gecko/20051106 SeaMonkey/1.5a
patch in unconfirmed Bug 315328
ctrl+shift+2|6 behave different than other ctrl+shift+number keys
Keywords: testcase
Updated•16 years ago
|
Assignee: saari → nobody
QA Contact: desale → events
Comment 4•7 years ago
|
||
https://bugzilla.mozilla.org/show_bug.cgi?id=1472046
Move all DOM bugs that haven’t been updated in more than 3 years and has no one currently assigned to P5.
If you have questions, please contact :mdaly.
Priority: -- → P5
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•