aboutsummaryrefslogtreecommitdiff
path: root/files/ja/conflicting/web/api
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-06-28 01:01:01 +0900
committerGitHub <noreply@github.com>2021-06-28 01:01:01 +0900
commit89e41133e017c999e91f2b8361220375a7bffdc1 (patch)
tree2b5e2ee7df77f8e9b15448f7c88cda2274d5876e /files/ja/conflicting/web/api
parentd793503f812e424dd137b141e4b75a44ef0ea065 (diff)
downloadtranslated-content-89e41133e017c999e91f2b8361220375a7bffdc1.tar.gz
translated-content-89e41133e017c999e91f2b8361220375a7bffdc1.tar.bz2
translated-content-89e41133e017c999e91f2b8361220375a7bffdc1.zip
Web/API/Element/prefix を更新 (#1220)
* Web/API/Element/prefix を更新 - conflicting 版の方が古かったので、正規版を残して conflicting 版を削除 - 2021/06/13 時点の英語版に同期 * [CRON] sync translated content Co-authored-by: MDN <actions@users.noreply.github.com>
Diffstat (limited to 'files/ja/conflicting/web/api')
-rw-r--r--files/ja/conflicting/web/api/element/prefix/index.html52
1 files changed, 0 insertions, 52 deletions
diff --git a/files/ja/conflicting/web/api/element/prefix/index.html b/files/ja/conflicting/web/api/element/prefix/index.html
deleted file mode 100644
index 1b31545519..0000000000
--- a/files/ja/conflicting/web/api/element/prefix/index.html
+++ /dev/null
@@ -1,52 +0,0 @@
----
-title: Node.prefix
-slug: conflicting/Web/API/Element/prefix
-tags:
- - DOM
- - Gecko
- - Node
-translation_of: Web/API/Node/prefix
-original_slug: Web/API/Node/prefix
----
-<div>{{ApiRef}}</div>
-
-<h2 id="Summary" name="Summary">概要</h2>
-
-<p><code>prefix</code> は、特定のノードの名前空間の 接頭辞 (prefix) を返します。接頭辞がなければ <code>null</code> を返します。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox"><var>string</var> = element.prefix
-</pre>
-
-<h2 id="Examples" name="Examples">例</h2>
-
-<p>次の例は "x" をアラート表示します。</p>
-
-<pre class="brush:xml">&lt;x:div onclick="alert(this.prefix)"/&gt;
-</pre>
-
-<h2 id="Notes" name="Notes">注記</h2>
-
-<p>これは、名前空間を解するパーサを使っている場合(つまり、文書が XML mime 型の場合など)にのみ機能します。HTML 文書では機能しません。</p>
-
-<h2 id="Specification" name="Specification">仕様書</h2>
-
-<ul>
- <li><a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-NodeNSPrefix">Node.prefix</a> (DOM2 より導入)</li>
-</ul>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2>
-
-
-
-<p>{{Compat("api.Node.prefix")}}</p>
-
-<h2 id="関連情報">関連情報</h2>
-
-<ul>
- <li>{{domxref("Node.localName")}}</li>
- <li>{{domxref("Node.namespaceURI")}}</li>
- <li>{{domxref("Element.prefix")}}</li>
- <li>{{domxref("Attr.prefix")}}</li>
-</ul>