https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2ecb5abe933bc46e324ea1a1f8528a844b99e762 authored by kaixinjxq on 14 March 2018, 02:09:20 UTC
Add sensor tests that throw NotSupportedError when set an unsupported option
Tip revision: 2ecb5ab
web-share.idl
// 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