diff --git a/specs/paymentrequest.html b/specs/paymentrequest.html index 10a8cccf..fa7f3924 100644 --- a/specs/paymentrequest.html +++ b/specs/paymentrequest.html @@ -767,19 +767,51 @@
interface ShippingAddress {
- /* [...] fields TBC */
+ readonly attribute DOMString regionCode;
+ readonly attribute sequence addressLine;
+ readonly attribute DOMString administrativeArea;
+ readonly attribute DOMString locality;
+ readonly attribute DOMString dependentLocality;
+ readonly attribute DOMString postalCode;
+ readonly attribute DOMString sortingCode;
+ readonly attribute DOMString languageCode;
+ readonly attribute DOMString organization;
+ readonly attribute DOMString recipient;
};
+ regionCodeaddressLineadministrativeArealocalitydependentLocalitypostalCodesortingCodelanguageCodeorganizationrecipient
If the requestShipping flag was set to true in the PaymentOptions
passed to the PaymentRequest constructor, then the user agent will populate the
shippingAddress field of the PaymentRequest object with
the user's selected shipping address.
ShippingAddress interface are
- yet to be defined.
-