servo/tests/wpt/web-platform-tests/sms/sms_receiver.idl

24 lines
425 B
Text

[SecureContext]
interface mixin NavigatorSMS {
readonly attribute SMSReceiver sms;
};
Navigator includes NavigatorSMS;
[
SecureContext,
Exposed=(Window,DedicatedWorker)]
interface SMS {
readonly attribute DOMString content;
};
dictionary SMSReceiverOptions {
unsigned long timeout;
};
[
SecureContext,
Exposed=Window
] interface SMSReceiver {
Promise<SMS> receive(optional SMSReceiverOptions options);
};