You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
It looks like in branch 2454, the key up event will not be fired on Enter-key from the browser.
If I do something like this in a HTML page
myTextField.onkeyup = function (e) { console.log("keyup: " + e.keyCode); }
and click any key, it will work for all keys except for the Enter key. The browser only fires keypress and keydown events for this key.
I compared it with a CEF3 test app. There it has worked just fine.
You can download it from here: CEF Builds on "Branch 2454" > "Test App".
For testing this event, I uploaded a Test HTML page with a JQuery file:
TestPage.zip
Is this a bug or did I miss something?
The text was updated successfully, but these errors were encountered: