Bump for above...?
Also, Chrome is really starting to get on my nerves...
I double-checked the :hover/:focus bug that broke Wedge in Chrome 26, a few months ago... If you'll remember, just setting a border on hover for a textarea or text input would quite simply prevent entering text in them. So I disabled it... Today (an hour ago), I decided to re-enable it, because apparently it's been fixed. Good, good...
Only, on the very same day, i.e. a few minutes ago, I found another silly bug in Chrome 28...
Are you ready?
Set position: relative on an object.
Set position: absolute on a child, and top: 0px.
Animate (through jQuery) to top: 100% on that child.
Element goes right below parent, as expected.
All right..?
Now, set said element's top: 100% to be animated to top: 0px. Which will do the exact reverse... Okay?
Well, it doesn't. It resets its starting position to 100% of the total window height... Fun!
I tested in earlier versions, and the bug isn't there.
Thankfully, I found a workaround, which costs 5 bytes, but whatever... Just set the target to '0%', rather than just 0.
Ah, well... That's the fun of using cutting-edge jQuery along with cutting-edge Chrome...!
I don't know if it's a Chrome or jQuery 2.0 beta 3 bug, so I'll let it slide for now.
:edit: Actually, it's a free fix. I forgot to remove my debug code before comparing... ;)