Interface StyleSheet

継承元:
(無し)
プロパティ:
disabled, href, media, ownerNode, parentStyleSheet, title, type
メソッド:

StyleSheet インターっフェイスはあらゆる型のスタイルシートのための抽象的基本インターフェイスである。構造化された文書に関連付けられた単一のスタイルシートをあらわす。HTML においては StyleSheet インターフェイスは、HTML の LINK エレメントによってインクルードされた外部スタイルシートも、行内 STYLE エレメントも表す。 XML においては、このインターフェイスは style sheet 処理命令 によってインクルードされる外部スタイルシートを表す。

プロパティ:

IDL 定義:

// Introduced in DOM Level 2:
interface StyleSheet {
  readonly attribute DOMString        type;
           attribute boolean          disabled;
  readonly attribute Node             ownerNode;
  readonly attribute StyleSheet       parentStyleSheet;
  readonly attribute DOMString        href;
  readonly attribute DOMString        title;
  readonly attribute MediaList        media;
};


Issued: / Revised: / All rights reserved. © 2002-2016 TAKI