aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/websocket/onopen
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-12-16 00:52:08 +0000
committerMDN <actions@users.noreply.github.com>2021-12-16 00:52:08 +0000
commit9b97f9f4a1f580cbf582fb4bebabbccaab8e5dda (patch)
tree513e8e35a07a3fd1dc45a5415425fd3780075d51 /files/ja/web/api/websocket/onopen
parent7f7c1b96a524c16de813516cc1b7ed3b773ae7ad (diff)
downloadtranslated-content-9b97f9f4a1f580cbf582fb4bebabbccaab8e5dda.tar.gz
translated-content-9b97f9f4a1f580cbf582fb4bebabbccaab8e5dda.tar.bz2
translated-content-9b97f9f4a1f580cbf582fb4bebabbccaab8e5dda.zip
[CRON] sync translated content
Diffstat (limited to 'files/ja/web/api/websocket/onopen')
-rw-r--r--files/ja/web/api/websocket/onopen/index.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/files/ja/web/api/websocket/onopen/index.html b/files/ja/web/api/websocket/onopen/index.html
deleted file mode 100644
index 79d4dcf2df..0000000000
--- a/files/ja/web/api/websocket/onopen/index.html
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: WebSocket.onopen
-slug: Web/API/WebSocket/onopen
-tags:
- - API
- - Property
- - Reference
- - Web API
- - WebSocket
- - プロパティ
-translation_of: Web/API/WebSocket/onopen
----
-<div>{{APIRef("Web Sockets API")}}</div>
-
-<p><strong><code>WebSocket.onopen</code></strong> プロパティはイベントハンドラー ({{event("Event_handlers", "event handler")}}) で、 {{domxref("WebSocket")}} のコネクションの {{domxref("WebSocket.readyState","readyState")}} が {{domxref("WebSocket.readyState","1")}} に変化したときに呼び出されます。これは、コネクションでデータを送信したり受信したりする準備ができたことを示します。これは {{domxref("Event")}} を伴って呼び出されます。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox notranslate"><em>aWebSocket</em>.onopen = function(event) {
- console.log("WebSocket is open now.");
-};</pre>
-
-<h2 id="Value" name="Value">値</h2>
-
-<p>{{domxref("EventListener")}} です。</p>
-
-<h2 id="Specifications" name="Specifications">仕様書</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('HTML WHATWG', '#handler-websocket-onopen', 'WebSocket: onopen')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("api.WebSocket.onopen")}}</p>