Hi, I'm trying to test the scroll event and I could not make the scroll event propagation to happen using TestUtils: ``` javascript React.addons.TestUtils.Simulate.scroll(contentDiv, { deltaY: 500 }); ``` The above code is never triggering the scroll function callback. Then if I change the implementation to be something like this it works: ``` javascript contentDiv.scrollTop = 500; var evt = document.createEvent("HTMLEvents"); evt.initEvent("scroll", false, true); contentDiv.dispatchEvent(evt); ``` Am I doing something wrong with the React TestUtils? I've created a [stackoverflow](http://stackoverflow.com/questions/30128178/react-addons-testutils-simulate-scroll-is-not-working) ticket for this.