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

Unified Diff: LayoutTests/http/tests/websocket/invalid-encode-length.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
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);

Powered by Google App Engine
This is Rietveld 408576698