Chromium Code Reviews| Index: LayoutTests/http/tests/websocket/permessage-deflate-invalid-parameter.html |
| diff --git a/LayoutTests/http/tests/websocket/permessage-deflate-invalid-parameter.html b/LayoutTests/http/tests/websocket/permessage-deflate-invalid-parameter.html |
| index 6cba4bf9c46d07eb6e4e1be73111e5dcffad8ed7..a7398f8c1c76ad2362975d96deddc864bacaf5a4 100644 |
| --- a/LayoutTests/http/tests/websocket/permessage-deflate-invalid-parameter.html |
| +++ b/LayoutTests/http/tests/websocket/permessage-deflate-invalid-parameter.html |
| @@ -45,6 +45,11 @@ function doTest(index) |
| else |
| doTest(index + 1); |
| }; |
| + |
| + ws.onerror = function(errorEvent) |
| + { |
| + testPassed("onerror() was called."); |
|
tyoshino (SeeGerritForStatus)
2015/01/13 05:31:52
Remove "." to align with shouldBeFalse()'s output
Paritosh Kumar
2015/01/13 10:20:29
Done.
|
| + }; |
| } |
| doTest(0); |