Automatic update from web-platform-testsUpdate the web-share IDL file (#9843) wpt-commits: 31c11a7a91486a50fceaa68f3773a5b915e8824d wpt-pr: 9843 wpt-commits: 31c11a7a91486a50fceaa68f3773a5b915e8824d wpt-pr: 9843
14 lines
336 B
Plaintext
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;
|
|
};
|