From a8eedad5f72b5f618975a26ddb03dd35fbe7c882 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Wed, 20 Oct 2021 00:46:02 +0900 Subject: Web/API/Document/rootElement を新規翻訳 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2021/10/20 時点の英語版に基づく --- files/ja/web/api/document/rootelement/index.md | 56 ++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 files/ja/web/api/document/rootelement/index.md (limited to 'files/ja/web/api') 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` と同じものになります。 + +## 仕様書 + + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
+ {{SpecName('SVG2','struct.html#__svg__SVGDocument__rootElement','SVGDocument.rootElement')}} + {{Spec2('SVG2')}}非推奨になった
+ {{SpecName('SVG1.1','struct.html#__svg__SVGDocument__rootElement','SVGDocument.rootElement')}} + {{Spec2('SVG1.1')}}初回定義
-- cgit v1.2.3-54-g00ecf