aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-18 20:25:46 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-26 08:55:52 +0900
commit6c3d6e18f6982382febbc67f4345b4eaf8152ec0 (patch)
treef85004554ba4a05313e68a819770d4ff1431747c
parent1491b644a5565f3c8fe4bf1864d1623839e6a7e6 (diff)
downloadtranslated-content-6c3d6e18f6982382febbc67f4345b4eaf8152ec0.tar.gz
translated-content-6c3d6e18f6982382febbc67f4345b4eaf8152ec0.tar.bz2
translated-content-6c3d6e18f6982382febbc67f4345b4eaf8152ec0.zip
2021/09/15 時点の英語版に基づき新規翻訳
-rw-r--r--files/ja/web/api/shadowroot/pictureinpictureelement/index.md45
1 files changed, 45 insertions, 0 deletions
diff --git a/files/ja/web/api/shadowroot/pictureinpictureelement/index.md b/files/ja/web/api/shadowroot/pictureinpictureelement/index.md
new file mode 100644
index 0000000000..cdcf4b19cc
--- /dev/null
+++ b/files/ja/web/api/shadowroot/pictureinpictureelement/index.md
@@ -0,0 +1,45 @@
+---
+title: ShadowRoot.pictureInPictureElement
+slug: Web/API/ShadowRoot/pictureInPictureElement
+tags:
+ - API
+ - プロパティ
+ - リファレンス
+ - ShadowRoot
+ - ウェブコンポーネント
+ - シャドウ DOM
+browser-compat: api.ShadowRoot.pictureInPictureElement
+---
+{{APIRef("Shadow DOM")}}
+
+**`pictureInPictureElement`** は {{domxref("ShadowRoot")}} インターフェイスの読み取り専用プロパティで、このシャドウツリー内で現在、ピクチャインピクチャモードで表示されている要素 ({{domxref("Element")}}) を返します。現在、ピクチャインピクチャモードが使用されていない場合は `null` を返します。
+
+## 構文
+
+```js
+shadowRoot.pictureInPictureElement
+```
+
+### 値
+
+現在ピクチャインピクチャモードになっている {{domxref("Element")}} オブジェクトへの参照、またはピクチャインピクチャモードが現在シャドウツリーで使われていない場合は `null` が返されます。
+
+## 例
+
+```js
+let customElem = document.querySelector('my-shadow-dom-element');
+let shadow = customElem.shadowRoot;
+let pipElem = shadow.pictureInPictureElement;
+```
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}
+
+## 関連情報
+
+- {{domxref("Document.pictureInPictureElement")}}