Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use new mixin IDL syntax #119

Merged
merged 1 commit into from
May 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions index.src.html
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,8 @@ <h1>Credential Management Level 1</h1>
mechanism in the [=credential chooser=] by providing a friendly name and icon:

<pre class="idl">
[NoInterfaceObject, SecureContext]
interface CredentialUserData {
[SecureContext]
interface mixin CredentialUserData {
readonly attribute USVString name;
readonly attribute USVString iconURL;
};
Expand Down Expand Up @@ -1116,7 +1116,7 @@ <h4 id="algorithm-prevent-silent-access" algorithm>Prevent Silent Access</h4>
interface PasswordCredential : Credential {
readonly attribute USVString password;
};
PasswordCredential implements CredentialUserData;
PasswordCredential includes CredentialUserData;

partial dictionary CredentialRequestOptions {
boolean password = false;
Expand Down Expand Up @@ -1444,7 +1444,7 @@ <h4 algorithm id="passwordcredential-matching">
readonly attribute USVString provider;
readonly attribute DOMString? protocol;
};
FederatedCredential implements CredentialUserData;
FederatedCredential includes CredentialUserData;

dictionary FederatedCredentialRequestOptions {
sequence&lt;USVString&gt; providers;
Expand Down