CSSImportRule インターフェイスは CSS スタイルシート内の @import 規則 を表す。@import 規則は、他のスタイルシートからスタイル規則をインポートする。
hrefDOMString型, 読取専用
"url(...)" 指定子を含まない。mediastylesheets::MediaList型, 読取専用
styleSheetCSSStyleSheet型, 読取専用
null となる。
// Introduced in DOM Level 2:
interface CSSImportRule : CSSRule {
readonly attribute DOMString href;
readonly attribute stylesheets::MediaList media;
readonly attribute CSSStyleSheet styleSheet;
};