Why is it that Chrome is the only browser that ignores inputmode="none" on inputs?
I want inputs in freshly opened <dialog> elements to not trigger the soft keyboard right away on (auto)focus, but instead when the user signals that they want to enter something, e.g. by a tap on it.
Safari works ✅
Firefox on Android works ✅
Samsung Internet works ✅
Chrome shows the soft keyboard ❌
☹️
Do I really have to inject a dummy element with tabindex="0" before the first input for it to catch focus?