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

Make remaining USVStrings DOMStrings #2217

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
11 changes: 5 additions & 6 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,6 @@ spec:url; type:dfn; text:domain
spec:url; type:dfn; for:url; text:host
spec:url; type:dfn; text:valid domain;
spec:webidl; type:dfn; text:DOMString
spec:webidl; type:dfn; text:USVString
spec:webidl; type:interface; text:Promise
</pre>

Expand Down Expand Up @@ -7216,10 +7215,10 @@ but the currently used [=RP ID=] might be "example.com".
:: [=authentication extension|Authentication=]

: Client extension input
:: A single USVString specifying a FIDO |AppID|.
:: A single DOMString specifying a FIDO |AppID|.
<xmp class="idl">
partial dictionary AuthenticationExtensionsClientInputs {
USVString appid;
DOMString appid;
};
</xmp>

Expand Down Expand Up @@ -7279,10 +7278,10 @@ During a transition from the FIDO U2F JavaScript API, a [=[RP]=] may have a popu
:: [=registration extension|Registration=]

: Client extension input
:: A single USVString specifying a FIDO |AppID|.
:: A single DOMString specifying a FIDO |AppID|.
<xmp class="idl">
partial dictionary AuthenticationExtensionsClientInputs {
USVString appidExclude;
DOMString appidExclude;
};
</xmp>

Expand Down Expand Up @@ -7441,7 +7440,7 @@ Note: this extension may be implemented for [=authenticators=] that do not use [

dictionary AuthenticationExtensionsPRFInputs {
AuthenticationExtensionsPRFValues eval;
record<USVString, AuthenticationExtensionsPRFValues> evalByCredential;
record<DOMString, AuthenticationExtensionsPRFValues> evalByCredential;
};

partial dictionary AuthenticationExtensionsClientInputs {
Expand Down