This should be fixed now. Ben Brocka comments that something similar recently started happening in Chrome Beta and still happens, but I assume that's something else.
I've never been able to reproduce the issue you describe, but I was finally able to (more or less consistently) create a similar thing (I sometimes would need to turn the scrollwheel two or three times for that chat to move; it'd bounce back the first time). I assume that's the same issue, just that for some reason it comes out more annoying for you.
So what was happening? The chat tries to be smart about the question whether you want to always have the chat scroll to the bottom (e.g. because you want to see new messages come in) or not (e.g. because you're reading back).
When chat thinks you want to be "always on bottom", and notices that you are not (maybe because a new chat message just came in, or the window was resized, etc.), it'll scroll down. If you already are on the bottom, there's nothing to do.
The question "Are we already on the bottom?" is (or so I thought) easily answered:
notOnBottom = $("body").height() - $(window).scrollTop() - $(window).height() > 0
– if what's visible in the window plus what's hidden above is less then the full document, there must be something below; in other words, we're not on the bottom yet.
So when I had a situation where trying to scroll would bounce back, I scrolled all the way to the bottom and looked at the values.
>>> $("body").height()
857
>>> $(window).scrollTop()
100
>>> $(window).height()
756
With those values, the difference above is 1, and thus notOnBottom is true. No matter how hard I tried to scroll further down, I couldn't get that value to 0. And the chat did the same thing: It tried and tried and tried to scroll, because it never got all the way to the bottom. And that's what sometimes got in the way of your attempt to scroll up.
Here's what turns out to be the reason for this mismatch:
>>> document.body.clientHeight // this is what $("body").height() boils down to
857
>>> getComputedStyle(document.body).height
"856.7px"
– the document's height, in pixels, is not an integer. I don't know the exact rounding behavior Firefox employs here, but essentially this means that you always have 0.7 pixels of document below the window bottom, since you can only scroll by full pixels.
1000 words * # of frames? – Mr. Disappointment Jan 24 '12 at 12:01