aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-18 17:38:02 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-26 08:55:52 +0900
commit41e7fbfb05d46710a00ce2ad91032e689dc801db (patch)
treec706c738eedfdd91e201c3dc395f884c4d13a658
parentb6d3e1b3e51a7a582c2a5c6949332116390a800d (diff)
downloadtranslated-content-41e7fbfb05d46710a00ce2ad91032e689dc801db.tar.gz
translated-content-41e7fbfb05d46710a00ce2ad91032e689dc801db.tar.bz2
translated-content-41e7fbfb05d46710a00ce2ad91032e689dc801db.zip
2021/09/15 時点の英語版に基づき新規翻訳
-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}}