Closed
Bug 817405
Opened 12 years ago
Closed 12 years ago
no keyup event triggered on Alt key up after any other key up when pressed together
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 347010
People
(Reporter: Optimizer, Unassigned)
Details
(Whiteboard: S)
STR :
Apply the following script using scratchpad to any page
document.addEventListener("keydown", function(e) {console.log("down " + e.keyCode);}, true);
document.addEventListener("keypress", function(e) {console.log("press " + e.charCode);}, true);
document.addEventListener("keyup", function(e) {console.log("up " + e.keyCode);}, true);
then do the following key sequence
1. Alt down
2. R down
3. R up
4. Alt up
(any other key can be used in step 2 and 3)
the last Alt up does not trigger a keyup event and the console logs can be used to verify that
Comment 1•12 years ago
|
||
On Linux there is alt-up, but I don't see it on Windows.
Reporter | ||
Updated•12 years ago
|
Summary: no keyup event after second key lifted → no keyup event triggered on Alt key up after any other key up when pressed together
Whiteboard: S
Updated•12 years ago
|
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → DUPLICATE
Assignee | ||
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•