NOTE This behaviour only occures in FireFox (as least in v66)
I have the following scenario:
All this can be reproduced here: https://jsfiddle.net/ax7unjhb/2/ (FireFox only!)
Click text input to gain auto complete:
Click arrow up; auto complete appears again and overlaps number input:
Number increased to max value:
<form action="window.location.reload();">
<input type="text" style="width: 100%;" />
<input type="number" min="1" max="32" style="width: 100%;" />
<button type="submit">
Submit
</button>
</form>
My question
What causes the auto complete to pop up, although I click another input? This is not the expected behaviour. When I click the increase button of the number input, I expect to increase the number by 1.