@@ -2535,14 +2535,14 @@ <h2>
2535
2535
< p >
2536
2536
The steps to < dfn > create a < code > PaymentAddress</ code > from
2537
2537
user-provided input</ dfn > are given by the following algorithm. The
2538
- algorithm takes a < a > list</ a > < var > excludeList </ var > , for which user
2538
+ algorithm takes a < a > list</ a > < var > redactList </ var > , for which user
2539
2539
input will not be gathered.
2540
2540
</ p >
2541
2541
< ol data-link-for ="AddressInit ">
2542
2542
< li > Let < var > details</ var > be an object with no members that will
2543
2543
serve as a < a > AddressInit</ a > dictionary.
2544
2544
</ li >
2545
- < li > If "addressLine" is not in < var > excludeList </ var > , set
2545
+ < li > If "addressLine" is not in < var > redactList </ var > , set
2546
2546
< var > details</ var > ["< a > addressLine</ a > "] to the result of splitting
2547
2547
the user-provided address line into a < a data-cite =
2548
2548
"!WEBIDL#dfn-frozen-array-type "> frozen array</ a > . If none was
@@ -2552,12 +2552,12 @@ <h2>
2552
2552
scope of this specification.
2553
2553
</ aside >
2554
2554
</ li >
2555
- < li > If "country" is not in < var > excludeList </ var > , set
2555
+ < li > If "country" is not in < var > redactList </ var > , set
2556
2556
< var > details</ var > ["< a > country</ a > "] to the user-provided country as
2557
2557
an upper case [[!ISO3166-1]] alpha-2 code, or to the empty string if
2558
2558
none was provided.
2559
2559
</ li >
2560
- < li > If "phone" is not in < var > excludeList </ var > , set
2560
+ < li > If "phone" is not in < var > redactList </ var > , set
2561
2561
< var > details</ var > ["< a > phone</ a > "] to the user-provided phone number,
2562
2562
or to the empty string if none was provided.
2563
2563
< aside class ="note " title ="Privacy of phone number ">
@@ -2570,25 +2570,25 @@ <h2>
2570
2570
</ p >
2571
2571
</ aside >
2572
2572
</ li >
2573
- < li > If "languageCode" is not in < var > excludeList </ var > , set
2573
+ < li > If "languageCode" is not in < var > redactList </ var > , set
2574
2574
< var > details</ var > ["< a > languageCode</ a > "] to a < a data-cite =
2575
2575
"!BCP47#section-4.5 "> canonicalized language tag</ a > , or to the empty
2576
2576
string if none was provided.
2577
2577
< div class ="issue " data-number ="608 "> </ div >
2578
2578
</ li >
2579
- < li > If "city" is not in < var > excludeList </ var > , set
2579
+ < li > If "city" is not in < var > redactList </ var > , set
2580
2580
< var > details</ var > ["< a > city</ a > "] to the user-provided city, or to
2581
2581
the empty string if none was provided.
2582
2582
</ li >
2583
- < li > If "dependentLocality" is not in < var > excludeList </ var > , set
2584
- < var > details</ var > ["< a > dependentLocality</ a > "] to the user-provided
2585
- dependent locality, or to the empty string if none was provided.
2583
+ < li > If "dependentLocality" is not in < var > redactList </ var > , set < var >
2584
+ details</ var > ["< a > dependentLocality</ a > "] to the user-provided
2585
+ dependent locality, or to the empty string if none was provided.
2586
2586
</ li >
2587
- < li > If "organization" is not in < var > excludeList </ var > , set
2587
+ < li > If "organization" is not in < var > redactList </ var > , set
2588
2588
< var > details</ var > ["< a > organization</ a > "] to the user-provided
2589
2589
recipient organization, or to the empty string if none was provided.
2590
2590
</ li >
2591
- < li > If "postalCode" is not in < var > excludeList </ var > , set
2591
+ < li > If "postalCode" is not in < var > redactList </ var > , set
2592
2592
< var > details</ var > ["< a > postalCode</ a > "] to the user-provided postal
2593
2593
code, or to the empty string if none was provided. Optionally, redact
2594
2594
part of < var > details</ var > ["< a > postalCode</ a > "].
@@ -2605,18 +2605,18 @@ <h2>
2605
2605
</ p >
2606
2606
</ div >
2607
2607
</ li >
2608
- < li > If "recipient" is not in < var > excludeList </ var > , set
2608
+ < li > If "recipient" is not in < var > redactList </ var > , set
2609
2609
< var > details</ var > ["< a > recipient</ a > "] to the user-provided recipient
2610
2610
of the transaction, or to the empty string if none was provided.
2611
2611
</ li >
2612
- < li > If "region" is not in < var > excludeList </ var > :
2612
+ < li > If "region" is not in < var > redactList </ var > :
2613
2613
< ol >
2614
2614
< li > Set < var > details</ var > ["< a > region</ a > "] to the user-provided
2615
2615
region, or to the empty string if none was provided.
2616
2616
</ li >
2617
2617
</ ol >
2618
2618
</ li >
2619
- < li > If "sortingCode" is not in < var > excludeList </ var > , set
2619
+ < li > If "sortingCode" is not in < var > redactList </ var > , set
2620
2620
< var > details</ var > ["< a > sortingCode</ a > "] to the user-provided sorting
2621
2621
code, or to the empty string if none was provided.
2622
2622
</ li >
@@ -3214,8 +3214,8 @@ <h2>
3214
3214
< a > Queue a task</ a > on the < a > user interaction task source</ a > to
3215
3215
run the following steps:
3216
3216
< ol >
3217
- < li > Let < var > excludeList </ var > be the empty list. Optionally,
3218
- append the following items to < var > excludeList </ var > : «
3217
+ < li > Let < var > redactList </ var > be the empty list. Optionally,
3218
+ append the following items to < var > redactList </ var > : «
3219
3219
"organization", "phone", "recipient", "addressLine" ».
3220
3220
</ li >
3221
3221
< li > Let < var > address</ var > be the result of running the steps to
@@ -3359,7 +3359,7 @@ <h2>
3359
3359
"PaymentOptions.requestShipping "> requestShipping</ a > value of
3360
3360
< var > request</ var > .< a > [[\options]]</ a > is true, then < a > create a
3361
3361
< code > PaymentAddress</ code > from user-provided input</ a > passing the
3362
- empty list as the < var > excludeList </ var > and set the < a data-lt =
3362
+ empty list as the < var > redactList </ var > and set the < a data-lt =
3363
3363
"PaymentResponse.shippingAddress "> shippingAddress</ a > attribute of
3364
3364
< var > response</ var > to the resulting < a > PaymentAddress</ a > .
3365
3365
Otherwise, set it to null.
0 commit comments