(In reply to Dimi Lee [ooo 29.03 - 07.04] from comment #4) > The website implements the state field with a "hidden" and "non-focusable" <select> and a visible <div> with multiple <li> to simulate the select-like field. looks like its based on http://selectric.js.org/
Bug 1836036 Comment 10 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
(In reply to Dimi Lee [ooo 29.03 - 07.04] from comment #4) > The website implements the state field with a "hidden" and "non-focusable" <select> and a visible <div> with multiple <li> to simulate the select-like field. looks like its based on http://selectric.js.org/ The input field is not of type hidden, but hidden via css. It has a proper autocomplete value: ``` <input class="selectric-input" tabindex="0" autocomplete="address-level1" aria-labelledby="ae-formFieldLabelOptIn_9agaw6shvxa_0"> ```