diff --git a/specs/paymentrequest.html b/specs/paymentrequest.html index 93b44e3a..38dffe00 100644 --- a/specs/paymentrequest.html +++ b/specs/paymentrequest.html @@ -234,7 +234,7 @@

PaymentRequest interface

Promise<PaymentResponse> show(); void abort(); - readonly attribute ShippingAddress? shippingAddress; + readonly attribute PaymentAddress? shippingAddress; readonly attribute DOMString? shippingOption; /* Supports "shippingaddresschange" event */ @@ -766,9 +766,9 @@

PaymentItem dictionary

-

ShippingAddress interface

+

PaymentAddress interface

-        interface ShippingAddress {
+        interface PaymentAddress {
           readonly attribute DOMString regionCode;
           readonly attribute FrozenArray<DOMString> addressLine;
           readonly attribute DOMString administrativeArea;
@@ -863,7 +863,7 @@ 

PaymentResponse interface

interface PaymentResponse { readonly attribute DOMString methodName; readonly attribute object details; - readonly attribute ShippingAddress? shippingAddress; + readonly attribute PaymentAddress? shippingAddress; readonly attribute DOMString? payerEmail; readonly attribute DOMString? payerPhone;