Skip to content

Commit

Permalink
Remove AddressInit
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres committed Jul 2, 2024
1 parent 21a727b commit d18ce5a
Showing 1 changed file with 0 additions and 89 deletions.
89 changes: 0 additions & 89 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3004,95 +3004,6 @@ <h2>
shipping and/or billing. A <dfn>shipping address</dfn> and <dfn>billing
address</dfn> are [=physical address|physical addresses=].
</p>
<section data-dfn-for="AddressInit">
<h2>
<dfn>AddressInit</dfn> dictionary
</h2>
<pre class="idl">
dictionary AddressInit {
DOMString country = "";
sequence&lt;DOMString&gt; addressLine = [];
DOMString region = "";
DOMString city = "";
DOMString dependentLocality = "";
DOMString postalCode = "";
DOMString sortingCode = "";
DOMString organization = "";
DOMString recipient = "";
DOMString phone = "";
};
</pre>
<p>
An {{AddressInit}} is passed when constructing a {{ContactAddress}}.
Its members are as follows.
</p>
<dl data-dfn-for="AddressInit" data-sort="ascending">
<dt>
<dfn>country</dfn> member
</dt>
<dd>
An [=physical address/country=], represented as a [[ISO3166-1]]
country code.
</dd>
<dt>
<dfn>addressLine</dfn> member
</dt>
<dd>
An [=physical address/address line=], represented as a sequence.
</dd>
<dt>
<dfn>region</dfn> member
</dt>
<dd>
A [=physical address/region=].
</dd>
<dt>
<dfn>city</dfn> member
</dt>
<dd>
A [=physical address/city=].
</dd>
<dt>
<dfn>dependentLocality</dfn> member
</dt>
<dd>
A [=physical address/dependent locality=].
</dd>
<dt>
<dfn>postalCode</dfn> member
</dt>
<dd>
A [=physical address/postal code=].
</dd>
<dt>
<dfn>sortingCode</dfn> member
</dt>
<dd>
A [=physical address/sorting code=].
</dd>
<dt>
<dfn>organization</dfn> member
</dt>
<dd>
An [=physical address/organization=].
</dd>
<dt>
<dfn>recipient</dfn> member
</dt>
<dd>
A [=physical address/recipient=]. Under certain circumstances, this
member may contain multiline information. For example, it might
contain "care of" information.
</dd>
<dt>
<dfn>phone</dfn> member
</dt>
<dd>
A [=physical address/phone number=], optionally structured to
adhere to [[E.164]].
</dd>
</dl>
</section>
<section data-dfn-for="AddressErrors">
<h2>
<dfn>AddressErrors</dfn> dictionary
Expand Down

0 comments on commit d18ce5a

Please sign in to comment.