How to hide autocomplete suggestions bar on Android Chrome?

I am attempting to hide the autocomplete bar above the keyboard on Chrome on Android, but all my various attempts are having no impact.

<input type="text"                           
  autocomplete="off" 
  autocorrect="off" 
  autocapitalize="off" 
  spellcheck="false"
  inputmode="text"
  enterkeyhint="next"
/>

JSFiddle demonstrating this: https://jsfiddle.net/38x2s4te/

Screenshot from Android phone

Tested on Pixel 7, Chrome 130.0.6723.59.
Note: this works perfectly fine on latest iOS Safari and iOS Chrome browsers.

What is the magical incantation (if any) to get this to work?