diff options
Diffstat (limited to 'files/ja/conflicting/web/api')
-rw-r--r-- | files/ja/conflicting/web/api/document/characterset/index.html | 27 | ||||
-rw-r--r-- | files/ja/conflicting/web/api/document/createevent/index.html | 33 |
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> |