Files
tubestation/testing/web-platform/tests/interfaces/web-share.idl
Luke Bjerring 2a246e0098 Bug 1452643 [wpt PR 9843] - Update the web-share IDL file, a=testonly
Automatic update from web-platform-testsUpdate the web-share IDL file (#9843)

wpt-commits: 31c11a7a91486a50fceaa68f3773a5b915e8824d
wpt-pr: 9843
wpt-commits: 31c11a7a91486a50fceaa68f3773a5b915e8824d
wpt-pr: 9843
2018-04-15 08:34:04 +01:00

14 lines
336 B
Plaintext

// 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;
};