| Index: third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html b/third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html
|
| index 095712b4a2c06feacd2e80ac653bb706782ca9c9..1a6d5a36f1cf8188ca1f9de0062ae82d53f02698 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html
|
| @@ -1,17 +1,12 @@
|
| <!DOCTYPE html>
|
| <script src="/js-test-resources/js-test.js"></script>
|
| <script src="resources/get-request-header.js"></script>
|
| +<script src="resources/cookie-test-util.js"></script>
|
| <script>
|
| description('Test receiving cookies in a WebSocket handshake which were set by another WebSocket handshake.');
|
|
|
| window.jsTestIsAsync = true;
|
|
|
| -// Normalize a cookie string
|
| -function normalizeCookie(cookie) {
|
| - // Split the cookie string, sort it and then put it back together.
|
| - return cookie.split('; ').sort().join('; ');
|
| -}
|
| -
|
| var cookie;
|
| var URL_SET_COOKIE = 'ws://127.0.0.1:8880/set-cookie';
|
| var ws_set_cookie = new WebSocket(URL_SET_COOKIE);
|
|
|