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

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

Issue 2309403002: Use the URL passed to navigator.share(). (Closed)
Patch Set: Created 4 years, 3 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 a99943b863812e8e23e115246040ed4d639f9c0e..b563ccb0ab19db8b2750b56e9ad6e466e012f3bf 100644
--- a/third_party/WebKit/LayoutTests/webshare/share-arity.html
+++ b/third_party/WebKit/LayoutTests/webshare/share-arity.html
@@ -10,13 +10,13 @@ share_test((t, mock) => {
}, '0 arguments (promise rejection)');
share_test((t, mock) => {
- mock.pushShareResult('the title', 'the message', null);
- return callWithKeyDown(() => navigator.share({title: 'the title', text: 'the message', unused: 'unexpected field'}));
+ mock.pushShareResult('the title', 'the message', 'data:the url', null);
+ 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', null);
- return callWithKeyDown(() => navigator.share({title: 'the title', text: 'the message'}, 'more than required'));
+ mock.pushShareResult('the title', 'the message', 'data:the url', null);
+ return callWithKeyDown(() => navigator.share({title: 'the title', text: 'the message', url: 'data:the url'}, 'more than required'));
}, '2 arguments (extra argument ignored)');
</script>

Powered by Google App Engine
This is Rietveld 408576698