Chromium Code Reviews| Index: LayoutTests/http/tests/websocket/invalid-encode-length.html |
| diff --git a/LayoutTests/http/tests/websocket/invalid-encode-length.html b/LayoutTests/http/tests/websocket/invalid-encode-length.html |
| index cf0653c88daf2066a1bc04996723dacd695858fa..0e64382b35d3f3b762e59b99cf65cc5d50260042 100644 |
| --- a/LayoutTests/http/tests/websocket/invalid-encode-length.html |
| +++ b/LayoutTests/http/tests/websocket/invalid-encode-length.html |
| @@ -43,6 +43,11 @@ function doTest(curTest) |
| else |
| doTest(curTest + 1); |
| }; |
| + |
| + ws.onerror = function(errorEvent) |
| + { |
| + debug("onerror() was called."); |
|
tyoshino (SeeGerritForStatus)
2015/01/13 05:31:52
Let's use testPassed, and remove ".".
Paritosh Kumar
2015/01/13 10:20:29
Done.
|
| + }; |
| } |
| doTest(0); |