Closed
Bug 1484907
Opened 6 years ago
Closed 6 years ago
Two keys are having same keycodes '%' and left arrow key.
Categories
(Core :: DOM: UI Events & Focus Handling, defect)
Tracking
()
RESOLVED
INCOMPLETE
People
(Reporter: ushmajoshi21, Unassigned)
Details
User Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36
Steps to reproduce:
I'm a developer I have put a validation for key restriction. input field should not accept %,& . Everything is working fine in other browsers. then i came to know that arrow keys are not working in firefox. so I found keycodes for that. for ex. left arrow is having keycode '37' for firefox. so I have removed restriction from code '37'.
Actual results:
Left arrow is working fine after removing restriction from keycode '37'. But my validation goes wrong as it started accepting '%' in input field. then i came to know that both the keys are sharing same key code '37'. And I'm facing validation issue due to this.
Expected results:
Keycode should be unique for each key. if '%' is having keycode 37. then it should not be assigned to any other key of keyboard.
Updated•6 years ago
|
Component: Keyboard Navigation → Event Handling
Product: Firefox → Core
Comment 1•6 years ago
|
||
Thanks for reporting this! Do you have a minimal test for this?
Flags: needinfo?(ushmajoshi21)
Comment 2•6 years ago
|
||
2019-03-06
This bug is part of a group of bugs which have had an open needinfo for at least 12 weeks.
The request for information has not been answered, and we can't move forward on the bug so we are closing it.
If the defect is still present, please reopen this bug with an updated report.
Status: UNCONFIRMED → RESOLVED
Closed: 6 years ago
Resolution: --- → INCOMPLETE
Assignee | ||
Updated•6 years ago
|
Component: Event Handling → User events and focus handling
Updated•4 years ago
|
Flags: needinfo?(ushmajoshi21)
You need to log in
before you can comment on or make changes to this bug.
Description
•