input type=number does not change on scroll

I have a simple number input element:

<input type="number" id="test" min="0" max="100" value="50">

Earlier I could change the value of the element just by scrolling inside the input element. But I could not do that anymore with Chrome version 100. Is this some kind of bug in Chrome or has something changed in the recent version of Chrome?

Also, I noticed if I add a blank event listener to that element then it works properly in Chrome:

document.getElementById('test').addEventListener('wheel', () => { })
<input type="number" id="test" min="0" max="100" value="50">