Rect インターフェイスは 矩形値 を表す。このインターフェイスは基盤のスタイルプロパティ内の値を反映する。それゆえ、CSSPrimitiveValue オブジェクトへの変更はスタイルプロパティを更新する。
bottomCSSPrimitiveValue型, 読取専用
leftCSSPrimitiveValue型, 読取専用
rightCSSPrimitiveValue型, 読取専用
topCSSPrimitiveValue型, 読取専用
// Introduced in DOM Level 2:
interface Rect {
readonly attribute CSSPrimitiveValue top;
readonly attribute CSSPrimitiveValue right;
readonly attribute CSSPrimitiveValue bottom;
readonly attribute CSSPrimitiveValue left;
};