Status: Untriaged Owner: tony.chromium CC: [email protected] Labels: Type-Bug Pri-2 OS-Linux Area-Misc Size-Medium
New issue 17347 by [email protected]: Key events do not have valid keyIdentifiers for function keys on Linux http://code.google.com/p/chromium/issues/detail?id=17347 1. Open snippet below in Chrome 2. Press F1 ... F12 Expected: alert message with 'F1'...'F12' Actual: alert message with 'U+0000' This prevents debugger shortcuts from working... <html> <script type="text/javascript"> document.addEventListener("keydown", function(event) { alert(event.keyIdentifier); event.preventDefault(); }, true); </script> </html> -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
