aboutsummaryrefslogtreecommitdiff
path: root/files/ja/conflicting
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-07-20 00:26:44 +0900
committerGitHub <noreply@github.com>2021-07-20 00:26:44 +0900
commitfe976c566c7f9d06cefc8874feb9f406d4992ac4 (patch)
tree3e7ed0e40b1443b9597a3ce82305a221c547761b /files/ja/conflicting
parentd32343579ad09e64b014ea94745441b5df381055 (diff)
downloadtranslated-content-fe976c566c7f9d06cefc8874feb9f406d4992ac4.tar.gz
translated-content-fe976c566c7f9d06cefc8874feb9f406d4992ac4.tar.bz2
translated-content-fe976c566c7f9d06cefc8874feb9f406d4992ac4.zip
conflicting/Web/API/GlobalEventHandlers/onmouseup を削除 (#1503)
正規版の方が新しいので、conflicting版を削除
Diffstat (limited to 'files/ja/conflicting')
-rw-r--r--files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html58
1 files changed, 0 insertions, 58 deletions
diff --git a/files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html b/files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html
deleted file mode 100644
index 6424230eb8..0000000000
--- a/files/ja/conflicting/web/api/globaleventhandlers/onmouseup/index.html
+++ /dev/null
@@ -1,58 +0,0 @@
----
-title: window.onmouseup
-slug: conflicting/Web/API/GlobalEventHandlers/onmouseup
-tags:
- - DOM
- - Gecko
- - Gecko DOM Reference
- - Window
-translation_of: Web/API/GlobalEventHandlers/onmouseup
-translation_of_original: Web/API/Window/onmouseup
-original_slug: Web/API/Window/onmouseup
----
-<div>
- {{ApiRef}}</div>
-<h2 id="Summary" name="Summary">概要</h2>
-<p>{{domxref("window")}} 上の <code>mouseup</code> イベントに対応するイベントハンドラです。</p>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre class="syntaxbox">window.onmouseup = <var>funcRef</var>;
-</pre>
-<ul>
- <li><code>funcRef</code> : 関数への参照、または関数式</li>
-</ul>
-<h2 id="Example" name="Example">例</h2>
-<pre class="brush:js">function doFunc() {
- alert("こんにちは!");
-}
-
-window.onmouseup = doFunc;
-</pre>
-<pre class="brush:js">window.onmouseup = function() {
- alert("こんばんは!");
-};
-</pre>
-<pre class="brush:html">&lt;!DOCTYPE html&gt;
-&lt;html lang="ja"&gt;
-&lt;head&gt;
-&lt;meta charset="UTF-8" /&gt;
-&lt;title&gt;onmouseup のテスト&lt;/title&gt;
-
-&lt;script&gt;
-window.onmouseup = mouseup;
-
-function mouseup() {
- alert("mouseup イベントを検出!");
-}
-&lt;/script&gt;
-
-&lt;/head&gt;
-&lt;body&gt;
-&lt;p&gt;ページ上をマウスのボタンでクリックし、数秒押し続け、ボタンを放します。
-マウスのボタンを放すことで、 mouseup イベントが発生します。&lt;/p&gt;
-&lt;/body&gt;
-&lt;/html&gt;
-</pre>
-<h2 id="Notes" name="Notes">注記</h2>
-<p><code>mouseup</code> イベントは、ドキュメント内のどこででも、ユーザがマウスの左ボタンを放すことによって発生します。</p>
-<h2 id="Specification" name="Specification">仕様</h2>
-<p>標準仕様書には含まれていません。</p>