aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-10-20 00:46:02 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-10-28 02:04:39 +0900
commita8eedad5f72b5f618975a26ddb03dd35fbe7c882 (patch)
tree1cbc9ba1f260594651e6c646face60026af21538 /files/ja/web/api/document
parent9605b53a771319b1a9b59c65fef87c2ff3b67cf3 (diff)
downloadtranslated-content-a8eedad5f72b5f618975a26ddb03dd35fbe7c882.tar.gz
translated-content-a8eedad5f72b5f618975a26ddb03dd35fbe7c882.tar.bz2
translated-content-a8eedad5f72b5f618975a26ddb03dd35fbe7c882.zip
Web/API/Document/rootElement を新規翻訳
- 2021/10/20 時点の英語版に基づく
Diffstat (limited to 'files/ja/web/api/document')
-rw-r--r--files/ja/web/api/document/rootelement/index.md56
1 files changed, 56 insertions, 0 deletions
diff --git a/files/ja/web/api/document/rootelement/index.md b/files/ja/web/api/document/rootelement/index.md
new file mode 100644
index 0000000000..94659b0f7f
--- /dev/null
+++ b/files/ja/web/api/document/rootelement/index.md
@@ -0,0 +1,56 @@
+---
+title: Document.rootElement
+slug: Web/API/Document/rootElement
+tags:
+ - API
+ - DOM
+ - Deprecated
+ - Document
+ - Property
+ - Reference
+ - SVG
+ - root
+translation_of: Web/API/Document/rootElement
+---
+{{ApiRef("DOM")}}{{Deprecated_header}}
+
+**`Document.rootElement`** は {{domxref("Element")}} を返します。これは
+{{SVGElement("svg")}} 要素の場合は {{domxref("document")}} のルート要素で、それ以外の場合は `null` です。これはすべてのルート要素を返す {{domxref("Document.documentElement")}} に置き換えられて非推奨になりました。
+
+## 構文
+
+```js
+const element = document.rootElement
+```
+
+## メモ
+
+文書が空ではない SVG 要素の場合、`rootElement` は {{domxref("SVGSVGElement")}} となり、 `documentElement` と同じものになります。
+
+## 仕様書
+
+<table class="no-markdown">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ {{SpecName('SVG2','struct.html#__svg__SVGDocument__rootElement','SVGDocument.rootElement')}}
+ </td>
+ <td>{{Spec2('SVG2')}}</td>
+ <td>非推奨になった</td>
+ </tr>
+ <tr>
+ <td>
+ {{SpecName('SVG1.1','struct.html#__svg__SVGDocument__rootElement','SVGDocument.rootElement')}}
+ </td>
+ <td>{{Spec2('SVG1.1')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>