昨日 getComputedStyle のエントリ書いたばかりだったけど、その補足です。
Safari も 3 からは
↓この Window Object の草案に従って、 window を document の view として実装した模様
Each view of a Document presented in a browsing context MUST be represented by an object that implements the Window interface.
http://www.w3.org/TR/Window/
これによって
今まで、こうやって書かなきゃダメだった getComputedStyle を
var style = e.currentStyle || document.defaultView.getComputedStyle(e, '');
こう書けるようになります。
var style = e.currentStyle || getComputedStyle(e, '');
まとめ
21 文字の節約!わーい!