https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9c9417e5255836be1d428e82b48b92070258efd8 authored by Tsuyoshi Horo on 02 April 2018, 03:41:31 UTC
Set SkipServiceWorker flag for synchronous loads from the main thread.
Tip revision: 9c9417e
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