aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/shadowroot
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/shadowroot')
-rw-r--r--files/ja/web/api/shadowroot/host/index.md45
1 files changed, 45 insertions, 0 deletions
diff --git a/files/ja/web/api/shadowroot/host/index.md b/files/ja/web/api/shadowroot/host/index.md
new file mode 100644
index 0000000000..bac179f4b7
--- /dev/null
+++ b/files/ja/web/api/shadowroot/host/index.md
@@ -0,0 +1,45 @@
+---
+title: ShadowRoot.host
+slug: Web/API/ShadowRoot/host
+tags:
+ - API
+ - Host
+ - プロパティ
+ - リファレンス
+ - ShadowRoot
+ - シャドウ DOM
+browser-compat: api.ShadowRoot.host
+---
+{{APIRef("Shadow DOM")}}
+
+**`host`** は {{domxref("ShadowRoot")}} の読み取り専用プロパティで、 `ShadowRoot` が取り付けられている DOM 要素の参照を返します。
+
+## 構文
+
+```js
+const someElement = shadowRoot.host
+```
+
+### 値
+
+DOM の {{domxref('Element')}} です。
+
+## 例
+
+```js
+let customElem = document.querySelector('my-shadow-dom-element');
+let shadow = customElem.shadowRoot;
+
+ ...
+
+// 後で、元のホスト要素を返す
+let hostElem = shadow.host;
+```
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}