Chromium Code Reviews| Index: LayoutTests/http/tests/websocket/reserved-opcodes.html |
| diff --git a/LayoutTests/http/tests/websocket/reserved-opcodes.html b/LayoutTests/http/tests/websocket/reserved-opcodes.html |
| index 3491f2301c88bf00ba533f7178dca4d8df58d26d..3972251f0edfdea5c8487a7f40b543a32939937d 100644 |
| --- a/LayoutTests/http/tests/websocket/reserved-opcodes.html |
| +++ b/LayoutTests/http/tests/websocket/reserved-opcodes.html |
| @@ -47,6 +47,11 @@ function doTest(opcode) |
| shouldBeFalse("closeEvent.wasClean"); |
| doTest(opcode + 1); |
| }; |
| + |
| + ws.onerror = function(errorEvent) |
| + { |
| + testPassed("onerror() was called."); |
|
tyoshino (SeeGerritForStatus)
2015/01/13 05:31:52
Remove "."
Paritosh Kumar
2015/01/13 10:20:29
Done.
|
| + }; |
| } |
| doTest(0); |