aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/node/ownerdocument/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-02-25 00:44:22 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-03-05 22:14:26 +0900
commit7b582dd1d008c1daee40ac27dd2f72b067438652 (patch)
treedbeb5ffe16950780c957a49ae36546c1b6b1d157 /files/ja/web/api/node/ownerdocument/index.html
parentd132914ab964aec5d9394d7e11725ef5d1ce339d (diff)
downloadtranslated-content-7b582dd1d008c1daee40ac27dd2f72b067438652.tar.gz
translated-content-7b582dd1d008c1daee40ac27dd2f72b067438652.tar.bz2
translated-content-7b582dd1d008c1daee40ac27dd2f72b067438652.zip
Web/API/Node 以下のプロパティの文書を移行
Diffstat (limited to 'files/ja/web/api/node/ownerdocument/index.html')
-rw-r--r--files/ja/web/api/node/ownerdocument/index.html66
1 files changed, 0 insertions, 66 deletions
diff --git a/files/ja/web/api/node/ownerdocument/index.html b/files/ja/web/api/node/ownerdocument/index.html
deleted file mode 100644
index f6eef4f570..0000000000
--- a/files/ja/web/api/node/ownerdocument/index.html
+++ /dev/null
@@ -1,66 +0,0 @@
----
-title: Node.ownerDocument
-slug: Web/API/Node/ownerDocument
-tags:
- - DOM
- - Gecko
- - Node
-translation_of: Web/API/Node/ownerDocument
----
-<div>{{ApiRef}}</div>
-
-<h2 id="Summary" name="Summary">概要</h2>
-
-<p><code>ownerDocument</code> プロパティは、指定ノードを内包するノードツリーのトップレベルのドキュメントオブジェクトを返します。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox"><var>document</var> = element.ownerDocument
-</pre>
-
-<ul>
- <li><code>document</code> : 指定要素の祖先である {{domxref("document")}} オブジェクト</li>
-</ul>
-
-<h2 id="Example" name="Example">例</h2>
-
-<pre class="brush:js">var doc = p.ownerDocument; // ノード p のノードツリー上のトップレベル document オブジェクトを取得
-var html = doc.documentElement; // owner のドキュメント要素を取得
-
-alert(html); // [object HTMLHtmlElement]
-</pre>
-
-<h2 id="Notes" name="Notes">注記</h2>
-
-<p>このプロパティによって返される <code>document</code> オブジェクトは、実際の HTML 文書中ですべての子ノードの属するメインオブジェクトです。<code>document</code> ノード自身に対しこのプロパティを用いた場合、戻り値は <code>null</code> となります。</p>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">仕様</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th>Specification</th>
- <th>Status</th>
- <th>Comment</th>
- </tr>
- <tr>
- <td>{{SpecName("DOM4", "#dom-node-ownerdocument", "Node.ownerDocument")}}</td>
- <td>{{Spec2("DOM4")}}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName("DOM3 Core", "core.html#node-ownerDoc", "Node.ownerDocument")}}</td>
- <td>{{Spec2("DOM3 Core")}}</td>
- <td>No change</td>
- </tr>
- <tr>
- <td>{{SpecName("DOM2 Core", "core.html#node-ownerDoc", "Node.ownerDocument")}}</td>
- <td>{{Spec2("DOM2 Core")}}</td>
- <td>Initial definition</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2>
-
-<p>{{Compat("api.Node.ownerDocument")}}</p>