Skip to content

Commit

Permalink
Make remaining USVStrings into DOMStrings
Browse files Browse the repository at this point in the history
  • Loading branch information
zacknewman authored Nov 27, 2024
1 parent 3bba180 commit 95fb560
Showing 1 changed file with 5 additions and 6 deletions.
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

0 comments on commit 95fb560

Please sign in to comment.