mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
24 lines
500 B
Plaintext
24 lines
500 B
Plaintext
[Exposed=Window, SecureContext]
|
|
interface Credential {
|
|
readonly attribute USVString id;
|
|
readonly attribute DOMString type;
|
|
static Promise<boolean> isConditionalMediationAvailable();
|
|
};
|
|
|
|
[SecureContext]
|
|
interface mixin CredentialUserData {
|
|
readonly attribute USVString name;
|
|
readonly attribute USVString iconURL;
|
|
};
|
|
|
|
dictionary CredentialData {
|
|
required USVString id;
|
|
};
|
|
|
|
enum CredentialMediationRequirement {
|
|
"silent",
|
|
"optional",
|
|
"conditional",
|
|
"required"
|
|
};
|