Safari Bug
Incorrect Behavior with a number input, when the step is 25.
by XTREME104
HTML
<form>
Normal Behavior (step=20)<br/><input type='number' min='5' max='1000' step='20' value='50'/><br/>
Incorrect Behavior (step=25)<br/><input type='number' min='5' max='1000' step='25' value='50'/><br/>
Normal Behavior (step=30)<br/><input type='number' min='5' max='1000' step='30' value='50'/><br/>
</form>