| OLD | NEW |
| 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 |
| 22 - counted_connection.html : A page that creates a WebSocket connection | 27 - counted_connection.html : A page that creates a WebSocket connection |
| 23 to count-connection_wsh. | 28 to count-connection_wsh. |
| 24 This file does NOT close the established connection. | 29 This file does NOT close the established connection. |
| 25 Used by SendCloseFrameWhenTabIsClosed. | 30 Used by SendCloseFrameWhenTabIsClosed. |
| 26 | 31 |
| 27 - count_connection.html : A page that creates a WebSocket connection | 32 - count_connection.html : A page that creates a WebSocket connection |
| 28 to count-connection_wsh and checks the number of open and closed | 33 to count-connection_wsh and checks the number of open and closed |
| 29 websocket connections to the handler. | 34 websocket connections to the handler. |
| 30 Used by SendCloseFrameWhenTabIsClosed. | 35 Used by SendCloseFrameWhenTabIsClosed. |
| 31 | 36 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 55 WebSocketBrowserTest.SecureWebSocketSplitRecords. | 60 WebSocketBrowserTest.SecureWebSocketSplitRecords. |
| 56 | 61 |
| 57 - count-connection_wsh.py : counts the number of open and closed websocket | 62 - count-connection_wsh.py : counts the number of open and closed websocket |
| 58 connections to this handler. | 63 connections to this handler. |
| 59 It sends the numbers after each connection establishment. | 64 It sends the numbers after each connection establishment. |
| 60 Used by SendCloseFrameWhenTabIsClosed. | 65 Used by SendCloseFrameWhenTabIsClosed. |
| 61 | 66 |
| 62 - protocol-test_wsh.py : A WebSocket URL handler for testing outgoing opening | 67 - protocol-test_wsh.py : A WebSocket URL handler for testing outgoing opening |
| 63 handshake protocol. | 68 handshake protocol. |
| 64 Used by kinds of PPAPI tests for WebSocket. | 69 Used by kinds of PPAPI tests for WebSocket. |
| OLD | NEW |