https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 6d11f4832a472ea783a8e584904bb36206d8bd18 authored by Luke Bjerring on 18 May 2018, 17:32:15 UTC
Rebase master + fix another camelCase
Tip revision: 6d11f48
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