aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/implementation/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/document/implementation/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/document/implementation/index.html')
-rw-r--r--files/ja/web/api/document/implementation/index.html68
1 files changed, 68 insertions, 0 deletions
diff --git a/files/ja/web/api/document/implementation/index.html b/files/ja/web/api/document/implementation/index.html
new file mode 100644
index 0000000000..08cc40c5c3
--- /dev/null
+++ b/files/ja/web/api/document/implementation/index.html
@@ -0,0 +1,68 @@
+---
+title: Document.implementation
+slug: Web/API/Document/implementation
+tags:
+ - API
+ - DOM
+ - Document
+ - NeedsContent
+ - Property
+ - Reference
+translation_of: Web/API/Document/implementation
+---
+<div>{{ ApiRef("DOM") }}</div>
+
+<p><code><strong>Document.implementation</strong></code> プロパティは、現在の文書に関連付けられた {{domxref("DOMImplementation")}} オブジェクトを返します。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate"><var>DOMImpObj</var> = <var>document</var>.implementation;
+</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js notranslate">var modName = "HTML";
+var modVer = "2.0";
+var conformTest = document.implementation.hasFeature( modName, modVer );
+
+alert( "DOM " + modName + " " + modVer + " supported?: " + conformTest );
+
+// DOM Level 2 HTML module に対応している場合、"DOM HTML 2.0 supported?: true" とアラート表示されます。
+</pre>
+
+<p>モジュール名 (※ Core 、HTML 、XML 等) の一覧は <a href="http://www.w3.org/TR/DOM-Level-2-Core/introduction.html#ID-Conformance-h2">Conformance Section</a> で入手可能です。</p>
+
+<h2 id="Notes" name="Notes">メモ</h2>
+
+<p>W3C's DOM Level 1 勧告では <code>hasFeature</code> メソッドのみが定義されているので、ブラウザーが DOM モジュールに対応しているかどうかを判断する方法の一つです。 (上記の例と <a href="http://www.w3.org/2003/02/06-dom-support.html">What does your user agent claim to support?</a> を参照してください)。利用できるのであれば、 <code>DOMImplementation</code> の他のメソッドが、単一文書の外のものを制御するサービスを提供します。例えば、 <code>DOMImplementation</code> インターフェイスは <code>createDocumentType</code> メソッドを含んでおり、実装によって管理された1つ以上の文書に DTD が作成されます。</p>
+
+<h2 id="Specification" name="Specification">仕様書</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('DOM WHATWG', '#dom-document-implementation', 'document.implementation')}}</td>
+ <td>{{Spec2('DOM WHATWG')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("api.Document.implementation")}}</p>
+
+<h3 id="Gecko-specific_notes" name="Gecko-specific_notes">Gecko に特有のメモ</h3>
+
+<ul>
+ <li>Gecko 19.0 {{geckoRelease("19.0")}} から、 {{domxref("DOMImplementation.hasFeature","hasFeature")}} メソッドは常に true を返します。</li>
+</ul>