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

Side by Side Diff: LayoutTests/http/tests/inspector/websocket/websocket-frame.html

Issue 130863002: [WebSocket] Merge duplicated HTTP headers for devtools (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed a platform dependent test Created 6 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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../inspector-test.js"></script> 3 <script src="../inspector-test.js"></script>
4 <script src="/js-test-resources/js-test.js"></script> 4 <script src="/js-test-resources/js-test.js"></script>
5 <script> 5 <script>
6 var ws; 6 var ws;
7 function sendMessages() { 7 function sendMessages() {
8 ws = new WebSocket("ws://localhost:8880/echo"); 8 ws = new WebSocket("ws://localhost:8880/echo");
9 ws.onopen = function() 9 ws.onopen = function()
10 { 10 {
(...skipping 19 matching lines...) Expand all
30 } 30 }
31 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.Eve ntTypes.RequestUpdated, onRequest); 31 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.Eve ntTypes.RequestUpdated, onRequest);
32 InspectorTest.evaluateInPage("sendMessages()"); 32 InspectorTest.evaluateInPage("sendMessages()");
33 } 33 }
34 </script> 34 </script>
35 </head> 35 </head>
36 <body onload="runTest()"> 36 <body onload="runTest()">
37 <p>Tests that WebSocketFrames are being sent and recieved by Web Inspector.</p> 37 <p>Tests that WebSocketFrames are being sent and recieved by Web Inspector.</p>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698