| 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)');
|
|
|
|
|