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

Unified Diff: third_party/WebKit/LayoutTests/webshare/share-arity.html

Issue 2703333002: Web Share: Refactor Mojo interface to now return an enum error. (Closed)
Patch Set: Fix assignment statement. #oops Created 3 years, 10 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/webshare/share-arity.html
diff --git a/third_party/WebKit/LayoutTests/webshare/share-arity.html b/third_party/WebKit/LayoutTests/webshare/share-arity.html
index b563ccb0ab19db8b2750b56e9ad6e466e012f3bf..a7fc91950d0ee981b02685d021c5a4e6ca2fd689 100644
--- a/third_party/WebKit/LayoutTests/webshare/share-arity.html
+++ b/third_party/WebKit/LayoutTests/webshare/share-arity.html
@@ -5,17 +5,17 @@
<script src="resources/mock-share-service.js"></script>
<script>
-share_test((t, mock) => {
+share_test((t, webshare, mock) => {
return callWithKeyDown(() => promise_rejects(t, new TypeError(), navigator.share()));
}, '0 arguments (promise rejection)');
-share_test((t, mock) => {
- mock.pushShareResult('the title', 'the message', 'data:the url', null);
+share_test((t, webshare, mock) => {
+ mock.pushShareResult('the title', 'the message', 'data:the url', webshare.ShareError.OK);
return callWithKeyDown(() => navigator.share({title: 'the title', text: 'the message', url: 'data:the url', unused: 'unexpected field'}));
}, 'extra ShareData field (extra field ignored)');
-share_test((t, mock) => {
- mock.pushShareResult('the title', 'the message', 'data:the url', null);
+share_test((t, webshare, mock) => {
+ mock.pushShareResult('the title', 'the message', 'data:the url', webshare.ShareError.OK);
return callWithKeyDown(() => navigator.share({title: 'the title', text: 'the message', url: 'data:the url'}, 'more than required'));
}, '2 arguments (extra argument ignored)');

Powered by Google App Engine
This is Rietveld 408576698