I have an HTML <input>
element which, when focused in Chrome android, shows this annoying password management feature above the keyboard which takes up screen real estate. It's not a password type field so I'm not sure why this is happening. Any idea how to get rid of it?
<form id="guess-form" class="svelte-1o40qmd">
<button id="btn-top" type="button" class="svelte-1o40qmd">▲ Top</button>
<input id="input-guess"
type="text"
spellcheck="true" autofocus=""
placeholder="Something"
autocomplete="off"
title="Something"
class="svelte-1o40qmd"/>
<input id="submit" type="submit" value="Guess" class="svelte-1o40qmd"/>
</form>
Update: This is a Chrome bug so remember to report it to the Chrome team (help -> report an issue).