aboutsummaryrefslogtreecommitdiff
path: root/files/ja/orphaned/web
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-07-30 12:55:26 +0900
committerGitHub <noreply@github.com>2021-07-30 12:55:26 +0900
commit9a156759565dd2fc69becdef99b30e2405c41687 (patch)
tree85b0beaddaf9d04ff42ca46f7b47d7a8266d9162 /files/ja/orphaned/web
parent4307c2c244d8104a663258a54cc5fc8a1e50a3c7 (diff)
downloadtranslated-content-9a156759565dd2fc69becdef99b30e2405c41687.tar.gz
translated-content-9a156759565dd2fc69becdef99b30e2405c41687.tar.bz2
translated-content-9a156759565dd2fc69becdef99b30e2405c41687.zip
orphaned/Web/API/DocumentOrShadowRoot 以下を削除 (#1586)
* orphaned/Web/API/DocumentOrShadowRoot 以下を削除
Diffstat (limited to 'files/ja/orphaned/web')
-rw-r--r--files/ja/orphaned/web/api/documentorshadowroot/index.html77
-rw-r--r--files/ja/orphaned/web/api/documentorshadowroot/mselementsfromrect/index.html55
2 files changed, 0 insertions, 132 deletions
diff --git a/files/ja/orphaned/web/api/documentorshadowroot/index.html b/files/ja/orphaned/web/api/documentorshadowroot/index.html
deleted file mode 100644
index 34431a10d3..0000000000
--- a/files/ja/orphaned/web/api/documentorshadowroot/index.html
+++ /dev/null
@@ -1,77 +0,0 @@
----
-title: DocumentOrShadowRoot
-slug: orphaned/Web/API/DocumentOrShadowRoot
-tags:
- - API
- - Document
- - DocumentOrShadowRoot
- - Reference
- - ShadowRoot
- - インターフェイス
- - シャドウ DOM
-translation_of: Web/API/DocumentOrShadowRoot
-original_slug: Web/API/DocumentOrShadowRoot
----
-<div>{{APIRef("Web Components")}}</div>
-
-<p><span class="seoSummary"><strong><code>DocumentOrShadowRoot</code></strong> は <a href="/ja/docs/Web/Web_Components/Using_shadow_DOM">Shadow DOM API</a> のミックスインで、文書とシャドウルートで共有される API を提供します。</span>以下の機能は {{DOMxRef("Document")}} と {{DOMxRef("ShadowRoot")}} の両方に含まれています。</p>
-
-<h2 id="Properties" name="Properties">プロパティ</h2>
-
-<dl>
- <dt>{{DOMxRef("DocumentOrShadowRoot.activeElement")}}{{ReadOnlyInline}}</dt>
- <dd>シャドウツリー内でフォーカスを持っている {{DOMxRef('Element')}} を返します。</dd>
- <dt>{{DOMxRef("DocumentOrShadowRoot.fullscreenElement")}}{{ReadOnlyInline}}</dt>
- <dd>この文書で現在全画面モードになっている {{DOMxRef('Element')}} を返します。</dd>
- <dt>{{DOMxRef("DocumentOrShadowRoot.pointerLockElement")}} {{Experimental_Inline}}{{ReadOnlyInline}}</dt>
- <dd>ポインターがロックされている間、マウスイベントのターゲットとして設定された要素を返します。ロック待ちの場合、ポインターがロックされていない場合、ターゲットが別な文書である場合は <code>null</code> を返します。</dd>
- <dt>{{DOMxRef("DocumentOrShadowRoot.styleSheets")}}{{ReadOnlyInline}}</dt>
- <dd>文書に明示的にリンクされているか、埋め込まれているスタイルシートの {{DOMxRef('CSSStyleSheet')}} オブジェクトの {{DOMxRef('StyleSheetList')}} を返します。</dd>
-</dl>
-
-<h2 id="Methods" name="Methods">メソッド</h2>
-
-<dl>
- <dt>{{DOMxRef("DocumentOrShadowRoot.caretPositionFromPoint()")}}</dt>
- <dd>キャレットを含んでいる DOM ノードと、そのノード内におけるキャレットの文字のオフセットを含む {{DOMxRef('CaretPosition')}} オブジェクトを返します。</dd>
- <dt>{{DOMxRef("DocumentOrShadowRoot.elementFromPoint()")}}</dt>
- <dd>指定された座標にある最上位の要素を返します。</dd>
- <dt>{{DOMxRef("DocumentOrShadowRoot.elementsFromPoint()")}}</dt>
- <dd>指定された座標にあるすべての要素の配列を返します。</dd>
- <dt>{{DOMxRef("DocumentOrShadowRoot.getSelection()")}}</dt>
- <dd>ユーザーによって選択されているテキストの範囲、またはキャレットの現在の位置を表す {{DOMxRef('Selection')}} オブジェクトを返します。</dd>
- <dt>{{DOMxRef("DocumentOrShadowRoot.nodeFromPoint()")}} {{non-standard_inline}}</dt>
- <dd>指定された座標にある最上位のノードを返します。</dd>
- <dt>{{DOMxRef("DocumentOrShadowRoot.nodesFromPoint()")}} {{non-standard_inline}}</dt>
- <dd>指定された座標にあるすべてのノードの配列を返します。</dd>
-</dl>
-
-<h2 id="Specifications" name="Specifications">仕様書</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">仕様書</th>
- <th scope="col">状態</th>
- <th scope="col">備考</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('Shadow DOM','#extensions-to-the-documentorshadowroot-mixin','DocumentOrShadowRoot')}}</td>
- <td>{{Spec2('Shadow DOM')}}</td>
- <td>Shadow DOM で実装。</td>
- </tr>
- <tr>
- <td>{{SpecName('DOM WHATWG','#mixin-documentorshadowroot','DocumentOrShadowRoot')}}</td>
- <td>{{Spec2('DOM WHATWG')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
-
-<p>{{Compat("api.DocumentOrShadowRoot")}}</p>
-
-<p>[1] このインターフェイスの機能は {{DOMxRef("Document")}} オブジェクトにも実装されています。</p>
diff --git a/files/ja/orphaned/web/api/documentorshadowroot/mselementsfromrect/index.html b/files/ja/orphaned/web/api/documentorshadowroot/mselementsfromrect/index.html
deleted file mode 100644
index a9c431e07a..0000000000
--- a/files/ja/orphaned/web/api/documentorshadowroot/mselementsfromrect/index.html
+++ /dev/null
@@ -1,55 +0,0 @@
----
-title: DocumentOrShadowRoot.msElementsFromRect()
-slug: orphaned/Web/API/DocumentOrShadowRoot/msElementsFromRect
-tags:
- - API
- - API:Microsoft Extensions
- - Method
- - Non-standard
- - Reference
- - msElementsFromRect
-translation_of: Web/API/DocumentOrShadowRoot/msElementsFromRect
-original_slug: Web/API/DocumentOrShadowRoot/msElementsFromRect
----
-<div>{{APIRef("Microsoft Extensions")}}{{Non-standard_Header}}</div>
-
-<p><strong><code>msElementsFromRect</code></strong> メソッドは、left、 top、 width、 heighで定義された四角形の下にある要素のノードリストを返します。</p>
-
-<p>この独自プロパティは Internet Explorer と Microsoft Edge に固有のものです。</p>
-
-<h2 id="構文">構文</h2>
-
-<pre class="syntaxbox notranslate"><em>object</em>.msElementsFromRect(left, top, width, height, retVal)
-</pre>
-
-<h3 id="パラメータ">パラメータ</h3>
-
-<dl>
- <dt><em>left </em>[in]</dt>
- <dd>型: <strong>浮動小数点</strong></dd>
- <dt><em>top</em>[in]</dt>
- <dd>型: <strong>浮動小数点</strong></dd>
- <dt><em>width</em>[in]</dt>
- <dd>型: <strong>浮動小数点</strong></dd>
- <dt><em>height </em>[in]</dt>
- <dd>型: <strong>浮動小数点</strong></dd>
- <dt><em>retVal </em>[out, reval]</dt>
- <dd>型: <strong>ノードリスト</strong></dd>
-</dl>
-
-<h2 id="例">例</h2>
-
-<p>特定のポイントの下にある全ての要素を検索するには、 <code>msElementsFromPoint(x, y)</code> を使用します。長方形を交差する全ての要素を見つけるには、 <code>msElementsFromRect(top, left, width, height)</code> を使用します。</p>
-
-<pre class="brush: js notranslate">var nodeList = document.msElementsFromRect(x,y,width,height)
-var nodeList = document.msElementsFromPoint(x,y)
-</pre>
-
-<p>返された nodeList には z-index でソートされているため、要素の相対的なスタック順序を確認できます。</p>
-
-<h2 id="See_Also" name="See_Also">関連項目</h2>
-
-<ul>
- <li><a href="https://testdrive-archive.azurewebsites.net/HTML5/HitTest/Default.html">Advanced Hit Testing APIs Demo for msElementsFromPoint() and msElementsFromRect() </a></li>
- <li><a href="/en-US/docs/Web/API/Microsoft_API_extensions">Microsoft API extensions </a></li>
-</ul>