diff --git a/index.html b/index.html index 019cc628..4e095557 100644 --- a/index.html +++ b/index.html @@ -2602,16 +2602,16 @@

           dictionary AddressInit {
-            DOMString country;
-            sequence<DOMString> addressLine;
-            DOMString region;
-            DOMString city;
-            DOMString dependentLocality;
-            DOMString postalCode;
-            DOMString sortingCode;
-            DOMString organization;
-            DOMString recipient;
-            DOMString phone;
+            DOMString country = "";
+            sequence<DOMString> addressLine = [];
+            DOMString region = "";
+            DOMString city = "";
+            DOMString dependentLocality = "";
+            DOMString postalCode = "";
+            DOMString sortingCode = "";
+            DOMString organization = "";
+            DOMString recipient = "";
+            DOMString phone = "";
           };
         

@@ -2839,13 +2839,11 @@

    -
  1. Let |details:AddressInit| be an AddressInit dictionary - with no members present. +
  2. Let |details| be a newly created AddressInit dictionary.
  3. If "addressLine" is not in |redactList|, set |details|["addressLine"] to the result of splitting the - user-provided address line into a list. If none was provided, - set it to the empty list. + user-provided address line into a list.
  4. If "country" is not in |redactList|, set |details|["country"] to the user-provided country as an upper - case [[ISO3166-1]] alpha-2 code, or to the empty string if none was - provided. + case [[ISO3166-1]] alpha-2 code.
  5. If "phone" is not in |redactList|, set |details|["phone"] - to the user-provided phone number, or to the empty string if none was - provided. + to the user-provided phone number.