gecko-dev/testing/web-platform/tests/interfaces/web-share.idl
autofoolip 6b59c4531f Bug 1498301 [wpt PR 13463] - Update interfaces/web-share.idl, a=testonly
Automatic update from web-platform-testsUpdate interfaces/web-share.idl (#13463)

Source: https://github.com/tidoust/reffy-reports/blob/a6b988f/whatwg/idl/web-share.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/439990031
--

wpt-commits: 3bf07bd4b779bdef5ae635384b5b0977cacc506e
wpt-pr: 13463
2018-10-14 00:59:50 +00:00

14 lines
398 B
Text

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// Source: Web Share API - Level 1 (https://wicg.github.io/web-share/)
partial interface Navigator {
[SecureContext] Promise<void> share(optional ShareData data);
};
dictionary ShareData {
USVString title;
USVString text;
USVString url;
};