aboutsummaryrefslogtreecommitdiff
path: root/files/ja/conflicting/web/api
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-07-13 02:32:44 +0900
committerGitHub <noreply@github.com>2021-07-13 02:32:44 +0900
commitf78be0017f65d72c148c698192cf3fce770bd3eb (patch)
tree6c4190c5327cbdcf220acf55120c967434913aad /files/ja/conflicting/web/api
parenta3790a606c63a83d8316d4938b8137ae4e7f0990 (diff)
downloadtranslated-content-f78be0017f65d72c148c698192cf3fce770bd3eb.tar.gz
translated-content-f78be0017f65d72c148c698192cf3fce770bd3eb.tar.bz2
translated-content-f78be0017f65d72c148c698192cf3fce770bd3eb.zip
conflicting/Web/API/DocumentOrShadowRoot を削除 (#1361)
* conflicting/Web/API/DocumentOrShadowRoot を削除 conflicting/Web/API/DocumentOrShadowRoot 以下を削除。 同時に、 Document.getSelection() のドキュメントを 2021/06/13 時点の最新版に同期
Diffstat (limited to 'files/ja/conflicting/web/api')
-rw-r--r--files/ja/conflicting/web/api/documentorshadowroot/getselection/index.html14
-rw-r--r--files/ja/conflicting/web/api/documentorshadowroot/index.html78
-rw-r--r--files/ja/conflicting/web/api/documentorshadowroot_20ea0e1d91453a020aad3a16dbce16f1/index.html82
3 files changed, 0 insertions, 174 deletions
diff --git a/files/ja/conflicting/web/api/documentorshadowroot/getselection/index.html b/files/ja/conflicting/web/api/documentorshadowroot/getselection/index.html
deleted file mode 100644
index 9931991d62..0000000000
--- a/files/ja/conflicting/web/api/documentorshadowroot/getselection/index.html
+++ /dev/null
@@ -1,14 +0,0 @@
----
-title: document.getSelection
-slug: conflicting/Web/API/DocumentOrShadowRoot/getSelection
-tags:
- - DOM
- - Document
- - Reference
- - Selection
-translation_of: Web/API/DocumentOrShadowRoot/getSelection
-translation_of_original: Web/API/Document/getSelection
-original_slug: Web/API/Document/getSelection
----
-<p>DOM の <code>getSelection()</code> メソッドは、 {{domxref("Window")}} インタフェース及び {{domxref("Document")}} インタフェースで利用可能です。<br>
- 詳細については {{domxref("window.getSelection()")}} の頁を参照して下さい。</p>
diff --git a/files/ja/conflicting/web/api/documentorshadowroot/index.html b/files/ja/conflicting/web/api/documentorshadowroot/index.html
deleted file mode 100644
index b3f0dbc605..0000000000
--- a/files/ja/conflicting/web/api/documentorshadowroot/index.html
+++ /dev/null
@@ -1,78 +0,0 @@
----
-title: DocumentOrShadowRoot.nodeFromPoint()
-slug: conflicting/Web/API/DocumentOrShadowRoot
-tags:
- - API
- - DocumentOrShadowRoot
- - Method
- - Non-standard
- - Reference
- - nodeFromPoint
- - メソッド
- - 標準外
-translation_of: Web/API/DocumentOrShadowRoot
-translation_of_original: Web/API/DocumentOrShadowRoot/nodeFromPoint
-original_slug: Web/API/DocumentOrShadowRoot/nodeFromPoint
----
-<div>{{APIRef("DOM")}}{{Non-standard_header}}</div>
-
-<p><span class="seoSummary">{{domxref("DocumentOrShadowRoot")}} インターフェイスの <strong><code>nodeFromPoint()</code></strong> プロパティは、 (ビューポートからの相対で) 指定された座標にある最上位のノードを返します。</span></p>
-
-<p>現在のところ、このメソッドは Firefox でしか実装されておらず、クロムコードでのみ利用できます。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox">var node = document.nodeFromPoint(x, y);</pre>
-
-<h3 id="Parameters" name="Parameters">引数</h3>
-
-<dl>
- <dt><code>x</code></dt>
- <dd>点の水平座標を表す倍精度浮動小数値。</dd>
- <dt><code>y</code></dt>
- <dd>点の垂直座標を表す倍精度浮動小数値。</dd>
-</dl>
-
-<h3 id="Returns" name="Returns">返値</h3>
-
-<p>{{domxref('Node')}} オブジェクト。</p>
-
-<h2 id="Example" name="Example">例</h2>
-
-<h3 id="HTML_Content" name="HTML_Content">HTML Content</h3>
-
-<pre class="brush: html">&lt;div&gt;
- &lt;p&gt;Some text&lt;/p&gt;
-&lt;/div&gt;
-&lt;p&gt;Top node at point 30, 20:&lt;/p&gt;
-&lt;div id="output"&gt;&lt;/div&gt;
-</pre>
-
-<h3 id="JavaScript_Content" name="JavaScript_Content">JavaScript Content</h3>
-
-<pre class="brush: js;highlight[1]">var output = document.getElementById("output");
-if (document.nodeFromPoint) {
- var node = document.nodeFromPoint(30, 20);
- output.textContent += node.localName;
-} else {
- output.innerHTML = "&lt;span style=\"color: red;\"&gt;" +
- "Browser does not support &lt;code&gt;document.nodeFromPoint()&lt;/code&gt;" +
- "&lt;/span&gt;";
-}</pre>
-
-<p>{{EmbedLiveSample('Example', '420', '120')}}</p>
-
-<h2 id="Specifications" name="Specifications">仕様書</h2>
-
-<p>現在はどの仕様書にも含まれていません。</p>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
-
-<p>{{Compat("api.DocumentOrShadowRoot.nodeFromPoint")}}</p>
-
-<h2 id="See_Also" name="See_Also">関連情報</h2>
-
-<ul>
- <li>{{DOMxRef("DocumentOrShadowRoot.nodesFromPoint()")}}</li>
- <li>{{DOMxRef("DocumentOrShadowRoot.elementFromPoint()")}}</li>
-</ul>
diff --git a/files/ja/conflicting/web/api/documentorshadowroot_20ea0e1d91453a020aad3a16dbce16f1/index.html b/files/ja/conflicting/web/api/documentorshadowroot_20ea0e1d91453a020aad3a16dbce16f1/index.html
deleted file mode 100644
index e1744f4eb8..0000000000
--- a/files/ja/conflicting/web/api/documentorshadowroot_20ea0e1d91453a020aad3a16dbce16f1/index.html
+++ /dev/null
@@ -1,82 +0,0 @@
----
-title: DocumentOrShadowRoot.nodesFromPoint()
-slug: conflicting/Web/API/DocumentOrShadowRoot_20ea0e1d91453a020aad3a16dbce16f1
-tags:
- - API
- - DocumentOrShadowRoot
- - Method
- - Non-standard
- - Reference
- - nodesFromPoint
- - メソッド
-translation_of: Web/API/DocumentOrShadowRoot
-translation_of_original: Web/API/DocumentOrShadowRoot/nodesFromPoint
-original_slug: Web/API/DocumentOrShadowRoot/nodesFromPoint
----
-<div>{{APIRef("DOM")}}{{Non-standard_header}}</div>
-
-<p><span class="seoSummary">{{domxref("DocumentOrShadowRoot")}} インターフェイスの <strong><code>nodesFromPoint()</code></strong> プロパティは、 (ビューポートからの相対で) 指定された座標のすべてのノードの配列を返します。</span></p>
-
-<p>現在のところ、このメソッドは Firefox でしか実装されておらず、クロムコードでのみ利用できます。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox">var nodes = document.nodesFromPoint(x, y);</pre>
-
-<h3 id="Parameters" name="Parameters">引数</h3>
-
-<dl>
- <dt>x</dt>
- <dd>点の水平座標。</dd>
- <dt>y</dt>
- <dd>点の垂直座標。</dd>
-</dl>
-
-<h3 id="Returns" name="Returns">返値</h3>
-
-<p>{{domxref('Node')}} オブジェクトの配列。</p>
-
-<h2 id="Example" name="Example">例</h2>
-
-<h3 id="HTML_Content" name="HTML_Content">HTML コンテンツ</h3>
-
-<pre class="brush: html">&lt;div&gt;
- &lt;p&gt;Some text&lt;/p&gt;
-&lt;/div&gt;
-&lt;p&gt;Nodes at point 30, 20:&lt;/p&gt;
-&lt;div id="output"&gt;&lt;/div&gt;
-</pre>
-
-<h3 id="JavaScript_Content" name="JavaScript_Content">JavaScript コンテンツ</h3>
-
-<pre class="brush: js;highlight[1]">var output = document.getElementById("output");
-if (document.nodesFromPoint) {
- var nodes = document.nodesFromPoint(30, 20);
- for(var i = 0; i &lt; nodes.length; i++) {
- output.textContent += nodes[i].localName;
- if (i &lt; nodes.length - 1) {
- output.textContent += " &lt; ";
- }
- }
-} else {
- output.innerHTML = "&lt;span style=\"color: red;\"&gt;" +
- "Browser does not support &lt;code&gt;document.nodesFromPoint()&lt;/code&gt;" +
- "&lt;/span&gt;";
-}</pre>
-
-<p>{{EmbedLiveSample('Example', '420', '120')}}</p>
-
-<h2 id="Specifications" name="Specifications">仕様書</h2>
-
-<p>現在はどの仕様書にも含まれていません。</p>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
-
-<p>{{Compat("api.DocumentOrShadowRoot.nodesFromPoint")}}</p>
-
-<h2 id="See_Also" name="See_Also">関連情報</h2>
-
-<ul>
- <li>{{DOMxRef("DocumentOrShadowRoot.nodeFromPoint()")}}</li>
- <li>{{DOMxRef("DocumentOrShadowRoot.elementsFromPoint()")}}</li>
-</ul>