https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e46883f182c0764e1fa40084363d11ef2024c47b authored by Robert Ma on 05 April 2018, 18:09:27 UTC
Bind StashServer to server_host instead of browser_host
Tip revision: e46883f
web-share.idl
// GENERATED CONTENT - DO NOT EDIT
// Content of this file was automatically extracted from the Web Share API spec.
// See https://wicg.github.io/web-share/

partial interface Navigator {
  [SecureContext] Promise<void> share(optional ShareData data);
};

dictionary ShareData {
  USVString title;
  USVString text;
  USVString url;
};
back to top