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

Unified Diff: third_party/WebKit/LayoutTests/mojo/connection.html

Issue 2744963002: Introduce InterfaceEndpointClient(IEC), InterfaceEndpointHandle and (Closed)
Patch Set: Add binding.html layout test for connection error with reason. Reset IEC when reset() or close()… Created 3 years, 9 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: third_party/WebKit/LayoutTests/mojo/connection.html
diff --git a/third_party/WebKit/LayoutTests/mojo/connection.html b/third_party/WebKit/LayoutTests/mojo/connection.html
index bf275bd904163114ac3064738591a8192e47db03..1e41f471f2052f3a4b5b21766655a81cc9ae25c6 100644
--- a/third_party/WebKit/LayoutTests/mojo/connection.html
+++ b/third_party/WebKit/LayoutTests/mojo/connection.html
@@ -88,17 +88,6 @@ define([
var response = await provider.echoStrings("hello", "world");
assert_equals(response.a, "hello");
assert_equals(response.b, "world");
-
- try {
- core.readMessage = function() {
- return { result: core.RESULT_UNKNOWN };
- };
- await provider.echoString("goodbye");
- assert_unreachable();
- } catch (e) {
- assert_not_equals(e, null);
- }
-
}, 'request response');
done();

Powered by Google App Engine
This is Rietveld 408576698