autocapitalize="none" doesn't work for <input type="search"> in Firefox on Android

Viewed 406

This simple code doesn't work in Firefox on Android as expected:

<input type="search" autocapitalize="none">

Expected behavior: input value is not automatically capitalized

Actual behavior: input value is capitalized

Am I missing something or it's a bug in Firefox on Android?


PS. I just noticed that SO code snippets don't work on mobile, here's the live demo for testing purposes: https://gleaming-kitty.glitch.me/

2 Answers

I would try autocapitalize="none" and autocapitalize="off" simultaneously.

If that still doesn't work then there is probably a bug in the version of Firefox for Android you're using.

Related