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

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

Issue 388493002: Revert 282307 "Map WebSocket URL schemes to HTTP URL schemes for..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
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, 10 - split_packet_check.html : A page for testing split packet handling. Here,
11 packets mean TCP segments for WebSocket, or SSL records for secure 11 packets mean TCP segments for WebSocket, or SSL records for secure
12 WebSocket. This page changes the title to "PASS" to notify 12 WebSocket. This page changes the title to "PASS" to notify
13 content::TitleWatcher. 13 content::TitleWatcher.
14 Used by WebSocketBrowserTest.WebSocketSplitSegments and 14 Used by WebSocketBrowserTest.WebSocketSplitSegments and
15 WebSocketBrowserTest.SecureWebSocketSplitRecords. 15 WebSocketBrowserTest.SecureWebSocketSplitRecords.
16 16
17 - websocket_shared_worker.html : A page provides simple WebSocket test in 17 - websocket_shared_worker.html : A page provides simple WebSocket test in
18 shared worker. This page changes page title to "PASS" to notify 18 shared worker. This page changes page title to "PASS" to notify
19 content::TitleWatcher. 19 content::TitleWatcher.
20 Used by WorkerTest.WebSocketSharedWorker. 20 Used by WorkerTest.WebSocketSharedWorker.
21 21
22 - connect_to.html : A page which makes a connection to the WebSocket server
23 specified in the "url" parameter,
24 eg. connect_to.html?url=ws://localhost/echo Sets the title to "PASS" if
25 connection succeeds and "FAIL" otherwise.
26
27 - websocket_worker_simple.js : A JavaScript runs on Workers created from the 22 - websocket_worker_simple.js : A JavaScript runs on Workers created from the
28 websocket_shared_worker.html. 23 websocket_shared_worker.html.
29 Used by WorkerTest.WebSocketSharedWorker. 24 Used by WorkerTest.WebSocketSharedWorker.
30 25
31 - echo-with-no-extension_wsh.py : A WebSocket URL handler for echo testing. 26 - echo-with-no-extension_wsh.py : A WebSocket URL handler for echo testing.
32 This handler disables all WebSocket extension so that we can perform 27 This handler disables all WebSocket extension so that we can perform
33 frame data dependent tests. 28 frame data dependent tests.
34 Used by kinds of PPAPI tests for WebSocket, ExtensionApiTest.WebSocket, 29 Used by kinds of PPAPI tests for WebSocket, ExtensionApiTest.WebSocket,
35 and WorkerTest.WebSocketSharedWorker. 30 and WorkerTest.WebSocketSharedWorker.
36 31
37 - close_wsh.py : A WebSocket URL handler for testing outgoing close code and 32 - close_wsh.py : A WebSocket URL handler for testing outgoing close code and
38 reason. 33 reason.
39 Used by kinds of PPAPI tests for WebSocket. 34 Used by kinds of PPAPI tests for WebSocket.
40 35
41 - close-code-and-reason_wsh.py : A WebSocket URL handler for testing server 36 - close-code-and-reason_wsh.py : A WebSocket URL handler for testing server
42 initiated closing handshake. A client can ask server to close the 37 initiated closing handshake. A client can ask server to close the
43 connection with arbitrary code and reason. 38 connection with arbitrary code and reason.
44 Used by kinds of PPAPI tests for WebSocket. 39 Used by kinds of PPAPI tests for WebSocket.
45 40
46 - close-with-split-packet_wsh.py : A WebSocket URL handler for testing split 41 - close-with-split-packet_wsh.py : A WebSocket URL handler for testing split
47 packet handling. Here, packets mean TCP segments for WebSocket, or SSL 42 packet handling. Here, packets mean TCP segments for WebSocket, or SSL
48 records for secure WebSocket. 43 records for secure WebSocket.
49 Used by WebSocketBrowserTest.WebSocketSplitSegments and 44 Used by WebSocketBrowserTest.WebSocketSplitSegments and
50 WebSocketBrowserTest.SecureWebSocketSplitRecords. 45 WebSocketBrowserTest.SecureWebSocketSplitRecords.
51 46
52 - protocol-test_wsh.py : A WebSocket URL handler for testing outgoing opening 47 - protocol-test_wsh.py : A WebSocket URL handler for testing outgoing opening
53 handshake protocol. 48 handshake protocol.
54 Used by kinds of PPAPI tests for WebSocket. 49 Used by kinds of PPAPI tests for WebSocket.
OLDNEW
« no previous file with comments | « trunk/src/chrome/browser/net/websocket_browsertest.cc ('k') | trunk/src/net/data/websocket/connect_to.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698