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

Unified Diff: third_party/WebKit/LayoutTests/webshare/resources/mock-share-service.js

Issue 2219383002: Require a user gesture to use navigator.share. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webshare-dictionary
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webshare/share-arity.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/webshare/resources/mock-share-service.js
diff --git a/third_party/WebKit/LayoutTests/webshare/resources/mock-share-service.js b/third_party/WebKit/LayoutTests/webshare/resources/mock-share-service.js
index 2ce703f3daa2dcabd0fd57754069efe39d1ca2f0..642561c7ab9c5a947e17a1d201161dbb2ebc5fa1 100644
--- a/third_party/WebKit/LayoutTests/webshare/resources/mock-share-service.js
+++ b/third_party/WebKit/LayoutTests/webshare/resources/mock-share-service.js
@@ -64,3 +64,16 @@ function share_test(func, name, properties) {
return Promise.race([func(t, mock), mockPromise]);
}), name, properties);
}
+
+// Copied from resources/bluetooth/bluetooth-helpers.js.
+function callWithKeyDown(functionCalledOnKeyPress) {
+ return new Promise(resolve => {
+ function onKeyPress() {
+ document.removeEventListener('keypress', onKeyPress, false);
+ resolve(functionCalledOnKeyPress());
+ }
+ document.addEventListener('keypress', onKeyPress, false);
+
+ eventSender.keyDown(' ', []);
+ });
+}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webshare/share-arity.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698