Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: net/data/websocket/README

Issue 11366155: SSLClientSocket::IsConnected should care for internal buffers (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: remove comments Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 This directory contains resources used by WebSocket server for testing. 1 This directory contains resources used by WebSocket server for testing.
2 Multiple tests may share one resource, or URI handler. 2 Multiple tests may share one resource, or URI handler.
3 3
4 - connect_check.html : A page provides simple WebSocket connectivity check. 4 - connect_check.html : A page provides simple WebSocket connectivity check.
5 This page changes page title to "PASS" to notify content::TitleWatcher. 5 This page changes page title to "PASS" to notify content::TitleWatcher.
6 Used by ProxyBrowserTest.BasicAuthWSConnect, 6 Used by ProxyBrowserTest.BasicAuthWSConnect,
7 SSLUITest.TestWSSInvalidCertAndGoForward, SSLUITest.TestWSSClientCert, 7 SSLUITest.TestWSSInvalidCertAndGoForward, SSLUITest.TestWSSClientCert,
8 and SSLUITestIgnoreCertErrors.TestWSS. 8 and SSLUITestIgnoreCertErrors.TestWSS.
9 9
10 - split_packet_check.html : A page for testing split packet handling. Here,
11 packets mean segments for WebSocket, or records for secure WebSocket.
wtc 2013/01/16 00:34:16 segments => TCP segments records => SSL records M
Takashi Toyoshima 2013/01/16 07:16:03 Done.
12 This page changes the title to "PASS" to notify content::TitleWatcher.
13 Used by WebSocketBrowserTest.WebSocketSplitSegments and
14 WebSocketBrowserTest.SecureWebSocketSplitRecords.
15
10 - websocket_shared_worker.html : A page provides simple WebSocket test in 16 - websocket_shared_worker.html : A page provides simple WebSocket test in
11 shared worker. This page changes page title to "PASS" to notify 17 shared worker. This page changes page title to "PASS" to notify
12 content::TitleWatcher. 18 content::TitleWatcher.
13 Used by WorkerTest.WebSocketSharedWorker. 19 Used by WorkerTest.WebSocketSharedWorker.
14 20
15 - websocket_worker_simple.js : A JavaScript runs on Workers created from the 21 - websocket_worker_simple.js : A JavaScript runs on Workers created from the
16 websocket_shared_worker.html. 22 websocket_shared_worker.html.
17 Used by WorkerTest.WebSocketSharedWorker. 23 Used by WorkerTest.WebSocketSharedWorker.
18 24
19 - echo-with-no-extension_wsh.py : A WebSocket URL handler for echo testing. 25 - echo-with-no-extension_wsh.py : A WebSocket URL handler for echo testing.
20 This handler disables all WebSocket extension so that we can perform 26 This handler disables all WebSocket extension so that we can perform
21 frame data dependent tests. 27 frame data dependent tests.
22 Used by kinds of PPAPI tests for WebSocket, ExtensionApiTest.WebSocket, 28 Used by kinds of PPAPI tests for WebSocket, ExtensionApiTest.WebSocket,
23 and WorkerTest.WebSocketSharedWorker. 29 and WorkerTest.WebSocketSharedWorker.
24 30
25 - close_wsh.py : A WebSocket URL handler for testing outgoing close code and 31 - close_wsh.py : A WebSocket URL handler for testing outgoing close code and
26 reason. 32 reason.
27 Used by kinds of PPAPI tests for WebSocket. 33 Used by kinds of PPAPI tests for WebSocket.
28 34
29 - close-code-and-reason_wsh.py : A WebSocket URL handler for testing server 35 - close-code-and-reason_wsh.py : A WebSocket URL handler for testing server
30 initiated closing handshake. A client can ask server to close the 36 initiated closing handshake. A client can ask server to close the
31 connection with arbitrary code and reason. 37 connection with arbitrary code and reason.
32 Used by kinds of PPAPI tests for WebSocket. 38 Used by kinds of PPAPI tests for WebSocket.
33 39
40 - close-with-split-packet_wsh.py : A WebSocket URL handler for testing split
41 packet handling. Here, packets mean segments for WebSocket, or records
42 for secure WebSocket.
43 Used by WebSocketBrowserTest.WebSocketSplitSegments and
44 WebSocketBrowserTest.SecureWebSocketSplitRecords.
45
34 - protocol-test_wsh.py : A WebSocket URL handler for testing outgoing opening 46 - protocol-test_wsh.py : A WebSocket URL handler for testing outgoing opening
35 handshake protocol. 47 handshake protocol.
36 Used by kinds of PPAPI tests for WebSocket. 48 Used by kinds of PPAPI tests for WebSocket.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698