I\'m looking to get the used css values of all DOM elements on a page. When I say "used values" I\'m referring to the definition as specified in the W3C specificat
You could use jQuery or another preferred library in most cases.
For instance, your question title has font-size:100%
applied to it which can be retrieved w/firebug. But with jQuery api you can retrieve the value used like so:
$('#question-header .question-hyperlink').css('font-size');//run in console
//or enter this in the url bar
//javascript:alert($('#question-header .question-hyperlink').css('font-size'));
//returns "23.06px"
NB the library is included on this page, but it would be fairly trivial to create a bookmarklet that includes jQuery and polls the necessary properties.