- Notifications
You must be signed in to change notification settings - Fork 590
Open
Labels
alloyRelated to the Alloy runtimeRelated to the Alloy runtimebugBug reportBug reportcefclientRelated to the cefclient sample appRelated to the cefclient sample applinuxLinux platformLinux platformnativeRelated to a native (non-Views) frameworkRelated to a native (non-Views) framework
Description
Describe the bug
I'm launching cefclient on Ubuntu 24.04 and when clicking inputs sometimes the input doesn't actually receive focus. Focus seems to be going up to the address bar input.
Using this html file:
<!DOCTYPE html> <html> <body> <span id="active-focus">?</span> <br /> <input id="input1" /> <input id="input2" /> <script> setInterval(() => { document.querySelector("#active-focus").textContent = document.activeElement?.tagName + ' ' + document.activeElement?.id; }, 50); </script> </body> </html>To Reproduce
Steps to reproduce the behavior:
- Run
./cefclient --use-native --use-alloy-style --ozone-platform=x11 - Navigate to the test html file above
- Click around between the inputs and the background
- Sometimes after clicking an input, focus goes up to the address bar (typing text goes there instead of the input)
Expected behavior
Clicking inputs should focus the input
Screenshots
Screen.Recording.2026-03-27.152207.mp4
Versions (please complete the following information):
- OS: Ubuntu 24.04
- CEF Version: 7680/7727
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
alloyRelated to the Alloy runtimeRelated to the Alloy runtimebugBug reportBug reportcefclientRelated to the cefclient sample appRelated to the cefclient sample applinuxLinux platformLinux platformnativeRelated to a native (non-Views) frameworkRelated to a native (non-Views) framework