mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
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
14 lines
398 B
Text
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;
|
|
};
|