HTML "select" field does not show content items in fullscreen
Posted: Thu Dec 19, 2024 12:33 am
Hi,
I'd like to report a bug easily reproductible: open the Delphi VCL FullScreenBrowser demo,
replace defaultUrl to this one (to have a select form field):
Run and try to click on the "select" component shown: no popup with items is shown. If not fullscreen, it works. It could be that the popup window appears behind the main one?

Windows information : 1124H2 64-bits, Real PC.
Delphi 12.2 32bits.
Thank you.
I'd like to report a bug easily reproductible: open the Delphi VCL FullScreenBrowser demo,
replace defaultUrl to this one (to have a select form field):
Code: Select all
procedure TMainForm.FormShow(Sender: TObject);
begin
Chromium1.DefaultUrl := 'https://developer.mozilla.org/fr/docs/Web/HTML/Element/select';
// GlobalCEFApp.GlobalContextInitialized has to be TRUE before creating any browser
// If it's not initialized yet, we use a simple timer to create the browser later.
if not(Chromium1.CreateBrowser(CEFWindowParent1, '')) then Timer1.Enabled := True;
end;

Windows information : 1124H2 64-bits, Real PC.
Delphi 12.2 32bits.
Thank you.