In Firefox, Opera and IE I can get them via:
>> for (k in document.body.style) console.log(k) -> opacity background height textAlign . ... long list ... . pointerEvents
In WebKit the result is quite different:
>> for (k in document.body.style) console.log(k) -> cssText length parentRule getPropertyValue getPropertyCSSValue removeProperty getPropertyPriority setProperty item getPropertyShorthand isPropertyImplicit
I would like to make a CSS autocompletion for Web Inspector. It seems not so hard. I wonder, why no one's done it before?