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

Unified Diff: LayoutTests/http/tests/websocket/long-invalid-header.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/long-invalid-header.html
diff --git a/LayoutTests/http/tests/websocket/long-invalid-header.html b/LayoutTests/http/tests/websocket/long-invalid-header.html
index 344dc93ce476a3a57a22c4cc2d2015813d4446c0..c946d290d1d9f12ed401f8b6a1d91e7eccbaee94 100644
--- a/LayoutTests/http/tests/websocket/long-invalid-header.html
+++ b/LayoutTests/http/tests/websocket/long-invalid-header.html
@@ -24,6 +24,10 @@ ws.onclose = function () {
debug("WebSocket is closed");
finish();
};
+ws.onerror = function(errorEvent)
+{
+ testPassed("onerror() was called");
+};
var timeoutID = setTimeout("finish()", 2000);
</script>

Powered by Google App Engine
This is Rietveld 408576698