Chrome, 'show', 'clone' (or document fragments) and getComputedStyle
Trying to 'show' a document fragment that is hidden via a stylesheet rule fails in Google Chrome.
An example is at: http://jsbin.com/ehano5/8/edit
It looks like the offending API call happens at line 5901 of jquery-1.5.js. When calling getComputedStyle, Chrome returns "" for the display property, while FF (correctly?) returns "none".
The temporary 'fix' is to append the item to document first.
Or am I doing something else wrong?
_jason