iOS 8+ now supports "real" scroll events in Safari, firing off events continuously rather than after the scroll event is complete. This means that previously used hacks to make scroll-based animations and parallax effects work on touch devices (such as wrapping all the content in a big container that does the actual scrolling) are no longer necessary for Safari in iOS 8+.
Because I'm not a big fan of the scroll hacks, I currently disable non-essential scroll animations on touch devices. I could exclude Safari on iOS 8+ from that check but a better solution would be to test for that feature specifically.
Is there any way to test if a browser fires off scroll events in real time rather than once the scroll gesture is complete?