aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/shadowroot/stylesheets/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/shadowroot/stylesheets/index.md')
-rw-r--r--files/ja/web/api/shadowroot/stylesheets/index.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/files/ja/web/api/shadowroot/stylesheets/index.md b/files/ja/web/api/shadowroot/stylesheets/index.md
new file mode 100644
index 0000000000..7ce492136c
--- /dev/null
+++ b/files/ja/web/api/shadowroot/stylesheets/index.md
@@ -0,0 +1,40 @@
+---
+title: ShadowRoot.styleSheets
+slug: Web/API/ShadowRoot/styleSheets
+tags:
+ - API
+ - ShadowRoot
+ - プロパティ
+ - リファレンス
+ - スタイルシート
+browser-compat: api.ShadowRoot.styleSheets
+---
+{{APIRef("CSSOM")}}
+
+**`styleSheets`** は {{domxref("ShadowRoot")}} インターフェイスの読み取り専用プロパティで、シャドウツリーに明示的にリンクされるか埋め込まれたスタイルシートを表す {{domxref('CSSStyleSheet')}} オブジェクトの {{domxref('StyleSheetList')}} を返します。
+
+## 構文
+
+```js
+shadowRoot.styleSheets
+```
+
+### 値
+
+{{domxref('CSSStyleSheet')}} オブジェクトの {{domxref('StyleSheetList')}} です。
+
+## 例
+
+```js
+let customElem = document.querySelector('my-shadow-dom-element');
+let shadow = customElem.shadowRoot;
+let styleSheets = shadow.styleSheets;
+```
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}