| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>Service Worker: WebSocket handshake channel is not intercepted</title> | 2 <title>Service Worker: WebSocket handshake channel is not intercepted</title> |
| 3 <script src="/resources/testharness.js"></script> | 3 <script src="/resources/testharness.js"></script> |
| 4 <script src="/resources/testharnessreport.js"></script> | 4 <script src="/resources/testharnessreport.js"></script> |
| 5 <script src="resources/get-host-info.sub.js"></script> | 5 <script src="/common/get-host-info.sub.js"></script> |
| 6 <script src="resources/test-helpers.sub.js?pipe=sub"></script> | 6 <script src="resources/test-helpers.sub.js?pipe=sub"></script> |
| 7 <script> | 7 <script> |
| 8 | 8 |
| 9 async_test(function(t) { | 9 async_test(function(t) { |
| 10 var path = new URL(".", window.location).pathname | 10 var path = new URL(".", window.location).pathname |
| 11 var url = 'resources/websocket.js'; | 11 var url = 'resources/websocket.js'; |
| 12 var scope = 'resources/blank.html?websocket'; | 12 var scope = 'resources/blank.html?websocket'; |
| 13 var host_info = get_host_info(); | 13 var host_info = get_host_info(); |
| 14 var frameURL = host_info['HTTPS_ORIGIN'] + path + scope; | 14 var frameURL = host_info['HTTPS_ORIGIN'] + path + scope; |
| 15 var frame; | 15 var frame; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 37 frame.contentWindow.navigator.serviceWorker.controller.postMessage({
port: channel.port2}, [channel.port2]); | 37 frame.contentWindow.navigator.serviceWorker.controller.postMessage({
port: channel.port2}, [channel.port2]); |
| 38 }); | 38 }); |
| 39 }) | 39 }) |
| 40 .then(function() { | 40 .then(function() { |
| 41 frame.remove(); | 41 frame.remove(); |
| 42 return service_worker_unregister_and_done(t, scope); | 42 return service_worker_unregister_and_done(t, scope); |
| 43 }) | 43 }) |
| 44 .catch(unreached_rejection(t)); | 44 .catch(unreached_rejection(t)); |
| 45 }, 'Verify WebSocket handshake channel does not get intercepted'); | 45 }, 'Verify WebSocket handshake channel does not get intercepted'); |
| 46 </script> | 46 </script> |
| OLD | NEW |