aboutsummaryrefslogtreecommitdiff
path: root/files/ja/conflicting/web
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-07-19 01:07:10 +0900
committerGitHub <noreply@github.com>2021-07-19 01:07:10 +0900
commitb2713396a5c3fee9b96a97e62a4696cd1fb32504 (patch)
tree4646ca277928147e603cd15be7f619eae79237f1 /files/ja/conflicting/web
parent0cc10b1f116e303695fdd1ac94b9298d4986e693 (diff)
downloadtranslated-content-b2713396a5c3fee9b96a97e62a4696cd1fb32504.tar.gz
translated-content-b2713396a5c3fee9b96a97e62a4696cd1fb32504.tar.bz2
translated-content-b2713396a5c3fee9b96a97e62a4696cd1fb32504.zip
Web/API/Document 以下の conflicting 版を削除 (#1486)
- conflicting 版を削除 - 該当記事を 2021/07/11 時点の英語版に同期
Diffstat (limited to 'files/ja/conflicting/web')
-rw-r--r--files/ja/conflicting/web/api/document/characterset/index.html27
-rw-r--r--files/ja/conflicting/web/api/document/createevent/index.html33
2 files changed, 0 insertions, 60 deletions
diff --git a/files/ja/conflicting/web/api/document/characterset/index.html b/files/ja/conflicting/web/api/document/characterset/index.html
deleted file mode 100644
index cd66d4f362..0000000000
--- a/files/ja/conflicting/web/api/document/characterset/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
----
-title: document.inputEncoding
-slug: conflicting/Web/API/Document/characterSet
-tags:
- - DOM
- - Document
- - Gecko
- - Gecko DOM Reference
-translation_of: Web/API/Document/characterSet
-translation_of_original: Web/API/Document/inputEncoding
-original_slug: Web/API/Document/inputEncoding
----
-<p>{{ApiRef}} {{deprecated_header}}</p>
-<h2 id="Summary" name="Summary">概要</h2>
-<p>文書パース時のエンコーディングを表す文字列(※ <code>ISO-8859-1</code> 等)を返します。</p>
-<div class="warning">
- <strong>注記:</strong> このメソッドは DOM 4 仕様書ドラフトから削除されており、Gecko の実装からも削除される可能性があります。使用しないようにしてください。</div>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre class="syntaxbox"><code><var>encoding</var> = document.inputEncoding;</code></pre>
-<ul>
- <li><code>inputEncoding</code> : {{readOnlyInline}}</li>
-</ul>
-<h2 id="Specification" name="Specification">仕様書</h2>
-<ul>
- <li><a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#Document3-inputEncoding">DOM Level 3 Core</a></li>
- <li>※ {{spec("http://www.w3.org/TR/domcore/","DOM Core Level 4","WD")}} で削除されています。</li>
-</ul>
diff --git a/files/ja/conflicting/web/api/document/createevent/index.html b/files/ja/conflicting/web/api/document/createevent/index.html
deleted file mode 100644
index c4dd08ff84..0000000000
--- a/files/ja/conflicting/web/api/document/createevent/index.html
+++ /dev/null
@@ -1,33 +0,0 @@
----
-title: Event.createEvent()
-slug: conflicting/Web/API/Document/createEvent
-translation_of: Web/API/Document/createEvent
-translation_of_original: Web/API/Event/createEvent
-original_slug: Web/API/Event/createEvent
----
-<p>{{APIRef("DOM")}}</p>
-
-<p>新規イベントを生成します。生成されたイベントは初期化処理が必須です。</p>
-
-<h3 id="構文">構文</h3>
-
-<pre><code>document.createEvent(type) </code></pre>
-
-<dl>
- <dt><code>type</code></dt>
- <dd>生成するイベントタイプ名</dd>
-</dl>
-
-<p>このメソッドは指定されたイベントタイプの新規DOM {{ domxref("Event") }} オブジェクトを返り値として返します。</p>
-
-<p>オブジェクトには初期化処理が必須です。</p>
-
-<h3 id="例">例</h3>
-
-<pre>var newEvent = document.createEvent("UIEvents");</pre>
-
-<h3 id="仕様書">仕様書</h3>
-
-<ul>
- <li><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-document" title="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-document">DOM Level 2 Events</a></li>
-</ul>