Bug 1526591 - Remove devtools.inspector.shapesHighlighter.enabled pref. r=rcaliman
[gecko.git] / dom / webidl / PaymentAddress.webidl
blob7b0a6c019bb74fbd3cc912831d459d1be1f0d42e
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * The origin of this WebIDL file is
7  *   https://www.w3.org/TR/payment-request/#paymentaddress-interface
8  *
9  * Copyright © 2018 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
10  * liability, trademark and document use rules apply.
11  */
13 [SecureContext,
14  Func="mozilla::dom::PaymentRequest::PrefEnabled"]
15 interface PaymentAddress {
16   [Default] object toJSON();
18   readonly attribute DOMString              country;
19   // TODO: Use FrozenArray once available. (Bug 1236777)
20   // readonly attribute FrozenArray<DOMString> addressLine;
21   [Frozen, Cached, Pure]
22   readonly attribute sequence<DOMString>    addressLine;
23   readonly attribute DOMString              region;
24   readonly attribute DOMString              regionCode;
25   readonly attribute DOMString              city;
26   readonly attribute DOMString              dependentLocality;
27   readonly attribute DOMString              postalCode;
28   readonly attribute DOMString              sortingCode;
29   readonly attribute DOMString              organization;
30   readonly attribute DOMString              recipient;
31   readonly attribute DOMString              phone;