EDIT
Well unless i write some code to render the html source files from the iframe in the same way a browser works- from a cached copy of the iframe display.. then there is no way- its a complete lock down. flash and silverlight use crossdomain.xlm but who the hell remembered about iframes? nobody..and that does not work either.. so easyXDM / or html sendmessage it will have to be. damn
Original post
Can anybody please help me with a script.. or a way to get the value of
height : 1196px;
width: 284px;
from the computed style sheet. (webkit) i know IE is different- as usuall
I cannot access the iframe (cross domain)- i just need the height-width
Please help Screenshot of what i need (circled in red) how to access those properties?

Source
<iframe id="frameId" src="anotherdomain\brsstart.htm">
<html id="brshtml" xmlns="http://www.w3.org/1999/xhtml">
\--I WANT THIS ELEMENTS COMPUTED BROWSER CSS HEIGHT/WIDTH
<head>
<title>Untitled Page</title>
</head>
<body>
BLA BLA BLA STUFF
</body>
</html>
\--- $('#frameId').context.lastChild.currentStyle
*This gets the actual original style set on the other domain which is "auto"
*Now how to getComputed Style?
</iframe>
The closest i got is this
$('#frameId').context.lastChild.currentStyle
That gives me the actual style on the HTML element which is "auto" and that is true as thats what's its set on the iframed document.
How.. do i get the computed style that all the browsers use to calculate the scroll bars, and inspect elements values?
Using Tomalaks answer i conjured up this lovely piece of script for webkit
window.getComputedStyle(document.getElementById("frameId"), null).getPropertyValue("height")
or
window.getComputedStyle(document.getElementById("frameId"), null).getPropertyCSSValue("height").cssText
Result 150px
Identical to
$('#frameId').height();
So i got them to add a id of 'brshtml' to the head- maybe it will help me select the element easier. webkit inspection shows me now html#brshtml but i cant select it using getelementbyid