Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE: s/paymentRequestID/paymentRequestId (closes #414) #419

Merged
merged 1 commit into from
Feb 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ <h2>
Promise&lt;void&gt; abort();
Promise&lt;boolean&gt; canMakePayment();

readonly attribute DOMString? paymentRequestID;
readonly attribute DOMString? paymentRequestId;
readonly attribute PaymentAddress? shippingAddress;
readonly attribute DOMString? shippingOption;
readonly attribute PaymentShippingType? shippingType;
Expand Down Expand Up @@ -347,8 +347,8 @@ <h2>
The <a>PaymentRequest</a> constructor MUST act as follows:
</p>
<ol data-link-for="PaymentDetails">
<li>If a <code>paymentRequestID</code> was not provided during
construction, generate a <code>paymentRequestID</code>.
<li>If a <code>paymentRequestId</code> was not provided during
construction, generate a <code>paymentRequestId</code>.
</li>
<li>If the <a>current settings object</a>'s <a data-cite=
"!html5#responsible-document">responsible document</a> is not
Expand Down Expand Up @@ -1577,7 +1577,7 @@ <h2>
interface PaymentResponse {
serializer = { attribute };

readonly attribute DOMString paymentRequestID;
readonly attribute DOMString paymentRequestId;
readonly attribute DOMString methodName;
readonly attribute object details;
readonly attribute PaymentAddress? shippingAddress;
Expand All @@ -1604,10 +1604,10 @@ <h2>
values</a> as per [[!WEBIDL-2]].
</dd>
<dt>
<dfn>paymentRequestID</dfn>
<dfn>paymentRequestId</dfn>
</dt>
<dd>
The same <a>paymentRequestID</a> present in the original
The same <a>paymentRequestId</a> present in the original
<a>PaymentRequest</a>.
</dd>
<dt>
Expand Down