Skip to content

Commit 783df7d

Browse files
committed
define "next wallet behavior"
1 parent 6175ccf commit 783df7d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ <h3>
856856
</li>
857857
</ol>
858858
</li>
859-
<li>If the session's "next wallet behavior" is set:
859+
<li>If the session's [=next wallet behavior=] is set:
860860
</li>
861861
<ol>
862862
<li>If the mode is "respond", resolve the promise with a new `DigitalCredential` object whose `data` member is set to the stored `data`.
@@ -866,7 +866,7 @@ <h3>
866866
<li>If the mode is "decline", reject the promise with a "NotAllowedError" `DOMException`.
867867
</il>
868868
</ol>
869-
<li>Otherwise (if "next wallet behavior" is not set), proceed with the normal user-interactive flow to select and use a digital credential.
869+
<li>Otherwise (if [=next wallet behavior=] is not set), proceed with the normal user-interactive flow to select and use a digital credential.
870870
</li>
871871
<li>
872872
<aside class="issue">
@@ -929,7 +929,7 @@ <h3>
929929
</li>
930930
</ol>
931931
</li>
932-
<li>If the session's "next wallet behavior" is set:
932+
<li>If the session's [=next wallet behavior=] is set:
933933
</li>
934934
<ol>
935935
<li>If the mode is "respond", resolve the promise with a new `DigitalCredential` object whose `data` member is set to the stored `data`.
@@ -939,7 +939,7 @@ <h3>
939939
<li>If the mode is "decline", reject the promise with a "NotAllowedError" `DOMException`.
940940
</il>
941941
</ol>
942-
<li>Otherwise (if "next wallet behavior" is not set), proceed with the normal user-interactive flow to select and use a digital credential.
942+
<li>Otherwise (if [=next wallet behavior=] is not set), proceed with the normal user-interactive flow to select and use a digital credential.
943943
</li>
944944
<li>
945945
<aside class="issue">
@@ -2211,7 +2211,7 @@ <h3>Digital Credentials WebDriver Extension Capability</h3>
22112211
<section id="virtual-wallet-commands">
22122212
<h3>Virtual Wallet Commands</h3>
22132213
<p>
2214-
The following commands allow controlling the behavior of a virtual wallet for testing purposes. These commands affect the behavior of the next <code>navigator.credentials.get({digital: ...})</code> or <code>navigator.credentials.create({digital: ...})</code> call.
2214+
The following commands allow controlling the behavior of a virtual wallet for testing purposes. These commands affect the <dfn>next wallet behavior</dfn> of the next <code>navigator.credentials.get({digital: ...})</code> or <code>navigator.credentials.create({digital: ...})</code> call.
22152215
</p>
22162216
<section id="set-wallet-response">
22172217
<h4><dfn>Set Wallet Response</dfn></h4>
@@ -2252,7 +2252,7 @@ <h4><dfn>Set Wallet Response</dfn></h4>
22522252
<p>The [=remote end steps=] are:</p>
22532253
<ol class="algorithm">
22542254
<li>If <code>parameters</code> is not a JSON <a data-cite="webdriver#dfn-object">Object</a>, or if it does not contain a <code>data</code> property of type string, return a [=error|WebDriver error=] with [=error code|WebDriver error code=] [=invalid argument=].</li>
2255-
<li>Set the session's "next wallet behavior" to <code>{ "mode": "respond", "data": parameters.data }</code>.</li>
2255+
<li>Set the session's [=next wallet behavior=] to <code>{ "mode": "respond", "data": parameters.data }</code>.</li>
22562256
<li>Return [=success=].</li>
22572257
</ol>
22582258
</section>
@@ -2277,7 +2277,7 @@ <h4><dfn>Set Wallet to Wait</dfn></h4>
22772277
</table>
22782278
<p>The [=remote end steps=] are:</p>
22792279
<ol class="algorithm">
2280-
<li>Set the session's "next wallet behavior" to <code>{ "mode": "wait" }</code>.</li>
2280+
<li>Set the session's [=next wallet behavior=] to <code>{ "mode": "wait" }</code>.</li>
22812281
<li>Return [=success=].</li>
22822282
</ol>
22832283
</section>
@@ -2302,7 +2302,7 @@ <h4><dfn>Set Wallet to Decline</dfn></h4>
23022302
</table>
23032303
<p>The [=remote end steps=] are:</p>
23042304
<ol class="algorithm">
2305-
<li>Set the session's "next wallet behavior" to <code>{ "mode": "decline" }</code>.</li>
2305+
<li>Set the session's [=next wallet behavior=] to <code>{ "mode": "decline" }</code>.</li>
23062306
<li>Return [=success=].</li>
23072307
</ol>
23082308
</section>

0 commit comments

Comments
 (0)