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

Unified Diff: LayoutTests/http/tests/websocket/broken-utf8.html

Issue 817733004: WebSocket layout tests clean up (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/http/tests/websocket/broken-utf8-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/websocket/broken-utf8.html
diff --git a/LayoutTests/http/tests/websocket/broken-utf8.html b/LayoutTests/http/tests/websocket/broken-utf8.html
index 68e3f36549801f65de927fe11af70a8f682b5b60..9c7cc3bf2f1d99e696138646e5c30106ee1162cb 100644
--- a/LayoutTests/http/tests/websocket/broken-utf8.html
+++ b/LayoutTests/http/tests/websocket/broken-utf8.html
@@ -19,6 +19,11 @@ ws.onopen = function()
debug("onopen() was called.");
};
+ws.onerror = function(event)
+{
+ debug("onerror() was called.");
+};
+
ws.onmessage = function(event)
{
var message = event.data;
« no previous file with comments | « no previous file | LayoutTests/http/tests/websocket/broken-utf8-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698