https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ba2d3606cd94cb31f5832db1aa35714601e70db4 authored by Ian Kilpatrick on 16 March 2018, 20:51:08 UTC
[shapes] Remove shape-outside avoiding behaviour for new-FCs/replaced.
Tip revision: ba2d360
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