From 67b85d70c473a1d763ac6691fbf24ecf62186c75 Mon Sep 17 00:00:00 2001 From: reffy-bot <> Date: Wed, 21 Aug 2024 01:48:12 +0000 Subject: [PATCH] Update of TR report from new reffy run Using reffy commit 17.2.0. --- tr/algorithms/payment-request-1.1.json | 1355 ------------- tr/algorithms/payment-request.json | 1355 +++++++++++++ ...-request-1.1.json => payment-request.json} | 622 +++--- ...-request-1.1.json => payment-request.json} | 6 +- tr/headings/eme-initdata-keyids.json | 7 - ...-request-1.1.json => payment-request.json} | 202 +- tr/idl/payment-request.idl | 2 +- tr/ids/WGSL.json | 769 ++++---- tr/ids/eme-initdata-keyids.json | 3 - tr/ids/payment-request-1.1.json | 1682 ----------------- tr/ids/payment-request.json | 1682 +++++++++++++++++ tr/index.json | 72 +- tr/links/eme-initdata-keyids.json | 5 +- ...-request-1.1.json => payment-request.json} | 2 +- tr/refs/eme-initdata-keyids.json | 9 +- ...-request-1.1.json => payment-request.json} | 2 +- 16 files changed, 3889 insertions(+), 3886 deletions(-) delete mode 100644 tr/algorithms/payment-request-1.1.json create mode 100644 tr/algorithms/payment-request.json rename tr/dfns/{payment-request-1.1.json => payment-request.json} (71%) rename tr/events/{payment-request-1.1.json => payment-request.json} (76%) rename tr/headings/{payment-request-1.1.json => payment-request.json} (61%) delete mode 100644 tr/ids/payment-request-1.1.json create mode 100644 tr/ids/payment-request.json rename tr/links/{payment-request-1.1.json => payment-request.json} (99%) rename tr/refs/{payment-request-1.1.json => payment-request.json} (97%) diff --git a/tr/algorithms/payment-request-1.1.json b/tr/algorithms/payment-request-1.1.json deleted file mode 100644 index 6f3f2f95f480..000000000000 --- a/tr/algorithms/payment-request-1.1.json +++ /dev/null @@ -1,1355 +0,0 @@ -{ - "spec": { - "title": "Payment Request API", - "url": "https://www.w3.org/TR/payment-request-1.1/" - }, - "algorithms": [ - { - "name": "PaymentRequest.PaymentRequest()", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-paymentrequest-paymentrequest", - "html": "The PaymentRequest(methodData,\n details, options) constructor MUST act as follows:", - "rationale": ".algorithm", - "steps": [ - { - "html": "If this's relevant global object's associated Document is not allowed to use the \"payment\"\n permission, then throw a \"SecurityError\"\n DOMException." - }, - { - "html": "Establish the request's id:", - "rationale": "if", - "steps": [ - { - "html": "If\n details.id is missing, add an\n id member to details and set its value\n to a UUID\n [RFC4122]." - } - ] - }, - { - "html": "Let serializedMethodData be an empty list." - }, - { - "html": "Process payment methods:", - "rationale": "if", - "steps": [ - { - "html": "If the length of the methodData sequence is zero, then\n throw a TypeError, optionally informing the\n developer that at least one payment method is required." - }, - { - "html": "Let seenPMIs be the empty set." - }, - { - "html": "For each paymentMethod of methodData:", - "rationale": "run", - "steps": [ - { - "html": "Run the\n steps to validate a payment method identifier with\n paymentMethod.supportedMethods. If it\n returns false, then throw a RangeError exception.\n Optionally, inform the developer that the payment method\n identifier is invalid." - }, - { - "html": "Let pmi be the result of parsing\n paymentMethod.supportedMethods with\n basic URL parser:", - "rationale": "if", - "steps": [ - { - "html": "If failure, set pmi to\n paymentMethod.supportedMethods." - } - ] - }, - { - "html": "If seenPMIs contains pmi throw a\n RangeError DOMException optionally informing the\n developer that this payment method identifier is a\n duplicate." - }, - { - "html": "Append pmi to seenPMIs." - }, - { - "html": "If the data member of\n paymentMethod is missing, let serializedData be null.\n Otherwise, let serializedData be the result of serialize\n paymentMethod.data into a JSON\n string. Rethrow any exceptions." - }, - { - "html": "If serializedData is not null, and if the specification\n that defines the\n paymentMethod.supportedMethods\n specifies an additional data type:", - "rationale": "let", - "steps": [ - { - "html": "Let object be the result of JSON-parsing\n serializedData." - }, - { - "html": "

\n Let idl be the result of converting object to an IDL value of the\n additional data type. Rethrow any\n exceptions.\n

" - }, - { - "html": "

\n Run the steps to validate payment method data,\n if any, from the specification that defines the\n paymentMethod.supportedMethods\n on object. Rethrow any exceptions.\n

" - } - ] - }, - { - "html": "Add the tuple\n (paymentMethod.supportedMethods,\n serializedData) to serializedMethodData." - } - ] - } - ] - }, - { - "html": "Process the total:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize total amount\n details.total.amount.\n Rethrow any exceptions." - } - ] - }, - { - "html": "If the displayItems member of details is\n present, then for each item in\n details.displayItems:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize amount\n item.amount. Rethrow any exceptions." - } - ] - }, - { - "html": "Let selectedShippingOption be null." - }, - { - "html": "If the requestShipping member of options is\n present and set to true, process shipping options:", - "rationale": "let", - "steps": [ - { - "html": "Let options be an empty\n sequence<PaymentShippingOption>." - }, - { - "html": "If the shippingOptions member of\n details is present, then:", - "rationale": "let", - "steps": [ - { - "html": "Let seenIDs be an empty set." - }, - { - "html": "For each option in\n details.shippingOptions:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize amount\n item.amount. Rethrow any exceptions." - }, - { - "html": "If seenIDs contains\n option.id, then throw a\n TypeError. Optionally, inform the developer that\n shipping option IDs must be unique." - }, - { - "html": "Otherwise, append\n option.id to seenIDs." - }, - { - "html": "If option.selected is\n true, then set selectedShippingOption to\n option.id." - } - ] - } - ] - }, - { - "html": "Set details.shippingOptions to\n options." - } - ] - }, - { - "html": "Let serializedModifierData be an empty list." - }, - { - "html": "Process payment details modifiers:", - "rationale": "let", - "steps": [ - { - "html": "Let modifiers be an empty\n sequence<PaymentDetailsModifier>." - }, - { - "html": "If the modifiers member of details\n is present, then:", - "rationale": "set", - "steps": [ - { - "html": "Set modifiers to\n details.modifiers." - }, - { - "html": "For each modifier of modifiers:", - "rationale": "if", - "steps": [ - { - "html": "If the total member of\n modifier is present, then:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize total amount\n modifier.total.amount.\n Rethrow any exceptions." - } - ] - }, - { - "html": "If the\n additionalDisplayItems member\n of modifier is present, then for each item of\n modifier.additionalDisplayItems:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize amount\n item.amount. Rethrow any\n exceptions." - } - ] - }, - { - "html": "If the data member of\n modifier is missing, let serializedData be null.\n Otherwise, let serializedData be the result of\n serialize\n modifier.data into a JSON\n string. Rethrow any exceptions." - }, - { - "html": "Add the tuple\n (modifier.supportedMethods,\n serializedData) to serializedModifierData." - }, - { - "html": "Remove the data member of\n modifier, if it is present." - } - ] - } - ] - }, - { - "html": "Set details.modifiers to\n modifiers." - } - ] - }, - { - "html": "Let request be a new PaymentRequest." - }, - { - "html": "Set request.[[handler]] to null." - }, - { - "html": "Set request.[[options]] to options." - }, - { - "html": "Set request.[[state]] to\n \"created\"." - }, - { - "html": "Set request.[[updating]] to false." - }, - { - "html": "Set request.[[details]] to details." - }, - { - "html": "Set request.[[serializedModifierData]] to\n serializedModifierData." - }, - { - "html": "Set request.[[serializedMethodData]] to\n serializedMethodData." - }, - { - "html": "Set request.[[response]] to null." - }, - { - "html": "Set the value of request's shippingOption\n attribute to selectedShippingOption." - }, - { - "html": "Set the value of the shippingAddress attribute\n on request to null." - }, - { - "html": "If options.requestShipping is set to true,\n then set the value of the shippingType attribute\n on request to options.shippingType. Otherwise,\n set it to null." - }, - { - "html": "Return request." - } - ] - }, - { - "html": "The show(optional detailsPromise) method MUST act as\n follows:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let request be this." - }, - { - "html": "If the relevant global object of request does not have\n transient activation:", - "rationale": "return", - "steps": [ - { - "html": "Return a promise rejected with with a \"SecurityError\"\n DOMException." - } - ] - }, - { - "html": "Consume user activation of the relevant global object." - }, - { - "html": "Let document be request's relevant global object's\n associated Document." - }, - { - "html": "If document is\n not fully active, then return a promise rejected\n with an \"AbortError\" DOMException." - }, - { - "html": "If document's visibility state is not \"visible\",\n then return a promise rejected with an \"AbortError\"\n DOMException." - }, - { - "html": "

\n Optionally, if the user agent wishes to disallow the call\n to show() to protect the user, then return a\n promise rejected with a \"SecurityError\" DOMException. For\n example, the user agent may limit the rate at which a page\n can call show(), as described in section\n 19. \n Privacy and Security Considerations.\n

" - }, - { - "html": "If request.[[state]] is not\n \"created\" then return a promise rejected\n with an \"InvalidStateError\" DOMException." - }, - { - "html": "If the user agent's payment request is showing\n boolean is true, then:", - "rationale": "set", - "steps": [ - { - "html": "Set request.[[state]] to\n \"closed\"." - }, - { - "html": "Return a promise rejected with an \"AbortError\"\n DOMException." - } - ] - }, - { - "html": "Set request.[[state]] to\n \"interactive\"." - }, - { - "html": "Let acceptPromise be a new promise." - }, - { - "html": "Set request.[[acceptPromise]] to\n acceptPromise." - }, - { - "html": "Optionally:", - "rationale": "reject", - "steps": [ - { - "html": "Reject acceptPromise with an \"AbortError\"\n DOMException." - }, - { - "html": "Set request.[[state]] to\n \"closed\"." - }, - { - "html": "Return acceptPromise." - } - ] - }, - { - "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to true." - }, - { - "html": "Return acceptPromise and perform the remaining steps in\n parallel." - }, - { - "html": "Let handlers be an empty list." - }, - { - "html": "For each paymentMethod tuple in\n request.[[serializedMethodData]]:", - "rationale": "let", - "steps": [ - { - "html": "Let identifier be the first element in the paymentMethod\n tuple." - }, - { - "html": "Let data be the result of JSON-parsing the second element\n in the paymentMethod tuple." - }, - { - "html": "If the specification that defines the identifier specifies\n an additional data type, then convert data to an IDL value of that type.\n Otherwise, convert data to\n object." - }, - { - "html": "If conversion results in an exception error:", - "rationale": "set", - "steps": [ - { - "html": "Set request.[[state]] to\n \"closed\"." - }, - { - "html": "Reject acceptPromise with error." - }, - { - "html": "Set request's payment-relevant browsing\n context's payment request is showing boolean to\n false." - }, - { - "html": "Terminate this algorithm." - } - ] - }, - { - "html": "Let registeredHandlers be a list of registered\n payment handlers for the payment method identifier." - }, - { - "html": "For each handler in registeredHandlers:", - "rationale": "let", - "steps": [ - { - "html": "Let canMakePayment be the result of running handler's\n steps to check if a payment can be made with data." - }, - { - "html": "If canMakePayment is true, then append handler to\n handlers." - } - ] - } - ] - }, - { - "html": "If handlers is empty, then:", - "rationale": "set", - "steps": [ - { - "html": "Set request.[[state]] to\n \"closed\"." - }, - { - "html": "Reject acceptPromise with \"NotSupportedError\"\n DOMException." - }, - { - "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." - }, - { - "html": "Terminate this algorithm." - } - ] - }, - { - "html": "

\n Present a user interface that will allow the user to interact\n with the handlers. The user agent SHOULD prioritize the user's\n preference when presenting payment methods. The user interface\n SHOULD be presented using the language and locale-based\n formatting that matches the document's document element's language, if any, or an\n appropriate fallback if that is not available.\n

" - }, - { - "html": "If\n detailsPromise was passed, then:", - "rationale": "run", - "steps": [ - { - "html": "Run the update a PaymentRequest's details\n algorithm with detailsPromise, request, and null." - }, - { - "html": "Wait for the detailsPromise to settle." - } - ] - }, - { - "html": "Set request.[[handler]] be the payment\n handler selected by the end-user." - }, - { - "html": "Let modifiers be an empty list." - }, - { - "html": "For each tuple in\n [[serializedModifierData]]:", - "rationale": "if", - "steps": [ - { - "html": "If the first element of tuple (a PMI) matches the\n payment method identifier of\n request.[[handler]], then append the second\n element of tuple (the serialized method data) to modifiers." - } - ] - }, - { - "html": "If document stops being fully active while the\n user interface is being shown, or no longer is by the time this\n step is reached, then:", - "rationale": "close", - "steps": [ - { - "html": "Close down the user interface." - }, - { - "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." - } - ] - } - ] - }, - { - "html": "The abort() method MUST act as follows:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let request be this." - }, - { - "html": "If request.[[response]] is not null, and\n request.[[response]].[[retryPromise]]\n is not null, return a promise rejected with an\n \"InvalidStateError\" DOMException." - }, - { - "html": "If the value of request.[[state]] is not\n \"interactive\" then return a promise rejected\n with an \"InvalidStateError\" DOMException." - }, - { - "html": "Let promise be a new promise." - }, - { - "html": "Return promise and perform the remaining steps in\n parallel." - }, - { - "html": "Try to abort the current user interaction with the payment\n handler and close down any remaining user interface." - }, - { - "html": "Queue a task on the user interaction task source to\n perform the following steps:", - "rationale": "if", - "steps": [ - { - "html": "If it is not possible to abort the current user interaction,\n then reject promise with \"InvalidStateError\"\n DOMException and abort these steps." - }, - { - "html": "Set request.[[state]] to\n \"closed\"." - }, - { - "html": "Reject the promise\n request.[[acceptPromise]] with an\n \"AbortError\" DOMException." - }, - { - "html": "Resolve promise with undefined." - } - ] - } - ] - }, - { - "name": "check and canonicalize amount", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-check-and-canonicalize-amount", - "html": "To check and canonicalize amount given a\n PaymentCurrencyAmount amount, run the following steps:", - "rationale": "if", - "steps": [ - { - "html": "If the result of IsWellFormedCurrencyCode(amount.currency)\n is false, then throw a RangeError exception, optionally informing\n the developer that the currency is invalid." - }, - { - "html": "If amount.value is not a valid\n decimal monetary value, throw a TypeError, optionally\n informing the developer that the currency is invalid." - }, - { - "html": "Set amount.currency to the result of\n ASCII uppercase amount.currency." - } - ] - }, - { - "name": "check and canonicalize total amount", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-check-and-canonicalize-total-amount", - "html": "To check and canonicalize total amount given a\n PaymentCurrencyAmount amount, run the\n following steps:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize amount amount. Rethrow any\n exceptions." - }, - { - "html": "If the first code point of\n amount.value is U+002D (-), then throw a\n TypeError optionally informing the developer that a total's value\n can't be a negative number." - } - ] - }, - { - "html": "The retry(errorFields) method\n MUST act as follows:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let response be this." - }, - { - "html": "Let request be\n response.[[request]]." - }, - { - "html": "Let document be request's relevant global\n object's associated Document." - }, - { - "html": "If\n document is not fully active, then return a promise\n rejected with an \"AbortError\" DOMException." - }, - { - "html": "If response.[[complete]] is true, return\n a promise rejected with an \"InvalidStateError\"\n DOMException." - }, - { - "html": "If response.[[retryPromise]] is not null,\n return a promise rejected with an \"InvalidStateError\"\n DOMException." - }, - { - "html": "Set request.[[state]] to\n \"interactive\"." - }, - { - "html": "Let retryPromise be a new promise." - }, - { - "html": "Set response.[[retryPromise]] to\n retryPromise." - }, - { - "html": "If errorFields was passed:", - "rationale": "if", - "steps": [ - { - "html": "Optionally, show a warning in the developer console if any of\n the following are true:", - "ignored": [ - "request.[[options]].requestPayerName is false, and errorFields.payer.name is present. request.[[options]].requestPayerEmail is false, and errorFields.payer.email is present. request.[[options]].requestPayerPhone is false, and errorFields.payer.phone is present. request.[[options]].requestShipping is false, and errorFields.shippingAddress is present." - ] - }, - { - "html": "If\n errorFields.paymentMethod\n member was passed, and if required by the specification that\n defines response.methodName, then\n convert errorFields's\n paymentMethod member to an IDL value\n of the type specified there. Otherwise, convert to object." - }, - { - "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." - }, - { - "html": "If conversion results in a exception error:", - "rationale": "reject", - "steps": [ - { - "html": "Reject retryPromise with error." - }, - { - "html": "Set user agent's payment request is showing\n boolean to false." - }, - { - "html": "Return." - } - ] - }, - { - "html": "By matching the members of errorFields to input fields in\n the user agent's UI, indicate to the end user that something is\n wrong with the data of the payment response. For example, a user\n agent might draw the user's attention to the erroneous\n errorFields in the browser's UI and display the value of each\n field in a manner that helps the user fix each error. Similarly,\n if the error member is passed,\n present the error in the user agent's UI. In the case where the\n value of a member is the empty string, the user agent MAY\n substitute a value with a suitable error message." - } - ] - }, - { - "html": "Otherwise, if errorFields was not passed, signal to the end\n user to attempt to retry the payment. Re-enable any UI element that\n affords the end user the ability to retry accepting the payment\n request." - }, - { - "html": "If\n document stops being fully active while the user\n interface is being shown, or no longer is by the time this step is\n reached, then:", - "rationale": "close", - "steps": [ - { - "html": "Close down the user interface." - }, - { - "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." - } - ] - }, - { - "html": "Finally, when retryPromise settles, set\n response.[[retryPromise]] to null." - }, - { - "html": "Return retryPromise." - } - ] - }, - { - "html": "The complete() method MUST act as follows:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let response be this." - }, - { - "html": "If response.[[complete]] is true, return\n a promise rejected with an \"InvalidStateError\"\n DOMException." - }, - { - "html": "If response.[[retryPromise]] is not null,\n return a promise rejected with an \"InvalidStateError\"\n DOMException." - }, - { - "html": "Let promise be a new promise." - }, - { - "html": "Let serializedData be the result of serialize\n details.data into a JSON string." - }, - { - "html": "If serializing throws an exception, return a\n promise rejected with that exception." - }, - { - "html": "If required by the specification that defines the\n response.methodName:", - "rationale": "let", - "steps": [ - { - "html": "Let json be the result of calling JSON's parse()\n with serializedData." - }, - { - "html": "Let idl be the result of converting json to an IDL value of the type specified\n by the specification that defines the\n response.methodName." - }, - { - "html": "If the conversion to an IDL value throws an\n exception, return a promise rejected with that\n exception." - }, - { - "html": "If required by the specification that defines the\n response.methodName, validate the members\n of idl. If a member's value is invalid, return a promise\n rejected with a TypeError." - } - ] - }, - { - "html": "Set response.[[complete]] to true." - }, - { - "html": "Return promise and perform the remaining steps in\n parallel." - }, - { - "html": "If document stops being fully active while the\n user interface is being shown, or no longer is by the time this step\n is reached, then:", - "rationale": "close", - "steps": [ - { - "html": "Close down the user interface." - }, - { - "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." - } - ] - }, - { - "html": "Otherwise:", - "rationale": "close", - "steps": [ - { - "html": "Close down any remaining user interface. The user\n agent MAY use the value result and serializedData to\n influence the user experience." - }, - { - "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." - }, - { - "html": "Resolve promise with undefined." - } - ] - } - ] - }, - { - "html": "The PaymentRequestUpdateEvent's\n constructor(type, eventInitDict) MUST\n act as follows:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let event be the result of calling\n the constructor of PaymentRequestUpdateEvent with\n type and eventInitDict." - }, - { - "html": "Set event.[[waitForUpdate]] to\n false." - }, - { - "html": "Return event." - } - ] - }, - { - "html": "The updateWith() with\n detailsPromise method MUST act as follows:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let event be this." - }, - { - "html": "If event's isTrusted attribute is false, then\n throw an \"InvalidStateError\" DOMException." - }, - { - "html": "If event.[[waitForUpdate]] is\n true, then throw an \"InvalidStateError\"\n DOMException." - }, - { - "html": "If event's target is an instance of\n PaymentResponse, let request be event's\n target's [[request]]." - }, - { - "html": "Otherwise, let request be the value of\n event's target." - }, - { - "html": "Assert: request is an instance of PaymentRequest." - }, - { - "html": "If request.[[state]] is not\n \"interactive\", then throw an\n \"InvalidStateError\" DOMException." - }, - { - "html": "If request.[[updating]] is true, then\n throw an \"InvalidStateError\" DOMException." - }, - { - "html": "Set event's stop propagation flag and stop immediate propagation flag." - }, - { - "html": "Set event.[[waitForUpdate]] to\n true." - }, - { - "html": "Let pmi be null." - }, - { - "html": "If event has a methodName\n attribute, set pmi to the methodName\n attribute's value." - }, - { - "html": "Run the update a PaymentRequest's details\n algorithm with detailsPromise, request, and pmi." - } - ] - }, - { - "name": "can make payment algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-can-make-payment-algorithm", - "html": "The can make payment algorithm checks if the user\n agent supports making payment with the payment methods\n with which the PaymentRequest was constructed.", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let request be the PaymentRequest object on\n which the method was called." - }, - { - "html": "If request.[[state]] is not\n \"created\", then return a promise rejected\n with an \"InvalidStateError\" DOMException." - }, - { - "html": "Optionally, at the top-level browsing\n context's discretion, return a promise rejected with a\n \"NotAllowedError\" DOMException." - }, - { - "html": "Let hasHandlerPromise be a new promise." - }, - { - "html": "Return hasHandlerPromise, and perform the remaining steps in\n parallel." - }, - { - "html": "For each paymentMethod tuple in request.\n [[serializedMethodData]]:", - "rationale": "let", - "steps": [ - { - "html": "Let identifier be the first element in the paymentMethod\n tuple." - }, - { - "html": "If the user agent has a payment handler that supports\n handling payment requests for identifier, resolve\n hasHandlerPromise with true and terminate this algorithm." - } - ] - }, - { - "html": "Resolve hasHandlerPromise with false." - } - ] - }, - { - "name": "shipping address changed algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-shipping-address-changed-algorithm", - "html": "The shipping address changed algorithm runs when the user\n provides a new shipping address. It MUST run the following steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let request be the PaymentRequest object\n that the user is interacting with." - }, - { - "html": "Queue a task on the user interaction task source to\n run the following steps:", - "rationale": "let", - "steps": [ - { - "html": "" - }, - { - "html": "Let redactList be the empty list. Set redactList to\n « \"organization\", \"phone\", \"recipient\", \"addressLine\" »." - }, - { - "html": "Let address be the result of running the\n steps to create a contactaddress from user-provided input with redactList." - }, - { - "html": "Set request.shippingAddress to\n address." - }, - { - "html": "Run the PaymentRequest updated algorithm with\n request and \"shippingaddresschange\"." - } - ] - } - ] - }, - { - "name": "shipping option changed algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-shipping-option-changed-algorithm", - "html": "The shipping option changed algorithm runs when the user\n chooses a new shipping option. It MUST run the following steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let request be the PaymentRequest object\n that the user is interacting with." - }, - { - "html": "Queue a task on the user interaction task source to\n run the following steps:", - "rationale": "set", - "steps": [ - { - "html": "Set the shippingOption attribute on\n request to the id string of the\n PaymentShippingOption provided by the user." - }, - { - "html": "Run the PaymentRequest updated algorithm with\n request and \"shippingoptionchange\"." - } - ] - } - ] - }, - { - "name": "payment handler/payment method changed algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method-changed-algorithm", - "html": "A payment handler MAY run the payment method changed algorithm\n when the user changes payment method with methodDetails,\n which is a dictionary or an object or null, and a\n methodName, which is a DOMString that represents the payment\n method identifier of the payment handler the user is\n interacting with.", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let request be the PaymentRequest object\n that the user is interacting with." - }, - { - "html": "Queue a task on the user interaction task source to\n run the following steps:", - "rationale": "assert", - "steps": [ - { - "html": "Assert: request.[[updating]] is false.\n Only one update can take place at a time." - }, - { - "html": "Assert: request.[[state]] is\n \"interactive\"." - }, - { - "html": "Fire an event named \"paymentmethodchange\" at\n request using PaymentMethodChangeEvent, with its\n methodName attribute initialized\n to methodName, and its\n methodDetails attribute\n initialized to methodDetails." - } - ] - } - ] - }, - { - "name": "PaymentRequest updated algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-paymentrequest-updated-algorithm", - "html": "The PaymentRequest updated algorithm is run by other\n algorithms above to fire an event to indicate that a user has\n made a change to a PaymentRequest called request with an event\n name of name:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Assert: request.[[updating]] is false. Only\n one update can take place at a time." - }, - { - "html": "Assert: request.[[state]] is\n \"interactive\"." - }, - { - "html": "Let event be the result of\n creating an event using the PaymentRequestUpdateEvent\n interface." - }, - { - "html": "Initialize event's type attribute to name." - }, - { - "html": "Dispatch event at request." - }, - { - "html": "If event.[[waitForUpdate]] is\n true, disable any part of the user interface that could cause another\n update event to be fired." - }, - { - "html": "Otherwise, set\n event.[[waitForUpdate]] to true." - } - ] - }, - { - "name": "payer detail changed algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payer-detail-changed-algorithm", - "html": "The user agent MUST run the payer detail changed algorithm\n when the user changes the payer name, or the payer email, or the\n payer phone in the user interface:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let request be the PaymentRequest object\n that the user is interacting with." - }, - { - "html": "If request.[[response]] is null, return." - }, - { - "html": "Let response be\n request.[[response]]." - }, - { - "html": "Queue a task on the user interaction task source to\n run the following steps:", - "rationale": "assert", - "steps": [ - { - "html": "Assert: request.[[updating]] is false." - }, - { - "html": "Assert: request.[[state]] is\n \"interactive\"." - }, - { - "html": "Let options be\n request.[[options]]." - }, - { - "html": "If payer name changed and\n options.requestPayerName is true:", - "rationale": "set", - "steps": [ - { - "html": "Set response.payerName attribute to\n payer name." - } - ] - }, - { - "html": "If payer email changed and\n options.requestPayerEmail is true:", - "rationale": "set", - "steps": [ - { - "html": "Set response.payerEmail to payer\n email." - } - ] - }, - { - "html": "If payer phone changed and\n options.requestPayerPhone is true:", - "rationale": "set", - "steps": [ - { - "html": "Set response.payerPhone to payer\n phone." - } - ] - }, - { - "html": "Let event be the result of\n creating an event using PaymentRequestUpdateEvent." - }, - { - "html": "Initialize event's type attribute to\n \"payerdetailchange\"." - }, - { - "html": "Dispatch event at response." - }, - { - "html": "If event.[[waitForUpdate]] is\n true, disable any part of the user interface that could cause\n another change to the payer details to be fired." - }, - { - "html": "Otherwise, set\n event.[[waitForUpdate]] to true." - } - ] - } - ] - }, - { - "name": "user accepts the payment request algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-user-accepts-the-payment-request-algorithm", - "html": "The user accepts the payment request algorithm runs\n when the user accepts the payment request and confirms that they want\n to pay. It MUST queue a task on the user interaction task\n source to perform the following steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let request be the PaymentRequest object\n that the user is interacting with." - }, - { - "html": "If the request.[[updating]] is true, then\n terminate this algorithm and take no further action. The user\n agent user interface SHOULD ensure that this never occurs." - }, - { - "html": "If request.[[state]] is not\n \"interactive\", then terminate this algorithm and\n take no further action. The user agent user interface SHOULD\n ensure that this never occurs." - }, - { - "html": "If the requestShipping value of\n request.[[options]] is true, then if the\n shippingAddress attribute of request is null or\n if the shippingOption attribute of request is\n null, then terminate this algorithm and take no further action. The\n user agent SHOULD ensure that this never occurs." - }, - { - "html": "Let isRetry be true if\n request.[[response]] is not null, false\n otherwise." - }, - { - "html": "Let response be\n request.[[response]] if isRetry is true, or a\n new PaymentResponse otherwise." - }, - { - "html": "If isRetry is false, initialize the newly created response:", - "rationale": "set", - "steps": [ - { - "html": "Set response.[[request]] to request." - }, - { - "html": "Set response.[[retryPromise]] to null." - }, - { - "html": "Set response.[[complete]] to false." - }, - { - "html": "Set the requestId attribute value of\n response to the value of\n request.[[details]].id." - }, - { - "html": "Set request.[[response]] to response." - } - ] - }, - { - "html": "Let handler be\n request.[[handler]]." - }, - { - "html": "Set the methodName attribute value of\n response to the payment method identifier of handler." - }, - { - "html": "Set the details attribute value of response\n to an object resulting from running the handler's steps to\n respond to a payment request." - }, - { - "html": "If the requestShipping value of\n request.[[options]] is false, then set the\n shippingAddress attribute value of response to\n null. Otherwise:", - "rationale": "let", - "steps": [ - { - "html": "Let shippingAddress be the result of\n create a contactaddress from user-provided input" - }, - { - "html": "Set the shippingAddress attribute value\n of response to shippingAddress." - }, - { - "html": "Set the shippingAddress attribute value\n of request to shippingAddress." - } - ] - }, - { - "html": "If the requestShipping value of\n request.[[options]] is true, then set the\n shippingOption attribute of response to the\n value of the shippingOption attribute of\n request. Otherwise, set it to null." - }, - { - "html": "If the requestPayerName value of\n request.[[options]] is true, then set the\n payerName attribute of response to the payer's\n name provided by the user, or to null if none was provided.\n Otherwise, set it to null." - }, - { - "html": "If the requestPayerEmail value of\n request.[[options]] is true, then set the\n payerEmail attribute of response to the payer's\n email address provided by the user, or to null if none was provided.\n Otherwise, set it to null." - }, - { - "html": "If the requestPayerPhone value of\n request.[[options]] is true, then set the\n payerPhone attribute of response to the payer's\n phone number provided by the user, or to null if none was provided.\n When setting the payerPhone value, the user agent\n SHOULD format the phone number to adhere to [E.164]." - }, - { - "html": "Set request.[[state]] to\n \"closed\"." - }, - { - "html": "If isRetry is true, resolve\n response.[[retryPromise]] with undefined.\n Otherwise, resolve request.[[acceptPromise]]\n with response." - } - ] - }, - { - "name": "user aborts the payment request", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-user-aborts-the-payment-request", - "html": "The user aborts the\n payment request algorithm runs when the user aborts the payment\n request through the currently interactive user interface. It MUST\n queue a task on the user interaction task source to\n perform the following steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let request be the PaymentRequest object\n that the user is interacting with." - }, - { - "html": "If request.[[state]] is not\n \"interactive\", then terminate this algorithm and\n take no further action. The user agent user interface SHOULD\n ensure that this never occurs." - }, - { - "html": "Set request.[[state]] to\n \"closed\"." - }, - { - "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." - }, - { - "html": "Let error be an \"AbortError\" DOMException." - }, - { - "html": "Let response be\n request.[[response]]." - }, - { - "html": "If response is not null:", - "rationale": "set", - "steps": [ - { - "html": "Set response.[[complete]] to true." - }, - { - "html": "Assert: response.[[retryPromise]] is\n not null." - }, - { - "html": "Reject response.[[retryPromise]] with\n error." - } - ] - }, - { - "html": "Otherwise, reject request.[[acceptPromise]]\n with error." - }, - { - "html": "Abort the current user interaction and close down any remaining\n user interface." - } - ] - }, - { - "html": "In the case where a timeout occurs, or the user manually aborts, or\n the payment handler decides to abort this particular payment,\n the user agent MUST run the user aborts the payment request\n algorithm.", - "rationale": ".algorithm", - "steps": [ - { - "html": "Set request.[[updating]] to true." - }, - { - "html": "In parallel, disable the user interface that allows the user\n to accept the payment request. This is to ensure that the payment\n is not accepted until the user interface is updated with any new\n details." - }, - { - "html": "Upon rejection of detailsPromise:", - "rationale": "abort", - "steps": [ - { - "html": "Abort the update with request and an \"AbortError\"\n DOMException." - } - ] - }, - { - "html": "Upon fulfillment of detailsPromise with value value:", - "rationale": "let", - "steps": [ - { - "html": "Let details be the result of\n converting value to a\n PaymentDetailsUpdate dictionary. If this throw\n an exception, abort the update with request and with the\n thrown exception." - }, - { - "html": "Let serializedModifierData be an empty list." - }, - { - "html": "Let selectedShippingOption be null." - }, - { - "html": "Let shippingOptions be an empty\n sequence<PaymentShippingOption>." - }, - { - "html": "Validate and canonicalize the details:", - "rationale": "if", - "steps": [ - { - "html": "If the total member of details\n is present, then:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize total amount\n details.total.amount.\n If an exception is thrown, then abort the update\n with request and that exception." - } - ] - }, - { - "html": "If the displayItems member of\n details is present, then for each item in\n details.displayItems:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize amount\n item.amount. If an exception is\n thrown, then abort the update with request and\n that exception." - } - ] - }, - { - "html": "If the shippingOptions member of\n details is present, and\n request.[[options]].requestShipping\n is true, then:", - "rationale": "let", - "steps": [ - { - "html": "Let seenIDs be an empty set." - }, - { - "html": "For each option in\n details.shippingOptions:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize amount\n option.amount. If an\n exception is thrown, then abort the update\n with request and that exception." - }, - { - "html": "If seenIDs[option.{{PaymentShippingOption/id}]\n exists, then abort the update with request\n and a TypeError." - }, - { - "html": "Append option.id to\n seenIDs." - }, - { - "html": "Append option to shippingOptions." - }, - { - "html": "If option.selected is\n true, then set selectedShippingOption to\n option.id." - } - ] - } - ] - }, - { - "html": "If the modifiers member of\n details is present, then:", - "rationale": "let", - "steps": [ - { - "html": "Let modifiers be the sequence\n details.modifiers." - }, - { - "html": "Let serializedModifierData be an empty list." - }, - { - "html": "For each PaymentDetailsModifier modifier in\n modifiers:", - "rationale": "run", - "steps": [ - { - "html": "Run the steps to validate a payment method\n identifier with\n modifier.supportedMethods.\n If it returns false, then abort the update\n with request and a RangeError exception.\n Optionally, inform the developer that the payment\n method identifier is invalid." - }, - { - "html": "If the total member of\n modifier is present, then:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize total amount\n modifier.total.amount.\n If an exception is thrown, then abort the\n update with request and that exception." - } - ] - }, - { - "html": "If the\n additionalDisplayItems\n member of modifier is present, then for each\n PaymentItem item in\n modifier.additionalDisplayItems:", - "rationale": "check", - "steps": [ - { - "html": "Check and canonicalize amount\n item.amount. If an exception\n is thrown, then abort the update with\n request and that exception." - } - ] - }, - { - "html": "If the data member of\n modifier is missing, let serializedData be null.\n Otherwise, let serializedData be the result of\n serialize\n modifier.data into a\n JSON string. If it throws an exception, then abort\n the update with request and that exception." - }, - { - "html": "Add serializedData to serializedModifierData." - }, - { - "html": "Remove the data member\n of modifier, if it is present." - } - ] - } - ] - } - ] - }, - { - "html": "If the paymentMethodErrors member is\n present and identifier is not null:", - "rationale": "if", - "steps": [ - { - "html": "If required by the specification that defines the pmi,\n then convert\n paymentMethodErrors to an IDL value." - }, - { - "html": "If conversion results in a exception error, \n abort the update with error." - }, - { - "html": "The payment handler SHOULD display an error for\n each relevant erroneous field of\n paymentMethodErrors." - } - ] - }, - { - "html": "Update the PaymentRequest using the new details:", - "rationale": "if", - "steps": [ - { - "html": "If the total member of details\n is present, then:", - "rationale": "set", - "steps": [ - { - "html": "Set\n request.[[details]].total\n to details.total." - } - ] - }, - { - "html": "If the displayItems member of\n details is present, then:", - "rationale": "set", - "steps": [ - { - "html": "Set\n request.[[details]].displayItems\n to details.displayItems." - } - ] - }, - { - "html": "If the shippingOptions member of\n details is present, and\n request.[[options]].requestShipping\n is true, then:", - "rationale": "set", - "steps": [ - { - "html": "Set\n request.[[details]].shippingOptions\n to shippingOptions." - }, - { - "html": "Set the value of request's\n shippingOption attribute to\n selectedShippingOption." - } - ] - }, - { - "html": "If the modifiers member of\n details is present, then:", - "rationale": "set", - "steps": [ - { - "html": "Set\n request.[[details]].modifiers\n to details.modifiers." - }, - { - "html": "Set\n request.[[serializedModifierData]]\n to serializedModifierData." - } - ] - }, - { - "html": "

\n If\n request.[[options]].requestShipping\n is true, and\n request.[[details]].shippingOptions\n is empty, then the developer has signified that there are\n no valid shipping options for the currently-chosen\n shipping address (given by request's\n shippingAddress).\n

\n

\n In this case, the user agent SHOULD display an error\n indicating this, and MAY indicate that the\n currently-chosen shipping address is invalid in some way.\n The user agent SHOULD use the\n error member of details, if it\n is present, to give more information about why there are\n no valid shipping options for that address.\n

\n

\n Further, if\n details[\"shippingAddressErrors\"]\n member is present, the user agent SHOULD display an error\n specifically for each erroneous field of the shipping\n address. This is done by matching each present member of\n the AddressErrors to a corresponding input field in\n the shown user interface.\n

\n

\n Similarly, if details[\"payerErrors\"] member is\n present and request.[[options]]'s\n requestPayerName,\n requestPayerEmail, or\n requestPayerPhone is true, then\n display an error specifically for each erroneous field.\n

\n

\n Likewise, if\n details.paymentMethodErrors is\n present, then display errors specifically for each\n erroneous input field for the particular payment method.\n

" - } - ] - } - ] - }, - { - "html": "Set request.[[updating]] to false." - }, - { - "html": "Update the user interface based on any changed values in\n request. Re-enable user interface elements disabled prior to\n running this algorithm." - } - ] - }, - { - "name": "abort the update", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-abort-the-update", - "html": "To abort the update with a\n PaymentRequest request and exception exception:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Optionally, show an error message to the user when letting them\n know an error has occurred." - }, - { - "html": "Abort the current user interaction and close down any remaining\n user interface." - }, - { - "html": "Queue a task on the user interaction task source to\n perform the following steps:", - "rationale": "set", - "steps": [ - { - "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." - }, - { - "html": "Set request.[[state]] to\n \"closed\"." - }, - { - "html": "Let response be\n request.[[response]]." - }, - { - "html": "If response is not null, then:", - "rationale": "set", - "steps": [ - { - "html": "Set response.[[complete]] to\n true." - }, - { - "html": "Assert: response.[[retryPromise]]\n is not null." - }, - { - "html": "Reject response.[[retryPromise]]\n with exception." - } - ] - }, - { - "html": "Otherwise, reject\n request.[[acceptPromise]] with\n exception." - }, - { - "html": "Set request.[[updating]] to false." - } - ] - }, - { - "html": "Abort the algorithm." - } - ] - } - ] -} \ No newline at end of file diff --git a/tr/algorithms/payment-request.json b/tr/algorithms/payment-request.json new file mode 100644 index 000000000000..a7ffe5fa1929 --- /dev/null +++ b/tr/algorithms/payment-request.json @@ -0,0 +1,1355 @@ +{ + "spec": { + "title": "Payment Request API", + "url": "https://www.w3.org/TR/payment-request/" + }, + "algorithms": [ + { + "name": "PaymentRequest.PaymentRequest()", + "href": "https://www.w3.org/TR/payment-request/#dfn-paymentrequest-paymentrequest", + "html": "The PaymentRequest(methodData,\n details, options) constructor MUST act as follows:", + "rationale": ".algorithm", + "steps": [ + { + "html": "If this's relevant global object's associated Document is not allowed to use the \"payment\"\n permission, then throw a \"SecurityError\"\n DOMException." + }, + { + "html": "Establish the request's id:", + "rationale": "if", + "steps": [ + { + "html": "If\n details.id is missing, add an\n id member to details and set its value\n to a UUID\n [RFC4122]." + } + ] + }, + { + "html": "Let serializedMethodData be an empty list." + }, + { + "html": "Process payment methods:", + "rationale": "if", + "steps": [ + { + "html": "If the length of the methodData sequence is zero, then\n throw a TypeError, optionally informing the\n developer that at least one payment method is required." + }, + { + "html": "Let seenPMIs be the empty set." + }, + { + "html": "For each paymentMethod of methodData:", + "rationale": "run", + "steps": [ + { + "html": "Run the\n steps to validate a payment method identifier with\n paymentMethod.supportedMethods. If it\n returns false, then throw a RangeError exception.\n Optionally, inform the developer that the payment method\n identifier is invalid." + }, + { + "html": "Let pmi be the result of parsing\n paymentMethod.supportedMethods with\n basic URL parser:", + "rationale": "if", + "steps": [ + { + "html": "If failure, set pmi to\n paymentMethod.supportedMethods." + } + ] + }, + { + "html": "If seenPMIs contains pmi throw a\n RangeError DOMException optionally informing the\n developer that this payment method identifier is a\n duplicate." + }, + { + "html": "Append pmi to seenPMIs." + }, + { + "html": "If the data member of\n paymentMethod is missing, let serializedData be null.\n Otherwise, let serializedData be the result of serialize\n paymentMethod.data into a JSON\n string. Rethrow any exceptions." + }, + { + "html": "If serializedData is not null, and if the specification\n that defines the\n paymentMethod.supportedMethods\n specifies an additional data type:", + "rationale": "let", + "steps": [ + { + "html": "Let object be the result of JSON-parsing\n serializedData." + }, + { + "html": "

\n Let idl be the result of converting object to an IDL value of the\n additional data type. Rethrow any\n exceptions.\n

" + }, + { + "html": "

\n Run the steps to validate payment method data,\n if any, from the specification that defines the\n paymentMethod.supportedMethods\n on object. Rethrow any exceptions.\n

" + } + ] + }, + { + "html": "Add the tuple\n (paymentMethod.supportedMethods,\n serializedData) to serializedMethodData." + } + ] + } + ] + }, + { + "html": "Process the total:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize total amount\n details.total.amount.\n Rethrow any exceptions." + } + ] + }, + { + "html": "If the displayItems member of details is\n present, then for each item in\n details.displayItems:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize amount\n item.amount. Rethrow any exceptions." + } + ] + }, + { + "html": "Let selectedShippingOption be null." + }, + { + "html": "If the requestShipping member of options is\n present and set to true, process shipping options:", + "rationale": "let", + "steps": [ + { + "html": "Let options be an empty\n sequence<PaymentShippingOption>." + }, + { + "html": "If the shippingOptions member of\n details is present, then:", + "rationale": "let", + "steps": [ + { + "html": "Let seenIDs be an empty set." + }, + { + "html": "For each option in\n details.shippingOptions:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize amount\n item.amount. Rethrow any exceptions." + }, + { + "html": "If seenIDs contains\n option.id, then throw a\n TypeError. Optionally, inform the developer that\n shipping option IDs must be unique." + }, + { + "html": "Otherwise, append\n option.id to seenIDs." + }, + { + "html": "If option.selected is\n true, then set selectedShippingOption to\n option.id." + } + ] + } + ] + }, + { + "html": "Set details.shippingOptions to\n options." + } + ] + }, + { + "html": "Let serializedModifierData be an empty list." + }, + { + "html": "Process payment details modifiers:", + "rationale": "let", + "steps": [ + { + "html": "Let modifiers be an empty\n sequence<PaymentDetailsModifier>." + }, + { + "html": "If the modifiers member of details\n is present, then:", + "rationale": "set", + "steps": [ + { + "html": "Set modifiers to\n details.modifiers." + }, + { + "html": "For each modifier of modifiers:", + "rationale": "if", + "steps": [ + { + "html": "If the total member of\n modifier is present, then:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize total amount\n modifier.total.amount.\n Rethrow any exceptions." + } + ] + }, + { + "html": "If the\n additionalDisplayItems member\n of modifier is present, then for each item of\n modifier.additionalDisplayItems:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize amount\n item.amount. Rethrow any\n exceptions." + } + ] + }, + { + "html": "If the data member of\n modifier is missing, let serializedData be null.\n Otherwise, let serializedData be the result of\n serialize\n modifier.data into a JSON\n string. Rethrow any exceptions." + }, + { + "html": "Add the tuple\n (modifier.supportedMethods,\n serializedData) to serializedModifierData." + }, + { + "html": "Remove the data member of\n modifier, if it is present." + } + ] + } + ] + }, + { + "html": "Set details.modifiers to\n modifiers." + } + ] + }, + { + "html": "Let request be a new PaymentRequest." + }, + { + "html": "Set request.[[handler]] to null." + }, + { + "html": "Set request.[[options]] to options." + }, + { + "html": "Set request.[[state]] to\n \"created\"." + }, + { + "html": "Set request.[[updating]] to false." + }, + { + "html": "Set request.[[details]] to details." + }, + { + "html": "Set request.[[serializedModifierData]] to\n serializedModifierData." + }, + { + "html": "Set request.[[serializedMethodData]] to\n serializedMethodData." + }, + { + "html": "Set request.[[response]] to null." + }, + { + "html": "Set the value of request's shippingOption\n attribute to selectedShippingOption." + }, + { + "html": "Set the value of the shippingAddress attribute\n on request to null." + }, + { + "html": "If options.requestShipping is set to true,\n then set the value of the shippingType attribute\n on request to options.shippingType. Otherwise,\n set it to null." + }, + { + "html": "Return request." + } + ] + }, + { + "html": "The show(optional detailsPromise) method MUST act as\n follows:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let request be this." + }, + { + "html": "If the relevant global object of request does not have\n transient activation:", + "rationale": "return", + "steps": [ + { + "html": "Return a promise rejected with with a \"SecurityError\"\n DOMException." + } + ] + }, + { + "html": "Consume user activation of the relevant global object." + }, + { + "html": "Let document be request's relevant global object's\n associated Document." + }, + { + "html": "If document is\n not fully active, then return a promise rejected\n with an \"AbortError\" DOMException." + }, + { + "html": "If document's visibility state is not \"visible\",\n then return a promise rejected with an \"AbortError\"\n DOMException." + }, + { + "html": "

\n Optionally, if the user agent wishes to disallow the call\n to show() to protect the user, then return a\n promise rejected with a \"SecurityError\" DOMException. For\n example, the user agent may limit the rate at which a page\n can call show(), as described in section\n 19. \n Privacy and Security Considerations.\n

" + }, + { + "html": "If request.[[state]] is not\n \"created\" then return a promise rejected\n with an \"InvalidStateError\" DOMException." + }, + { + "html": "If the user agent's payment request is showing\n boolean is true, then:", + "rationale": "set", + "steps": [ + { + "html": "Set request.[[state]] to\n \"closed\"." + }, + { + "html": "Return a promise rejected with an \"AbortError\"\n DOMException." + } + ] + }, + { + "html": "Set request.[[state]] to\n \"interactive\"." + }, + { + "html": "Let acceptPromise be a new promise." + }, + { + "html": "Set request.[[acceptPromise]] to\n acceptPromise." + }, + { + "html": "Optionally:", + "rationale": "reject", + "steps": [ + { + "html": "Reject acceptPromise with an \"AbortError\"\n DOMException." + }, + { + "html": "Set request.[[state]] to\n \"closed\"." + }, + { + "html": "Return acceptPromise." + } + ] + }, + { + "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to true." + }, + { + "html": "Return acceptPromise and perform the remaining steps in\n parallel." + }, + { + "html": "Let handlers be an empty list." + }, + { + "html": "For each paymentMethod tuple in\n request.[[serializedMethodData]]:", + "rationale": "let", + "steps": [ + { + "html": "Let identifier be the first element in the paymentMethod\n tuple." + }, + { + "html": "Let data be the result of JSON-parsing the second element\n in the paymentMethod tuple." + }, + { + "html": "If the specification that defines the identifier specifies\n an additional data type, then convert data to an IDL value of that type.\n Otherwise, convert data to\n object." + }, + { + "html": "If conversion results in an exception error:", + "rationale": "set", + "steps": [ + { + "html": "Set request.[[state]] to\n \"closed\"." + }, + { + "html": "Reject acceptPromise with error." + }, + { + "html": "Set request's payment-relevant browsing\n context's payment request is showing boolean to\n false." + }, + { + "html": "Terminate this algorithm." + } + ] + }, + { + "html": "Let registeredHandlers be a list of registered\n payment handlers for the payment method identifier." + }, + { + "html": "For each handler in registeredHandlers:", + "rationale": "let", + "steps": [ + { + "html": "Let canMakePayment be the result of running handler's\n steps to check if a payment can be made with data." + }, + { + "html": "If canMakePayment is true, then append handler to\n handlers." + } + ] + } + ] + }, + { + "html": "If handlers is empty, then:", + "rationale": "set", + "steps": [ + { + "html": "Set request.[[state]] to\n \"closed\"." + }, + { + "html": "Reject acceptPromise with \"NotSupportedError\"\n DOMException." + }, + { + "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." + }, + { + "html": "Terminate this algorithm." + } + ] + }, + { + "html": "

\n Present a user interface that will allow the user to interact\n with the handlers. The user agent SHOULD prioritize the user's\n preference when presenting payment methods. The user interface\n SHOULD be presented using the language and locale-based\n formatting that matches the document's document element's language, if any, or an\n appropriate fallback if that is not available.\n

" + }, + { + "html": "If\n detailsPromise was passed, then:", + "rationale": "run", + "steps": [ + { + "html": "Run the update a PaymentRequest's details\n algorithm with detailsPromise, request, and null." + }, + { + "html": "Wait for the detailsPromise to settle." + } + ] + }, + { + "html": "Set request.[[handler]] be the payment\n handler selected by the end-user." + }, + { + "html": "Let modifiers be an empty list." + }, + { + "html": "For each tuple in\n [[serializedModifierData]]:", + "rationale": "if", + "steps": [ + { + "html": "If the first element of tuple (a PMI) matches the\n payment method identifier of\n request.[[handler]], then append the second\n element of tuple (the serialized method data) to modifiers." + } + ] + }, + { + "html": "If document stops being fully active while the\n user interface is being shown, or no longer is by the time this\n step is reached, then:", + "rationale": "close", + "steps": [ + { + "html": "Close down the user interface." + }, + { + "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." + } + ] + } + ] + }, + { + "html": "The abort() method MUST act as follows:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let request be this." + }, + { + "html": "If request.[[response]] is not null, and\n request.[[response]].[[retryPromise]]\n is not null, return a promise rejected with an\n \"InvalidStateError\" DOMException." + }, + { + "html": "If the value of request.[[state]] is not\n \"interactive\" then return a promise rejected\n with an \"InvalidStateError\" DOMException." + }, + { + "html": "Let promise be a new promise." + }, + { + "html": "Return promise and perform the remaining steps in\n parallel." + }, + { + "html": "Try to abort the current user interaction with the payment\n handler and close down any remaining user interface." + }, + { + "html": "Queue a task on the user interaction task source to\n perform the following steps:", + "rationale": "if", + "steps": [ + { + "html": "If it is not possible to abort the current user interaction,\n then reject promise with \"InvalidStateError\"\n DOMException and abort these steps." + }, + { + "html": "Set request.[[state]] to\n \"closed\"." + }, + { + "html": "Reject the promise\n request.[[acceptPromise]] with an\n \"AbortError\" DOMException." + }, + { + "html": "Resolve promise with undefined." + } + ] + } + ] + }, + { + "name": "check and canonicalize amount", + "href": "https://www.w3.org/TR/payment-request/#dfn-check-and-canonicalize-amount", + "html": "To check and canonicalize amount given a\n PaymentCurrencyAmount amount, run the following steps:", + "rationale": "if", + "steps": [ + { + "html": "If the result of IsWellFormedCurrencyCode(amount.currency)\n is false, then throw a RangeError exception, optionally informing\n the developer that the currency is invalid." + }, + { + "html": "If amount.value is not a valid\n decimal monetary value, throw a TypeError, optionally\n informing the developer that the currency is invalid." + }, + { + "html": "Set amount.currency to the result of\n ASCII uppercase amount.currency." + } + ] + }, + { + "name": "check and canonicalize total amount", + "href": "https://www.w3.org/TR/payment-request/#dfn-check-and-canonicalize-total-amount", + "html": "To check and canonicalize total amount given a\n PaymentCurrencyAmount amount, run the\n following steps:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize amount amount. Rethrow any\n exceptions." + }, + { + "html": "If the first code point of\n amount.value is U+002D (-), then throw a\n TypeError optionally informing the developer that a total's value\n can't be a negative number." + } + ] + }, + { + "html": "The retry(errorFields) method\n MUST act as follows:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let response be this." + }, + { + "html": "Let request be\n response.[[request]]." + }, + { + "html": "Let document be request's relevant global\n object's associated Document." + }, + { + "html": "If\n document is not fully active, then return a promise\n rejected with an \"AbortError\" DOMException." + }, + { + "html": "If response.[[complete]] is true, return\n a promise rejected with an \"InvalidStateError\"\n DOMException." + }, + { + "html": "If response.[[retryPromise]] is not null,\n return a promise rejected with an \"InvalidStateError\"\n DOMException." + }, + { + "html": "Set request.[[state]] to\n \"interactive\"." + }, + { + "html": "Let retryPromise be a new promise." + }, + { + "html": "Set response.[[retryPromise]] to\n retryPromise." + }, + { + "html": "If errorFields was passed:", + "rationale": "if", + "steps": [ + { + "html": "Optionally, show a warning in the developer console if any of\n the following are true:", + "ignored": [ + "request.[[options]].requestPayerName is false, and errorFields.payer.name is present. request.[[options]].requestPayerEmail is false, and errorFields.payer.email is present. request.[[options]].requestPayerPhone is false, and errorFields.payer.phone is present. request.[[options]].requestShipping is false, and errorFields.shippingAddress is present." + ] + }, + { + "html": "If\n errorFields.paymentMethod\n member was passed, and if required by the specification that\n defines response.methodName, then\n convert errorFields's\n paymentMethod member to an IDL value\n of the type specified there. Otherwise, convert to object." + }, + { + "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." + }, + { + "html": "If conversion results in a exception error:", + "rationale": "reject", + "steps": [ + { + "html": "Reject retryPromise with error." + }, + { + "html": "Set user agent's payment request is showing\n boolean to false." + }, + { + "html": "Return." + } + ] + }, + { + "html": "By matching the members of errorFields to input fields in\n the user agent's UI, indicate to the end user that something is\n wrong with the data of the payment response. For example, a user\n agent might draw the user's attention to the erroneous\n errorFields in the browser's UI and display the value of each\n field in a manner that helps the user fix each error. Similarly,\n if the error member is passed,\n present the error in the user agent's UI. In the case where the\n value of a member is the empty string, the user agent MAY\n substitute a value with a suitable error message." + } + ] + }, + { + "html": "Otherwise, if errorFields was not passed, signal to the end\n user to attempt to retry the payment. Re-enable any UI element that\n affords the end user the ability to retry accepting the payment\n request." + }, + { + "html": "If\n document stops being fully active while the user\n interface is being shown, or no longer is by the time this step is\n reached, then:", + "rationale": "close", + "steps": [ + { + "html": "Close down the user interface." + }, + { + "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." + } + ] + }, + { + "html": "Finally, when retryPromise settles, set\n response.[[retryPromise]] to null." + }, + { + "html": "Return retryPromise." + } + ] + }, + { + "html": "The complete() method MUST act as follows:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let response be this." + }, + { + "html": "If response.[[complete]] is true, return\n a promise rejected with an \"InvalidStateError\"\n DOMException." + }, + { + "html": "If response.[[retryPromise]] is not null,\n return a promise rejected with an \"InvalidStateError\"\n DOMException." + }, + { + "html": "Let promise be a new promise." + }, + { + "html": "Let serializedData be the result of serialize\n details.data into a JSON string." + }, + { + "html": "If serializing throws an exception, return a\n promise rejected with that exception." + }, + { + "html": "If required by the specification that defines the\n response.methodName:", + "rationale": "let", + "steps": [ + { + "html": "Let json be the result of calling JSON's parse()\n with serializedData." + }, + { + "html": "Let idl be the result of converting json to an IDL value of the type specified\n by the specification that defines the\n response.methodName." + }, + { + "html": "If the conversion to an IDL value throws an\n exception, return a promise rejected with that\n exception." + }, + { + "html": "If required by the specification that defines the\n response.methodName, validate the members\n of idl. If a member's value is invalid, return a promise\n rejected with a TypeError." + } + ] + }, + { + "html": "Set response.[[complete]] to true." + }, + { + "html": "Return promise and perform the remaining steps in\n parallel." + }, + { + "html": "If document stops being fully active while the\n user interface is being shown, or no longer is by the time this step\n is reached, then:", + "rationale": "close", + "steps": [ + { + "html": "Close down the user interface." + }, + { + "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." + } + ] + }, + { + "html": "Otherwise:", + "rationale": "close", + "steps": [ + { + "html": "Close down any remaining user interface. The user\n agent MAY use the value result and serializedData to\n influence the user experience." + }, + { + "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." + }, + { + "html": "Resolve promise with undefined." + } + ] + } + ] + }, + { + "html": "The PaymentRequestUpdateEvent's\n constructor(type, eventInitDict) MUST\n act as follows:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let event be the result of calling\n the constructor of PaymentRequestUpdateEvent with\n type and eventInitDict." + }, + { + "html": "Set event.[[waitForUpdate]] to\n false." + }, + { + "html": "Return event." + } + ] + }, + { + "html": "The updateWith() with\n detailsPromise method MUST act as follows:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let event be this." + }, + { + "html": "If event's isTrusted attribute is false, then\n throw an \"InvalidStateError\" DOMException." + }, + { + "html": "If event.[[waitForUpdate]] is\n true, then throw an \"InvalidStateError\"\n DOMException." + }, + { + "html": "If event's target is an instance of\n PaymentResponse, let request be event's\n target's [[request]]." + }, + { + "html": "Otherwise, let request be the value of\n event's target." + }, + { + "html": "Assert: request is an instance of PaymentRequest." + }, + { + "html": "If request.[[state]] is not\n \"interactive\", then throw an\n \"InvalidStateError\" DOMException." + }, + { + "html": "If request.[[updating]] is true, then\n throw an \"InvalidStateError\" DOMException." + }, + { + "html": "Set event's stop propagation flag and stop immediate propagation flag." + }, + { + "html": "Set event.[[waitForUpdate]] to\n true." + }, + { + "html": "Let pmi be null." + }, + { + "html": "If event has a methodName\n attribute, set pmi to the methodName\n attribute's value." + }, + { + "html": "Run the update a PaymentRequest's details\n algorithm with detailsPromise, request, and pmi." + } + ] + }, + { + "name": "can make payment algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-can-make-payment-algorithm", + "html": "The can make payment algorithm checks if the user\n agent supports making payment with the payment methods\n with which the PaymentRequest was constructed.", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let request be the PaymentRequest object on\n which the method was called." + }, + { + "html": "If request.[[state]] is not\n \"created\", then return a promise rejected\n with an \"InvalidStateError\" DOMException." + }, + { + "html": "Optionally, at the top-level browsing\n context's discretion, return a promise rejected with a\n \"NotAllowedError\" DOMException." + }, + { + "html": "Let hasHandlerPromise be a new promise." + }, + { + "html": "Return hasHandlerPromise, and perform the remaining steps in\n parallel." + }, + { + "html": "For each paymentMethod tuple in request.\n [[serializedMethodData]]:", + "rationale": "let", + "steps": [ + { + "html": "Let identifier be the first element in the paymentMethod\n tuple." + }, + { + "html": "If the user agent has a payment handler that supports\n handling payment requests for identifier, resolve\n hasHandlerPromise with true and terminate this algorithm." + } + ] + }, + { + "html": "Resolve hasHandlerPromise with false." + } + ] + }, + { + "name": "shipping address changed algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-shipping-address-changed-algorithm", + "html": "The shipping address changed algorithm runs when the user\n provides a new shipping address. It MUST run the following steps:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let request be the PaymentRequest object\n that the user is interacting with." + }, + { + "html": "Queue a task on the user interaction task source to\n run the following steps:", + "rationale": "let", + "steps": [ + { + "html": "" + }, + { + "html": "Let redactList be the empty list. Set redactList to\n « \"organization\", \"phone\", \"recipient\", \"addressLine\" »." + }, + { + "html": "Let address be the result of running the\n steps to create a contactaddress from user-provided input with redactList." + }, + { + "html": "Set request.shippingAddress to\n address." + }, + { + "html": "Run the PaymentRequest updated algorithm with\n request and \"shippingaddresschange\"." + } + ] + } + ] + }, + { + "name": "shipping option changed algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-shipping-option-changed-algorithm", + "html": "The shipping option changed algorithm runs when the user\n chooses a new shipping option. It MUST run the following steps:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let request be the PaymentRequest object\n that the user is interacting with." + }, + { + "html": "Queue a task on the user interaction task source to\n run the following steps:", + "rationale": "set", + "steps": [ + { + "html": "Set the shippingOption attribute on\n request to the id string of the\n PaymentShippingOption provided by the user." + }, + { + "html": "Run the PaymentRequest updated algorithm with\n request and \"shippingoptionchange\"." + } + ] + } + ] + }, + { + "name": "payment handler/payment method changed algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-payment-method-changed-algorithm", + "html": "A payment handler MAY run the payment method changed algorithm\n when the user changes payment method with methodDetails,\n which is a dictionary or an object or null, and a\n methodName, which is a DOMString that represents the payment\n method identifier of the payment handler the user is\n interacting with.", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let request be the PaymentRequest object\n that the user is interacting with." + }, + { + "html": "Queue a task on the user interaction task source to\n run the following steps:", + "rationale": "assert", + "steps": [ + { + "html": "Assert: request.[[updating]] is false.\n Only one update can take place at a time." + }, + { + "html": "Assert: request.[[state]] is\n \"interactive\"." + }, + { + "html": "Fire an event named \"paymentmethodchange\" at\n request using PaymentMethodChangeEvent, with its\n methodName attribute initialized\n to methodName, and its\n methodDetails attribute\n initialized to methodDetails." + } + ] + } + ] + }, + { + "name": "PaymentRequest updated algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-paymentrequest-updated-algorithm", + "html": "The PaymentRequest updated algorithm is run by other\n algorithms above to fire an event to indicate that a user has\n made a change to a PaymentRequest called request with an event\n name of name:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Assert: request.[[updating]] is false. Only\n one update can take place at a time." + }, + { + "html": "Assert: request.[[state]] is\n \"interactive\"." + }, + { + "html": "Let event be the result of\n creating an event using the PaymentRequestUpdateEvent\n interface." + }, + { + "html": "Initialize event's type attribute to name." + }, + { + "html": "Dispatch event at request." + }, + { + "html": "If event.[[waitForUpdate]] is\n true, disable any part of the user interface that could cause another\n update event to be fired." + }, + { + "html": "Otherwise, set\n event.[[waitForUpdate]] to true." + } + ] + }, + { + "name": "payer detail changed algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-payer-detail-changed-algorithm", + "html": "The user agent MUST run the payer detail changed algorithm\n when the user changes the payer name, or the payer email, or the\n payer phone in the user interface:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let request be the PaymentRequest object\n that the user is interacting with." + }, + { + "html": "If request.[[response]] is null, return." + }, + { + "html": "Let response be\n request.[[response]]." + }, + { + "html": "Queue a task on the user interaction task source to\n run the following steps:", + "rationale": "assert", + "steps": [ + { + "html": "Assert: request.[[updating]] is false." + }, + { + "html": "Assert: request.[[state]] is\n \"interactive\"." + }, + { + "html": "Let options be\n request.[[options]]." + }, + { + "html": "If payer name changed and\n options.requestPayerName is true:", + "rationale": "set", + "steps": [ + { + "html": "Set response.payerName attribute to\n payer name." + } + ] + }, + { + "html": "If payer email changed and\n options.requestPayerEmail is true:", + "rationale": "set", + "steps": [ + { + "html": "Set response.payerEmail to payer\n email." + } + ] + }, + { + "html": "If payer phone changed and\n options.requestPayerPhone is true:", + "rationale": "set", + "steps": [ + { + "html": "Set response.payerPhone to payer\n phone." + } + ] + }, + { + "html": "Let event be the result of\n creating an event using PaymentRequestUpdateEvent." + }, + { + "html": "Initialize event's type attribute to\n \"payerdetailchange\"." + }, + { + "html": "Dispatch event at response." + }, + { + "html": "If event.[[waitForUpdate]] is\n true, disable any part of the user interface that could cause\n another change to the payer details to be fired." + }, + { + "html": "Otherwise, set\n event.[[waitForUpdate]] to true." + } + ] + } + ] + }, + { + "name": "user accepts the payment request algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-user-accepts-the-payment-request-algorithm", + "html": "The user accepts the payment request algorithm runs\n when the user accepts the payment request and confirms that they want\n to pay. It MUST queue a task on the user interaction task\n source to perform the following steps:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let request be the PaymentRequest object\n that the user is interacting with." + }, + { + "html": "If the request.[[updating]] is true, then\n terminate this algorithm and take no further action. The user\n agent user interface SHOULD ensure that this never occurs." + }, + { + "html": "If request.[[state]] is not\n \"interactive\", then terminate this algorithm and\n take no further action. The user agent user interface SHOULD\n ensure that this never occurs." + }, + { + "html": "If the requestShipping value of\n request.[[options]] is true, then if the\n shippingAddress attribute of request is null or\n if the shippingOption attribute of request is\n null, then terminate this algorithm and take no further action. The\n user agent SHOULD ensure that this never occurs." + }, + { + "html": "Let isRetry be true if\n request.[[response]] is not null, false\n otherwise." + }, + { + "html": "Let response be\n request.[[response]] if isRetry is true, or a\n new PaymentResponse otherwise." + }, + { + "html": "If isRetry is false, initialize the newly created response:", + "rationale": "set", + "steps": [ + { + "html": "Set response.[[request]] to request." + }, + { + "html": "Set response.[[retryPromise]] to null." + }, + { + "html": "Set response.[[complete]] to false." + }, + { + "html": "Set the requestId attribute value of\n response to the value of\n request.[[details]].id." + }, + { + "html": "Set request.[[response]] to response." + } + ] + }, + { + "html": "Let handler be\n request.[[handler]]." + }, + { + "html": "Set the methodName attribute value of\n response to the payment method identifier of handler." + }, + { + "html": "Set the details attribute value of response\n to an object resulting from running the handler's steps to\n respond to a payment request." + }, + { + "html": "If the requestShipping value of\n request.[[options]] is false, then set the\n shippingAddress attribute value of response to\n null. Otherwise:", + "rationale": "let", + "steps": [ + { + "html": "Let shippingAddress be the result of\n create a contactaddress from user-provided input" + }, + { + "html": "Set the shippingAddress attribute value\n of response to shippingAddress." + }, + { + "html": "Set the shippingAddress attribute value\n of request to shippingAddress." + } + ] + }, + { + "html": "If the requestShipping value of\n request.[[options]] is true, then set the\n shippingOption attribute of response to the\n value of the shippingOption attribute of\n request. Otherwise, set it to null." + }, + { + "html": "If the requestPayerName value of\n request.[[options]] is true, then set the\n payerName attribute of response to the payer's\n name provided by the user, or to null if none was provided.\n Otherwise, set it to null." + }, + { + "html": "If the requestPayerEmail value of\n request.[[options]] is true, then set the\n payerEmail attribute of response to the payer's\n email address provided by the user, or to null if none was provided.\n Otherwise, set it to null." + }, + { + "html": "If the requestPayerPhone value of\n request.[[options]] is true, then set the\n payerPhone attribute of response to the payer's\n phone number provided by the user, or to null if none was provided.\n When setting the payerPhone value, the user agent\n SHOULD format the phone number to adhere to [E.164]." + }, + { + "html": "Set request.[[state]] to\n \"closed\"." + }, + { + "html": "If isRetry is true, resolve\n response.[[retryPromise]] with undefined.\n Otherwise, resolve request.[[acceptPromise]]\n with response." + } + ] + }, + { + "name": "user aborts the payment request", + "href": "https://www.w3.org/TR/payment-request/#dfn-user-aborts-the-payment-request", + "html": "The user aborts the\n payment request algorithm runs when the user aborts the payment\n request through the currently interactive user interface. It MUST\n queue a task on the user interaction task source to\n perform the following steps:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let request be the PaymentRequest object\n that the user is interacting with." + }, + { + "html": "If request.[[state]] is not\n \"interactive\", then terminate this algorithm and\n take no further action. The user agent user interface SHOULD\n ensure that this never occurs." + }, + { + "html": "Set request.[[state]] to\n \"closed\"." + }, + { + "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." + }, + { + "html": "Let error be an \"AbortError\" DOMException." + }, + { + "html": "Let response be\n request.[[response]]." + }, + { + "html": "If response is not null:", + "rationale": "set", + "steps": [ + { + "html": "Set response.[[complete]] to true." + }, + { + "html": "Assert: response.[[retryPromise]] is\n not null." + }, + { + "html": "Reject response.[[retryPromise]] with\n error." + } + ] + }, + { + "html": "Otherwise, reject request.[[acceptPromise]]\n with error." + }, + { + "html": "Abort the current user interaction and close down any remaining\n user interface." + } + ] + }, + { + "html": "In the case where a timeout occurs, or the user manually aborts, or\n the payment handler decides to abort this particular payment,\n the user agent MUST run the user aborts the payment request\n algorithm.", + "rationale": ".algorithm", + "steps": [ + { + "html": "Set request.[[updating]] to true." + }, + { + "html": "In parallel, disable the user interface that allows the user\n to accept the payment request. This is to ensure that the payment\n is not accepted until the user interface is updated with any new\n details." + }, + { + "html": "Upon rejection of detailsPromise:", + "rationale": "abort", + "steps": [ + { + "html": "Abort the update with request and an \"AbortError\"\n DOMException." + } + ] + }, + { + "html": "Upon fulfillment of detailsPromise with value value:", + "rationale": "let", + "steps": [ + { + "html": "Let details be the result of\n converting value to a\n PaymentDetailsUpdate dictionary. If this throw\n an exception, abort the update with request and with the\n thrown exception." + }, + { + "html": "Let serializedModifierData be an empty list." + }, + { + "html": "Let selectedShippingOption be null." + }, + { + "html": "Let shippingOptions be an empty\n sequence<PaymentShippingOption>." + }, + { + "html": "Validate and canonicalize the details:", + "rationale": "if", + "steps": [ + { + "html": "If the total member of details\n is present, then:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize total amount\n details.total.amount.\n If an exception is thrown, then abort the update\n with request and that exception." + } + ] + }, + { + "html": "If the displayItems member of\n details is present, then for each item in\n details.displayItems:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize amount\n item.amount. If an exception is\n thrown, then abort the update with request and\n that exception." + } + ] + }, + { + "html": "If the shippingOptions member of\n details is present, and\n request.[[options]].requestShipping\n is true, then:", + "rationale": "let", + "steps": [ + { + "html": "Let seenIDs be an empty set." + }, + { + "html": "For each option in\n details.shippingOptions:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize amount\n option.amount. If an\n exception is thrown, then abort the update\n with request and that exception." + }, + { + "html": "If seenIDs[option.{{PaymentShippingOption/id}]\n exists, then abort the update with request\n and a TypeError." + }, + { + "html": "Append option.id to\n seenIDs." + }, + { + "html": "Append option to shippingOptions." + }, + { + "html": "If option.selected is\n true, then set selectedShippingOption to\n option.id." + } + ] + } + ] + }, + { + "html": "If the modifiers member of\n details is present, then:", + "rationale": "let", + "steps": [ + { + "html": "Let modifiers be the sequence\n details.modifiers." + }, + { + "html": "Let serializedModifierData be an empty list." + }, + { + "html": "For each PaymentDetailsModifier modifier in\n modifiers:", + "rationale": "run", + "steps": [ + { + "html": "Run the steps to validate a payment method\n identifier with\n modifier.supportedMethods.\n If it returns false, then abort the update\n with request and a RangeError exception.\n Optionally, inform the developer that the payment\n method identifier is invalid." + }, + { + "html": "If the total member of\n modifier is present, then:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize total amount\n modifier.total.amount.\n If an exception is thrown, then abort the\n update with request and that exception." + } + ] + }, + { + "html": "If the\n additionalDisplayItems\n member of modifier is present, then for each\n PaymentItem item in\n modifier.additionalDisplayItems:", + "rationale": "check", + "steps": [ + { + "html": "Check and canonicalize amount\n item.amount. If an exception\n is thrown, then abort the update with\n request and that exception." + } + ] + }, + { + "html": "If the data member of\n modifier is missing, let serializedData be null.\n Otherwise, let serializedData be the result of\n serialize\n modifier.data into a\n JSON string. If it throws an exception, then abort\n the update with request and that exception." + }, + { + "html": "Add serializedData to serializedModifierData." + }, + { + "html": "Remove the data member\n of modifier, if it is present." + } + ] + } + ] + } + ] + }, + { + "html": "If the paymentMethodErrors member is\n present and identifier is not null:", + "rationale": "if", + "steps": [ + { + "html": "If required by the specification that defines the pmi,\n then convert\n paymentMethodErrors to an IDL value." + }, + { + "html": "If conversion results in a exception error, \n abort the update with error." + }, + { + "html": "The payment handler SHOULD display an error for\n each relevant erroneous field of\n paymentMethodErrors." + } + ] + }, + { + "html": "Update the PaymentRequest using the new details:", + "rationale": "if", + "steps": [ + { + "html": "If the total member of details\n is present, then:", + "rationale": "set", + "steps": [ + { + "html": "Set\n request.[[details]].total\n to details.total." + } + ] + }, + { + "html": "If the displayItems member of\n details is present, then:", + "rationale": "set", + "steps": [ + { + "html": "Set\n request.[[details]].displayItems\n to details.displayItems." + } + ] + }, + { + "html": "If the shippingOptions member of\n details is present, and\n request.[[options]].requestShipping\n is true, then:", + "rationale": "set", + "steps": [ + { + "html": "Set\n request.[[details]].shippingOptions\n to shippingOptions." + }, + { + "html": "Set the value of request's\n shippingOption attribute to\n selectedShippingOption." + } + ] + }, + { + "html": "If the modifiers member of\n details is present, then:", + "rationale": "set", + "steps": [ + { + "html": "Set\n request.[[details]].modifiers\n to details.modifiers." + }, + { + "html": "Set\n request.[[serializedModifierData]]\n to serializedModifierData." + } + ] + }, + { + "html": "

\n If\n request.[[options]].requestShipping\n is true, and\n request.[[details]].shippingOptions\n is empty, then the developer has signified that there are\n no valid shipping options for the currently-chosen\n shipping address (given by request's\n shippingAddress).\n

\n

\n In this case, the user agent SHOULD display an error\n indicating this, and MAY indicate that the\n currently-chosen shipping address is invalid in some way.\n The user agent SHOULD use the\n error member of details, if it\n is present, to give more information about why there are\n no valid shipping options for that address.\n

\n

\n Further, if\n details[\"shippingAddressErrors\"]\n member is present, the user agent SHOULD display an error\n specifically for each erroneous field of the shipping\n address. This is done by matching each present member of\n the AddressErrors to a corresponding input field in\n the shown user interface.\n

\n

\n Similarly, if details[\"payerErrors\"] member is\n present and request.[[options]]'s\n requestPayerName,\n requestPayerEmail, or\n requestPayerPhone is true, then\n display an error specifically for each erroneous field.\n

\n

\n Likewise, if\n details.paymentMethodErrors is\n present, then display errors specifically for each\n erroneous input field for the particular payment method.\n

" + } + ] + } + ] + }, + { + "html": "Set request.[[updating]] to false." + }, + { + "html": "Update the user interface based on any changed values in\n request. Re-enable user interface elements disabled prior to\n running this algorithm." + } + ] + }, + { + "name": "abort the update", + "href": "https://www.w3.org/TR/payment-request/#dfn-abort-the-update", + "html": "To abort the update with a\n PaymentRequest request and exception exception:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Optionally, show an error message to the user when letting them\n know an error has occurred." + }, + { + "html": "Abort the current user interaction and close down any remaining\n user interface." + }, + { + "html": "Queue a task on the user interaction task source to\n perform the following steps:", + "rationale": "set", + "steps": [ + { + "html": "Set request's payment-relevant browsing context's\n payment request is showing boolean to false." + }, + { + "html": "Set request.[[state]] to\n \"closed\"." + }, + { + "html": "Let response be\n request.[[response]]." + }, + { + "html": "If response is not null, then:", + "rationale": "set", + "steps": [ + { + "html": "Set response.[[complete]] to\n true." + }, + { + "html": "Assert: response.[[retryPromise]]\n is not null." + }, + { + "html": "Reject response.[[retryPromise]]\n with exception." + } + ] + }, + { + "html": "Otherwise, reject\n request.[[acceptPromise]] with\n exception." + }, + { + "html": "Set request.[[updating]] to false." + } + ] + }, + { + "html": "Abort the algorithm." + } + ] + } + ] +} \ No newline at end of file diff --git a/tr/dfns/payment-request-1.1.json b/tr/dfns/payment-request.json similarity index 71% rename from tr/dfns/payment-request-1.1.json rename to tr/dfns/payment-request.json index 676c5cd4550b..c9614aa47255 100644 --- a/tr/dfns/payment-request-1.1.json +++ b/tr/dfns/payment-request.json @@ -1,12 +1,12 @@ { "spec": { "title": "Payment Request API", - "url": "https://www.w3.org/TR/payment-request-1.1/" + "url": "https://www.w3.org/TR/payment-request/" }, "dfns": [ { "id": "dfn-payment-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method", + "href": "https://www.w3.org/TR/payment-request/#dfn-payment-method", "linkingText": [ "payment method" ], @@ -17,7 +17,7 @@ "informative": true, "heading": { "id": "introduction", - "href": "https://www.w3.org/TR/payment-request-1.1/#introduction", + "href": "https://www.w3.org/TR/payment-request/#introduction", "title": "Introduction", "number": "1" }, @@ -25,7 +25,7 @@ }, { "id": "dfn-payment-method-provider", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method-provider", + "href": "https://www.w3.org/TR/payment-request/#dfn-payment-method-provider", "linkingText": [ "payment method provider" ], @@ -36,7 +36,7 @@ "informative": true, "heading": { "id": "introduction", - "href": "https://www.w3.org/TR/payment-request-1.1/#introduction", + "href": "https://www.w3.org/TR/payment-request/#introduction", "title": "Introduction", "number": "1" }, @@ -44,7 +44,7 @@ }, { "id": "dfn-additional-data-type", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-additional-data-type", + "href": "https://www.w3.org/TR/payment-request/#dfn-additional-data-type", "linkingText": [ "additional data type" ], @@ -57,7 +57,7 @@ "informative": true, "heading": { "id": "introduction", - "href": "https://www.w3.org/TR/payment-request-1.1/#introduction", + "href": "https://www.w3.org/TR/payment-request/#introduction", "title": "Introduction", "number": "1" }, @@ -65,7 +65,7 @@ }, { "id": "dfn-steps-to-validate-payment-method-data", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-steps-to-validate-payment-method-data", + "href": "https://www.w3.org/TR/payment-request/#dfn-steps-to-validate-payment-method-data", "linkingText": [ "Steps to validate payment method data" ], @@ -76,7 +76,7 @@ "informative": true, "heading": { "id": "introduction", - "href": "https://www.w3.org/TR/payment-request-1.1/#introduction", + "href": "https://www.w3.org/TR/payment-request/#introduction", "title": "Introduction", "number": "1" }, @@ -84,7 +84,7 @@ }, { "id": "dfn-payment-handler", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-handler", + "href": "https://www.w3.org/TR/payment-request/#dfn-payment-handler", "linkingText": [ "payment handler" ], @@ -95,7 +95,7 @@ "informative": true, "heading": { "id": "introduction", - "href": "https://www.w3.org/TR/payment-request-1.1/#introduction", + "href": "https://www.w3.org/TR/payment-request/#introduction", "title": "Introduction", "number": "1" }, @@ -103,7 +103,7 @@ }, { "id": "dfn-steps-to-check-if-a-payment-can-be-made", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-steps-to-check-if-a-payment-can-be-made", + "href": "https://www.w3.org/TR/payment-request/#dfn-steps-to-check-if-a-payment-can-be-made", "linkingText": [ "Steps to check if a payment can be made" ], @@ -114,7 +114,7 @@ "informative": true, "heading": { "id": "introduction", - "href": "https://www.w3.org/TR/payment-request-1.1/#introduction", + "href": "https://www.w3.org/TR/payment-request/#introduction", "title": "Introduction", "number": "1" }, @@ -122,7 +122,7 @@ }, { "id": "dfn-steps-to-respond-to-a-payment-request", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-steps-to-respond-to-a-payment-request", + "href": "https://www.w3.org/TR/payment-request/#dfn-steps-to-respond-to-a-payment-request", "linkingText": [ "Steps to respond to a payment request" ], @@ -133,7 +133,7 @@ "informative": true, "heading": { "id": "introduction", - "href": "https://www.w3.org/TR/payment-request-1.1/#introduction", + "href": "https://www.w3.org/TR/payment-request/#introduction", "title": "Introduction", "number": "1" }, @@ -141,7 +141,7 @@ }, { "id": "dfn-steps-for-when-a-user-changes-payment-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-steps-for-when-a-user-changes-payment-method", + "href": "https://www.w3.org/TR/payment-request/#dfn-steps-for-when-a-user-changes-payment-method", "linkingText": [ "Steps for when a user changes payment method" ], @@ -152,7 +152,7 @@ "informative": true, "heading": { "id": "introduction", - "href": "https://www.w3.org/TR/payment-request-1.1/#introduction", + "href": "https://www.w3.org/TR/payment-request/#introduction", "title": "Introduction", "number": "1" }, @@ -160,7 +160,7 @@ }, { "id": "dom-paymentrequest", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest", "linkingText": [ "PaymentRequest" ], @@ -171,7 +171,7 @@ "informative": false, "heading": { "id": "paymentrequest-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentrequest-interface", "title": "PaymentRequest interface", "number": "3" }, @@ -179,7 +179,7 @@ }, { "id": "dom-paymentrequest-constructor", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-constructor", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-constructor", "linkingText": [ "constructor()", "constructor(methodData, details)", @@ -198,7 +198,7 @@ "informative": false, "heading": { "id": "paymentrequest-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentrequest-interface", "title": "PaymentRequest interface", "number": "3" }, @@ -206,7 +206,7 @@ }, { "id": "dfn-payment-relevant-browsing-context", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-relevant-browsing-context", + "href": "https://www.w3.org/TR/payment-request/#dfn-payment-relevant-browsing-context", "linkingText": [ "payment-relevant browsing context" ], @@ -217,7 +217,7 @@ "informative": false, "heading": { "id": "paymentrequest-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentrequest-interface", "title": "PaymentRequest interface", "number": "3" }, @@ -225,7 +225,7 @@ }, { "id": "dfn-payment-request-is-showing", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-request-is-showing", + "href": "https://www.w3.org/TR/payment-request/#dfn-payment-request-is-showing", "linkingText": [ "payment request is showing" ], @@ -236,7 +236,7 @@ "informative": false, "heading": { "id": "paymentrequest-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentrequest-interface", "title": "PaymentRequest interface", "number": "3" }, @@ -244,7 +244,7 @@ }, { "id": "dfn-paymentrequest-paymentrequest", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-paymentrequest-paymentrequest", + "href": "https://www.w3.org/TR/payment-request/#dfn-paymentrequest-paymentrequest", "linkingText": [ "PaymentRequest.PaymentRequest()", "PaymentRequest(methodData, details, options)" @@ -256,7 +256,7 @@ "informative": false, "heading": { "id": "constructor", - "href": "https://www.w3.org/TR/payment-request-1.1/#constructor", + "href": "https://www.w3.org/TR/payment-request/#constructor", "title": "Constructor", "number": "3.1" }, @@ -264,7 +264,7 @@ }, { "id": "dom-paymentrequest-id", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-id", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-id", "linkingText": [ "id" ], @@ -279,7 +279,7 @@ "informative": false, "heading": { "id": "id-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#id-attribute", + "href": "https://www.w3.org/TR/payment-request/#id-attribute", "title": "id attribute", "number": "3.2" }, @@ -287,7 +287,7 @@ }, { "id": "dom-paymentrequest-show", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-show", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-show", "linkingText": [ "show()", "show(detailsPromise)" @@ -305,7 +305,7 @@ "informative": false, "heading": { "id": "show-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#show-method", + "href": "https://www.w3.org/TR/payment-request/#show-method", "title": "show() method", "number": "3.3" }, @@ -313,7 +313,7 @@ }, { "id": "dom-paymentrequest-abort", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-abort", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-abort", "linkingText": [ "abort()" ], @@ -330,7 +330,7 @@ "informative": false, "heading": { "id": "abort-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#abort-method", + "href": "https://www.w3.org/TR/payment-request/#abort-method", "title": "abort() method", "number": "3.4" }, @@ -338,7 +338,7 @@ }, { "id": "dom-paymentrequest-canmakepayment", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-canmakepayment", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-canmakepayment", "linkingText": [ "canMakePayment()" ], @@ -355,7 +355,7 @@ "informative": false, "heading": { "id": "canmakepayment-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#canmakepayment-method", + "href": "https://www.w3.org/TR/payment-request/#canmakepayment-method", "title": "canMakePayment() method", "number": "3.5" }, @@ -363,7 +363,7 @@ }, { "id": "dom-paymentrequest-shippingaddress", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-shippingaddress", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-shippingaddress", "linkingText": [ "shippingAddress" ], @@ -378,7 +378,7 @@ "informative": false, "heading": { "id": "shippingaddress-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingaddress-attribute", + "href": "https://www.w3.org/TR/payment-request/#shippingaddress-attribute", "title": "shippingAddress attribute", "number": "3.6" }, @@ -386,7 +386,7 @@ }, { "id": "dom-paymentrequest-shippingtype", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-shippingtype", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-shippingtype", "linkingText": [ "shippingType" ], @@ -401,7 +401,7 @@ "informative": false, "heading": { "id": "shippingtype-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingtype-attribute", + "href": "https://www.w3.org/TR/payment-request/#shippingtype-attribute", "title": "shippingType attribute", "number": "3.7" }, @@ -409,7 +409,7 @@ }, { "id": "dom-paymentrequest-onshippingaddresschange", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-onshippingaddresschange", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-onshippingaddresschange", "linkingText": [ "onshippingaddresschange" ], @@ -424,7 +424,7 @@ "informative": false, "heading": { "id": "onshippingaddresschange-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#onshippingaddresschange-attribute", + "href": "https://www.w3.org/TR/payment-request/#onshippingaddresschange-attribute", "title": "onshippingaddresschange attribute", "number": "3.8" }, @@ -432,7 +432,7 @@ }, { "id": "dom-paymentrequest-shippingoption", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-shippingoption", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-shippingoption", "linkingText": [ "shippingOption" ], @@ -447,7 +447,7 @@ "informative": false, "heading": { "id": "shippingoption-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingoption-attribute", + "href": "https://www.w3.org/TR/payment-request/#shippingoption-attribute", "title": "shippingOption attribute", "number": "3.9" }, @@ -455,7 +455,7 @@ }, { "id": "dom-paymentrequest-onshippingoptionchange", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-onshippingoptionchange", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-onshippingoptionchange", "linkingText": [ "onshippingoptionchange" ], @@ -470,7 +470,7 @@ "informative": false, "heading": { "id": "onshippingoptionchange-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#onshippingoptionchange-attribute", + "href": "https://www.w3.org/TR/payment-request/#onshippingoptionchange-attribute", "title": "onshippingoptionchange attribute", "number": "3.10" }, @@ -478,7 +478,7 @@ }, { "id": "dom-paymentrequest-onpaymentmethodchange", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-onpaymentmethodchange", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequest-onpaymentmethodchange", "linkingText": [ "onpaymentmethodchange" ], @@ -493,7 +493,7 @@ "informative": false, "heading": { "id": "onpaymentmethodchange-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#onpaymentmethodchange-attribute", + "href": "https://www.w3.org/TR/payment-request/#onpaymentmethodchange-attribute", "title": "onpaymentmethodchange attribute", "number": "3.11" }, @@ -501,7 +501,7 @@ }, { "id": "dfn-serializedmethoddata", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-serializedmethoddata", + "href": "https://www.w3.org/TR/payment-request/#dfn-serializedmethoddata", "linkingText": [ "[[serializedMethodData]]" ], @@ -514,7 +514,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -522,7 +522,7 @@ }, { "id": "dfn-serializedmodifierdata", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-serializedmodifierdata", + "href": "https://www.w3.org/TR/payment-request/#dfn-serializedmodifierdata", "linkingText": [ "[[serializedModifierData]]" ], @@ -535,7 +535,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -543,7 +543,7 @@ }, { "id": "dfn-details", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-details", + "href": "https://www.w3.org/TR/payment-request/#dfn-details", "linkingText": [ "[[details]]" ], @@ -556,7 +556,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -564,7 +564,7 @@ }, { "id": "dfn-options", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-options", + "href": "https://www.w3.org/TR/payment-request/#dfn-options", "linkingText": [ "[[options]]" ], @@ -577,7 +577,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -585,7 +585,7 @@ }, { "id": "dfn-state", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-state", + "href": "https://www.w3.org/TR/payment-request/#dfn-state", "linkingText": [ "[[state]]" ], @@ -598,7 +598,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -606,7 +606,7 @@ }, { "id": "dfn-state-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-state-0", + "href": "https://www.w3.org/TR/payment-request/#dfn-state-0", "linkingText": [ "state" ], @@ -619,7 +619,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -627,7 +627,7 @@ }, { "id": "dfn-created", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-created", + "href": "https://www.w3.org/TR/payment-request/#dfn-created", "linkingText": [ "created" ], @@ -640,7 +640,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -648,7 +648,7 @@ }, { "id": "dfn-interactive", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-interactive", + "href": "https://www.w3.org/TR/payment-request/#dfn-interactive", "linkingText": [ "interactive" ], @@ -661,7 +661,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -669,7 +669,7 @@ }, { "id": "dfn-closed", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-closed", + "href": "https://www.w3.org/TR/payment-request/#dfn-closed", "linkingText": [ "closed" ], @@ -682,7 +682,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -690,7 +690,7 @@ }, { "id": "dfn-updating", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-updating", + "href": "https://www.w3.org/TR/payment-request/#dfn-updating", "linkingText": [ "[[updating]]" ], @@ -703,7 +703,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -711,7 +711,7 @@ }, { "id": "dfn-acceptpromise", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-acceptpromise", + "href": "https://www.w3.org/TR/payment-request/#dfn-acceptpromise", "linkingText": [ "[[acceptPromise]]" ], @@ -724,7 +724,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -732,7 +732,7 @@ }, { "id": "dfn-response", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-response", + "href": "https://www.w3.org/TR/payment-request/#dfn-response", "linkingText": [ "[[response]]" ], @@ -745,7 +745,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -753,7 +753,7 @@ }, { "id": "dfn-handler", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-handler", + "href": "https://www.w3.org/TR/payment-request/#dfn-handler", "linkingText": [ "[[handler]]" ], @@ -766,7 +766,7 @@ "informative": false, "heading": { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "title": "Internal Slots", "number": "3.12" }, @@ -774,7 +774,7 @@ }, { "id": "dom-paymentmethoddata", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethoddata", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethoddata", "linkingText": [ "PaymentMethodData" ], @@ -785,7 +785,7 @@ "informative": false, "heading": { "id": "paymentmethoddata-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethoddata-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentmethoddata-dictionary", "title": "PaymentMethodData dictionary", "number": "4" }, @@ -793,7 +793,7 @@ }, { "id": "dom-paymentmethoddata-supportedmethods", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethoddata-supportedmethods", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethoddata-supportedmethods", "linkingText": [ "supportedMethods" ], @@ -806,7 +806,7 @@ "informative": false, "heading": { "id": "paymentmethoddata-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethoddata-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentmethoddata-dictionary", "title": "PaymentMethodData dictionary", "number": "4" }, @@ -814,7 +814,7 @@ }, { "id": "dom-paymentmethoddata-data", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethoddata-data", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethoddata-data", "linkingText": [ "data" ], @@ -827,7 +827,7 @@ "informative": false, "heading": { "id": "paymentmethoddata-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethoddata-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentmethoddata-dictionary", "title": "PaymentMethodData dictionary", "number": "4" }, @@ -835,7 +835,7 @@ }, { "id": "dom-paymentcurrencyamount", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcurrencyamount", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount", "linkingText": [ "PaymentCurrencyAmount" ], @@ -846,7 +846,7 @@ "informative": false, "heading": { "id": "paymentcurrencyamount-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcurrencyamount-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentcurrencyamount-dictionary", "title": "PaymentCurrencyAmount dictionary", "number": "5" }, @@ -854,7 +854,7 @@ }, { "id": "dom-paymentcurrencyamount-currency", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcurrencyamount-currency", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount-currency", "linkingText": [ "currency" ], @@ -867,7 +867,7 @@ "informative": false, "heading": { "id": "paymentcurrencyamount-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcurrencyamount-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentcurrencyamount-dictionary", "title": "PaymentCurrencyAmount dictionary", "number": "5" }, @@ -875,7 +875,7 @@ }, { "id": "dom-paymentcurrencyamount-value", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcurrencyamount-value", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount-value", "linkingText": [ "value" ], @@ -888,7 +888,7 @@ "informative": false, "heading": { "id": "paymentcurrencyamount-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcurrencyamount-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentcurrencyamount-dictionary", "title": "PaymentCurrencyAmount dictionary", "number": "5" }, @@ -896,7 +896,7 @@ }, { "id": "dfn-valid-decimal-monetary-value", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-valid-decimal-monetary-value", + "href": "https://www.w3.org/TR/payment-request/#dfn-valid-decimal-monetary-value", "linkingText": [ "valid decimal monetary value" ], @@ -907,7 +907,7 @@ "informative": false, "heading": { "id": "validity-checkers", - "href": "https://www.w3.org/TR/payment-request-1.1/#validity-checkers", + "href": "https://www.w3.org/TR/payment-request/#validity-checkers", "title": "Validity checkers", "number": "5.1" }, @@ -915,7 +915,7 @@ }, { "id": "dfn-check-and-canonicalize-amount", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-check-and-canonicalize-amount", + "href": "https://www.w3.org/TR/payment-request/#dfn-check-and-canonicalize-amount", "linkingText": [ "check and canonicalize amount" ], @@ -926,7 +926,7 @@ "informative": false, "heading": { "id": "validity-checkers", - "href": "https://www.w3.org/TR/payment-request-1.1/#validity-checkers", + "href": "https://www.w3.org/TR/payment-request/#validity-checkers", "title": "Validity checkers", "number": "5.1" }, @@ -934,7 +934,7 @@ }, { "id": "dfn-check-and-canonicalize-total-amount", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-check-and-canonicalize-total-amount", + "href": "https://www.w3.org/TR/payment-request/#dfn-check-and-canonicalize-total-amount", "linkingText": [ "check and canonicalize total amount" ], @@ -945,7 +945,7 @@ "informative": false, "heading": { "id": "validity-checkers", - "href": "https://www.w3.org/TR/payment-request-1.1/#validity-checkers", + "href": "https://www.w3.org/TR/payment-request/#validity-checkers", "title": "Validity checkers", "number": "5.1" }, @@ -953,7 +953,7 @@ }, { "id": "dom-paymentdetailsbase", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase", "linkingText": [ "PaymentDetailsBase" ], @@ -964,7 +964,7 @@ "informative": false, "heading": { "id": "paymentdetailsbase-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsbase-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsbase-dictionary", "title": "PaymentDetailsBase dictionary", "number": "6.1" }, @@ -972,7 +972,7 @@ }, { "id": "dom-paymentdetailsbase-displayitems", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase-displayitems", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase-displayitems", "linkingText": [ "displayItems" ], @@ -985,7 +985,7 @@ "informative": false, "heading": { "id": "paymentdetailsbase-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsbase-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsbase-dictionary", "title": "PaymentDetailsBase dictionary", "number": "6.1" }, @@ -993,7 +993,7 @@ }, { "id": "dom-paymentdetailsbase-shippingoptions", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase-shippingoptions", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase-shippingoptions", "linkingText": [ "shippingOptions" ], @@ -1006,7 +1006,7 @@ "informative": false, "heading": { "id": "paymentdetailsbase-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsbase-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsbase-dictionary", "title": "PaymentDetailsBase dictionary", "number": "6.1" }, @@ -1014,7 +1014,7 @@ }, { "id": "dom-paymentdetailsbase-modifiers", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase-modifiers", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase-modifiers", "linkingText": [ "modifiers" ], @@ -1027,7 +1027,7 @@ "informative": false, "heading": { "id": "paymentdetailsbase-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsbase-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsbase-dictionary", "title": "PaymentDetailsBase dictionary", "number": "6.1" }, @@ -1035,7 +1035,7 @@ }, { "id": "dom-paymentdetailsinit", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsinit", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsinit", "linkingText": [ "PaymentDetailsInit" ], @@ -1046,7 +1046,7 @@ "informative": false, "heading": { "id": "paymentdetailsinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsinit-dictionary", "title": "PaymentDetailsInit dictionary", "number": "6.2" }, @@ -1054,7 +1054,7 @@ }, { "id": "dom-paymentdetailsinit-id", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsinit-id", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsinit-id", "linkingText": [ "id" ], @@ -1067,7 +1067,7 @@ "informative": false, "heading": { "id": "paymentdetailsinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsinit-dictionary", "title": "PaymentDetailsInit dictionary", "number": "6.2" }, @@ -1075,7 +1075,7 @@ }, { "id": "dom-paymentdetailsinit-total", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsinit-total", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsinit-total", "linkingText": [ "total" ], @@ -1088,7 +1088,7 @@ "informative": false, "heading": { "id": "paymentdetailsinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsinit-dictionary", "title": "PaymentDetailsInit dictionary", "number": "6.2" }, @@ -1096,7 +1096,7 @@ }, { "id": "dom-paymentdetailsupdate", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate", "linkingText": [ "PaymentDetailsUpdate" ], @@ -1107,7 +1107,7 @@ "informative": false, "heading": { "id": "paymentdetailsupdate-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsupdate-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsupdate-dictionary", "title": "PaymentDetailsUpdate dictionary", "number": "6.3" }, @@ -1115,7 +1115,7 @@ }, { "id": "dom-paymentdetailsupdate-error", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-error", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-error", "linkingText": [ "error" ], @@ -1128,7 +1128,7 @@ "informative": false, "heading": { "id": "paymentdetailsupdate-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsupdate-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsupdate-dictionary", "title": "PaymentDetailsUpdate dictionary", "number": "6.3" }, @@ -1136,7 +1136,7 @@ }, { "id": "dom-paymentdetailsupdate-total", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-total", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-total", "linkingText": [ "total" ], @@ -1149,7 +1149,7 @@ "informative": false, "heading": { "id": "paymentdetailsupdate-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsupdate-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsupdate-dictionary", "title": "PaymentDetailsUpdate dictionary", "number": "6.3" }, @@ -1157,7 +1157,7 @@ }, { "id": "dom-paymentdetailsupdate-shippingaddresserrors", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-shippingaddresserrors", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-shippingaddresserrors", "linkingText": [ "shippingAddressErrors" ], @@ -1170,7 +1170,7 @@ "informative": false, "heading": { "id": "paymentdetailsupdate-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsupdate-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsupdate-dictionary", "title": "PaymentDetailsUpdate dictionary", "number": "6.3" }, @@ -1178,7 +1178,7 @@ }, { "id": "dom-paymentdetailsupdate-payererrors", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-payererrors", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-payererrors", "linkingText": [ "payerErrors" ], @@ -1191,7 +1191,7 @@ "informative": false, "heading": { "id": "paymentdetailsupdate-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsupdate-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsupdate-dictionary", "title": "PaymentDetailsUpdate dictionary", "number": "6.3" }, @@ -1199,7 +1199,7 @@ }, { "id": "dom-paymentdetailsupdate-paymentmethoderrors", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-paymentmethoderrors", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-paymentmethoderrors", "linkingText": [ "paymentMethodErrors" ], @@ -1212,7 +1212,7 @@ "informative": false, "heading": { "id": "paymentdetailsupdate-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsupdate-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsupdate-dictionary", "title": "PaymentDetailsUpdate dictionary", "number": "6.3" }, @@ -1220,7 +1220,7 @@ }, { "id": "dom-paymentdetailsmodifier", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier", "linkingText": [ "PaymentDetailsModifier" ], @@ -1231,7 +1231,7 @@ "informative": false, "heading": { "id": "paymentdetailsmodifier-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsmodifier-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsmodifier-dictionary", "title": "PaymentDetailsModifier dictionary", "number": "7" }, @@ -1239,7 +1239,7 @@ }, { "id": "dom-paymentdetailsmodifier-supportedmethods", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-supportedmethods", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-supportedmethods", "linkingText": [ "supportedMethods" ], @@ -1252,7 +1252,7 @@ "informative": false, "heading": { "id": "paymentdetailsmodifier-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsmodifier-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsmodifier-dictionary", "title": "PaymentDetailsModifier dictionary", "number": "7" }, @@ -1260,7 +1260,7 @@ }, { "id": "dom-paymentdetailsmodifier-total", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-total", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-total", "linkingText": [ "total" ], @@ -1273,7 +1273,7 @@ "informative": false, "heading": { "id": "paymentdetailsmodifier-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsmodifier-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsmodifier-dictionary", "title": "PaymentDetailsModifier dictionary", "number": "7" }, @@ -1281,7 +1281,7 @@ }, { "id": "dom-paymentdetailsmodifier-additionaldisplayitems", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-additionaldisplayitems", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-additionaldisplayitems", "linkingText": [ "additionalDisplayItems" ], @@ -1294,7 +1294,7 @@ "informative": false, "heading": { "id": "paymentdetailsmodifier-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsmodifier-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsmodifier-dictionary", "title": "PaymentDetailsModifier dictionary", "number": "7" }, @@ -1302,7 +1302,7 @@ }, { "id": "dom-paymentdetailsmodifier-data", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-data", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-data", "linkingText": [ "data" ], @@ -1315,7 +1315,7 @@ "informative": false, "heading": { "id": "paymentdetailsmodifier-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsmodifier-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsmodifier-dictionary", "title": "PaymentDetailsModifier dictionary", "number": "7" }, @@ -1323,7 +1323,7 @@ }, { "id": "dom-paymentshippingtype", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingtype", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentshippingtype", "linkingText": [ "PaymentShippingType" ], @@ -1334,7 +1334,7 @@ "informative": false, "heading": { "id": "paymentshippingtype-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingtype-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingtype-enum", "title": "PaymentShippingType enum", "number": "8" }, @@ -1342,7 +1342,7 @@ }, { "id": "dom-paymentshippingtype-shipping", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingtype-shipping", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentshippingtype-shipping", "linkingText": [ "shipping" ], @@ -1355,7 +1355,7 @@ "informative": false, "heading": { "id": "paymentshippingtype-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingtype-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingtype-enum", "title": "PaymentShippingType enum", "number": "8" }, @@ -1363,7 +1363,7 @@ }, { "id": "dom-paymentshippingtype-delivery", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingtype-delivery", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentshippingtype-delivery", "linkingText": [ "delivery" ], @@ -1376,7 +1376,7 @@ "informative": false, "heading": { "id": "paymentshippingtype-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingtype-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingtype-enum", "title": "PaymentShippingType enum", "number": "8" }, @@ -1384,7 +1384,7 @@ }, { "id": "dom-paymentshippingtype-pickup", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingtype-pickup", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentshippingtype-pickup", "linkingText": [ "pickup" ], @@ -1397,7 +1397,7 @@ "informative": false, "heading": { "id": "paymentshippingtype-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingtype-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingtype-enum", "title": "PaymentShippingType enum", "number": "8" }, @@ -1405,7 +1405,7 @@ }, { "id": "dom-paymentoptions", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentoptions", "linkingText": [ "PaymentOptions" ], @@ -1416,7 +1416,7 @@ "informative": false, "heading": { "id": "paymentoptions-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentoptions-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary", "title": "PaymentOptions dictionary", "number": "9" }, @@ -1424,7 +1424,7 @@ }, { "id": "dom-paymentoptions-requestbillingaddress", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestbillingaddress", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestbillingaddress", "linkingText": [ "requestBillingAddress" ], @@ -1437,7 +1437,7 @@ "informative": false, "heading": { "id": "paymentoptions-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentoptions-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary", "title": "PaymentOptions dictionary", "number": "9" }, @@ -1445,7 +1445,7 @@ }, { "id": "dom-paymentoptions-requestpayername", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestpayername", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestpayername", "linkingText": [ "requestPayerName" ], @@ -1458,7 +1458,7 @@ "informative": false, "heading": { "id": "paymentoptions-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentoptions-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary", "title": "PaymentOptions dictionary", "number": "9" }, @@ -1466,7 +1466,7 @@ }, { "id": "dom-paymentoptions-requestpayeremail", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestpayeremail", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestpayeremail", "linkingText": [ "requestPayerEmail" ], @@ -1479,7 +1479,7 @@ "informative": false, "heading": { "id": "paymentoptions-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentoptions-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary", "title": "PaymentOptions dictionary", "number": "9" }, @@ -1487,7 +1487,7 @@ }, { "id": "dom-paymentoptions-requestpayerphone", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestpayerphone", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestpayerphone", "linkingText": [ "requestPayerPhone" ], @@ -1500,7 +1500,7 @@ "informative": false, "heading": { "id": "paymentoptions-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentoptions-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary", "title": "PaymentOptions dictionary", "number": "9" }, @@ -1508,7 +1508,7 @@ }, { "id": "dom-paymentoptions-requestshipping", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestshipping", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestshipping", "linkingText": [ "requestShipping" ], @@ -1521,7 +1521,7 @@ "informative": false, "heading": { "id": "paymentoptions-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentoptions-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary", "title": "PaymentOptions dictionary", "number": "9" }, @@ -1529,7 +1529,7 @@ }, { "id": "dom-paymentoptions-shippingtype", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-shippingtype", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentoptions-shippingtype", "linkingText": [ "shippingType" ], @@ -1542,7 +1542,7 @@ "informative": false, "heading": { "id": "paymentoptions-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentoptions-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary", "title": "PaymentOptions dictionary", "number": "9" }, @@ -1550,7 +1550,7 @@ }, { "id": "dom-paymentitem", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentitem", "linkingText": [ "PaymentItem" ], @@ -1561,14 +1561,14 @@ "informative": false, "heading": { "id": "paymentitem-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentitem-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentitem-dictionary", "title": "10. PaymentItem dictionary" }, "definedIn": "heading" }, { "id": "dom-paymentitem-label", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem-label", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentitem-label", "linkingText": [ "label" ], @@ -1581,14 +1581,14 @@ "informative": false, "heading": { "id": "paymentitem-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentitem-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentitem-dictionary", "title": "10. PaymentItem dictionary" }, "definedIn": "dt" }, { "id": "dom-paymentitem-amount", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem-amount", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentitem-amount", "linkingText": [ "amount" ], @@ -1601,14 +1601,14 @@ "informative": false, "heading": { "id": "paymentitem-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentitem-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentitem-dictionary", "title": "10. PaymentItem dictionary" }, "definedIn": "dt" }, { "id": "dom-paymentitem-pending", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem-pending", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentitem-pending", "linkingText": [ "pending" ], @@ -1621,14 +1621,14 @@ "informative": false, "heading": { "id": "paymentitem-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentitem-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentitem-dictionary", "title": "10. PaymentItem dictionary" }, "definedIn": "dt" }, { "id": "dom-paymentcompletedetails", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcompletedetails", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentcompletedetails", "linkingText": [ "PaymentCompleteDetails" ], @@ -1639,14 +1639,14 @@ "informative": false, "heading": { "id": "paymentcompletedetails-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcompletedetails-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentcompletedetails-dictionary", "title": "11. PaymentCompleteDetails dictionary" }, "definedIn": "heading" }, { "id": "dom-paymentcompletedetails-data", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcompletedetails-data", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentcompletedetails-data", "linkingText": [ "data" ], @@ -1659,14 +1659,14 @@ "informative": false, "heading": { "id": "paymentcompletedetails-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcompletedetails-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentcompletedetails-dictionary", "title": "11. PaymentCompleteDetails dictionary" }, "definedIn": "dt" }, { "id": "dom-paymentcomplete", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentcomplete", "linkingText": [ "PaymentComplete" ], @@ -1677,14 +1677,14 @@ "informative": false, "heading": { "id": "paymentcomplete-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcomplete-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentcomplete-enum", "title": "12. PaymentComplete enum" }, "definedIn": "heading" }, { "id": "dom-paymentcomplete-fail", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete-fail", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentcomplete-fail", "linkingText": [ "fail" ], @@ -1697,14 +1697,14 @@ "informative": false, "heading": { "id": "paymentcomplete-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcomplete-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentcomplete-enum", "title": "12. PaymentComplete enum" }, "definedIn": "dt" }, { "id": "dom-paymentcomplete-success", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete-success", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentcomplete-success", "linkingText": [ "success" ], @@ -1717,14 +1717,14 @@ "informative": false, "heading": { "id": "paymentcomplete-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcomplete-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentcomplete-enum", "title": "12. PaymentComplete enum" }, "definedIn": "dt" }, { "id": "dom-paymentcomplete-unknown", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete-unknown", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentcomplete-unknown", "linkingText": [ "unknown" ], @@ -1737,14 +1737,14 @@ "informative": false, "heading": { "id": "paymentcomplete-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcomplete-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentcomplete-enum", "title": "12. PaymentComplete enum" }, "definedIn": "dt" }, { "id": "dom-paymentshippingoption", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption", "linkingText": [ "PaymentShippingOption" ], @@ -1755,14 +1755,14 @@ "informative": false, "heading": { "id": "paymentshippingoption-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingoption-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingoption-dictionary", "title": "13. PaymentShippingOption dictionary" }, "definedIn": "heading" }, { "id": "dom-paymentshippingoption-id", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption-id", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-id", "linkingText": [ "id" ], @@ -1775,14 +1775,14 @@ "informative": false, "heading": { "id": "paymentshippingoption-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingoption-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingoption-dictionary", "title": "13. PaymentShippingOption dictionary" }, "definedIn": "dt" }, { "id": "dom-paymentshippingoption-label", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption-label", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-label", "linkingText": [ "label" ], @@ -1795,14 +1795,14 @@ "informative": false, "heading": { "id": "paymentshippingoption-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingoption-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingoption-dictionary", "title": "13. PaymentShippingOption dictionary" }, "definedIn": "dt" }, { "id": "dom-paymentshippingoption-amount", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption-amount", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-amount", "linkingText": [ "amount" ], @@ -1815,14 +1815,14 @@ "informative": false, "heading": { "id": "paymentshippingoption-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingoption-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingoption-dictionary", "title": "13. PaymentShippingOption dictionary" }, "definedIn": "dt" }, { "id": "dom-paymentshippingoption-selected", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption-selected", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-selected", "linkingText": [ "selected" ], @@ -1835,14 +1835,14 @@ "informative": false, "heading": { "id": "paymentshippingoption-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingoption-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingoption-dictionary", "title": "13. PaymentShippingOption dictionary" }, "definedIn": "dt" }, { "id": "dom-paymentresponse", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse", "linkingText": [ "PaymentResponse" ], @@ -1853,14 +1853,14 @@ "informative": false, "heading": { "id": "paymentresponse-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentresponse-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentresponse-interface", "title": "14. PaymentResponse interface" }, "definedIn": "heading" }, { "id": "dom-paymentresponse-retry", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-retry", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-retry", "linkingText": [ "retry()", "retry(errorFields)" @@ -1878,7 +1878,7 @@ "informative": false, "heading": { "id": "retry-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#retry-method", + "href": "https://www.w3.org/TR/payment-request/#retry-method", "title": "retry() method", "number": "14.1" }, @@ -1886,7 +1886,7 @@ }, { "id": "dom-paymentvalidationerrors", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors", "linkingText": [ "PaymentValidationErrors" ], @@ -1897,7 +1897,7 @@ "informative": false, "heading": { "id": "paymentvalidationerrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentvalidationerrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentvalidationerrors-dictionary", "title": "PaymentValidationErrors dictionary", "number": "14.1.1" }, @@ -1905,7 +1905,7 @@ }, { "id": "dom-paymentvalidationerrors-payer", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-payer", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-payer", "linkingText": [ "payer" ], @@ -1918,7 +1918,7 @@ "informative": false, "heading": { "id": "paymentvalidationerrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentvalidationerrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentvalidationerrors-dictionary", "title": "PaymentValidationErrors dictionary", "number": "14.1.1" }, @@ -1926,7 +1926,7 @@ }, { "id": "dom-paymentvalidationerrors-shippingaddress", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-shippingaddress", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-shippingaddress", "linkingText": [ "shippingAddress" ], @@ -1939,7 +1939,7 @@ "informative": false, "heading": { "id": "paymentvalidationerrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentvalidationerrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentvalidationerrors-dictionary", "title": "PaymentValidationErrors dictionary", "number": "14.1.1" }, @@ -1947,7 +1947,7 @@ }, { "id": "dom-paymentvalidationerrors-error", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-error", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-error", "linkingText": [ "error" ], @@ -1960,7 +1960,7 @@ "informative": false, "heading": { "id": "paymentvalidationerrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentvalidationerrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentvalidationerrors-dictionary", "title": "PaymentValidationErrors dictionary", "number": "14.1.1" }, @@ -1968,7 +1968,7 @@ }, { "id": "dom-paymentvalidationerrors-paymentmethod", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-paymentmethod", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-paymentmethod", "linkingText": [ "paymentMethod" ], @@ -1981,7 +1981,7 @@ "informative": false, "heading": { "id": "paymentvalidationerrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentvalidationerrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentvalidationerrors-dictionary", "title": "PaymentValidationErrors dictionary", "number": "14.1.1" }, @@ -1989,7 +1989,7 @@ }, { "id": "dom-payererrors", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-payererrors", + "href": "https://www.w3.org/TR/payment-request/#dom-payererrors", "linkingText": [ "PayerErrors" ], @@ -2000,7 +2000,7 @@ "informative": false, "heading": { "id": "payererrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#payererrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#payererrors-dictionary", "title": "PayerErrors dictionary", "number": "14.1.2" }, @@ -2008,7 +2008,7 @@ }, { "id": "dfn-payer-details", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payer-details", + "href": "https://www.w3.org/TR/payment-request/#dfn-payer-details", "linkingText": [ "Payer details" ], @@ -2019,7 +2019,7 @@ "informative": false, "heading": { "id": "payererrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#payererrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#payererrors-dictionary", "title": "PayerErrors dictionary", "number": "14.1.2" }, @@ -2027,7 +2027,7 @@ }, { "id": "dom-payererrors-email", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-payererrors-email", + "href": "https://www.w3.org/TR/payment-request/#dom-payererrors-email", "linkingText": [ "email" ], @@ -2040,7 +2040,7 @@ "informative": false, "heading": { "id": "payererrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#payererrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#payererrors-dictionary", "title": "PayerErrors dictionary", "number": "14.1.2" }, @@ -2048,7 +2048,7 @@ }, { "id": "dom-payererrors-name", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-payererrors-name", + "href": "https://www.w3.org/TR/payment-request/#dom-payererrors-name", "linkingText": [ "name" ], @@ -2061,7 +2061,7 @@ "informative": false, "heading": { "id": "payererrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#payererrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#payererrors-dictionary", "title": "PayerErrors dictionary", "number": "14.1.2" }, @@ -2069,7 +2069,7 @@ }, { "id": "dom-payererrors-phone", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-payererrors-phone", + "href": "https://www.w3.org/TR/payment-request/#dom-payererrors-phone", "linkingText": [ "phone" ], @@ -2082,7 +2082,7 @@ "informative": false, "heading": { "id": "payererrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#payererrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#payererrors-dictionary", "title": "PayerErrors dictionary", "number": "14.1.2" }, @@ -2090,7 +2090,7 @@ }, { "id": "dom-paymentresponse-methodname", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-methodname", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-methodname", "linkingText": [ "methodName" ], @@ -2105,7 +2105,7 @@ "informative": false, "heading": { "id": "methodname-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#methodname-attribute", + "href": "https://www.w3.org/TR/payment-request/#methodname-attribute", "title": "methodName attribute", "number": "14.2" }, @@ -2113,7 +2113,7 @@ }, { "id": "dom-paymentresponse-details", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-details", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-details", "linkingText": [ "details" ], @@ -2128,7 +2128,7 @@ "informative": false, "heading": { "id": "details-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#details-attribute", + "href": "https://www.w3.org/TR/payment-request/#details-attribute", "title": "details attribute", "number": "14.3" }, @@ -2136,7 +2136,7 @@ }, { "id": "dom-paymentresponse-shippingaddress", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-shippingaddress", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-shippingaddress", "linkingText": [ "shippingAddress" ], @@ -2151,7 +2151,7 @@ "informative": false, "heading": { "id": "shippingaddress-attribute-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingaddress-attribute-0", + "href": "https://www.w3.org/TR/payment-request/#shippingaddress-attribute-0", "title": "shippingAddress attribute", "number": "14.4" }, @@ -2159,7 +2159,7 @@ }, { "id": "dom-paymentresponse-shippingoption", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-shippingoption", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-shippingoption", "linkingText": [ "shippingOption" ], @@ -2174,7 +2174,7 @@ "informative": false, "heading": { "id": "shippingoption-attribute-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingoption-attribute-0", + "href": "https://www.w3.org/TR/payment-request/#shippingoption-attribute-0", "title": "shippingOption attribute", "number": "14.5" }, @@ -2182,7 +2182,7 @@ }, { "id": "dom-paymentresponse-payername", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-payername", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-payername", "linkingText": [ "payerName" ], @@ -2197,7 +2197,7 @@ "informative": false, "heading": { "id": "payername-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#payername-attribute", + "href": "https://www.w3.org/TR/payment-request/#payername-attribute", "title": "payerName attribute", "number": "14.6" }, @@ -2205,7 +2205,7 @@ }, { "id": "dom-paymentresponse-payeremail", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-payeremail", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-payeremail", "linkingText": [ "payerEmail" ], @@ -2220,7 +2220,7 @@ "informative": false, "heading": { "id": "payeremail-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#payeremail-attribute", + "href": "https://www.w3.org/TR/payment-request/#payeremail-attribute", "title": "payerEmail attribute", "number": "14.7" }, @@ -2228,7 +2228,7 @@ }, { "id": "dom-paymentresponse-payerphone", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-payerphone", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-payerphone", "linkingText": [ "payerPhone" ], @@ -2243,7 +2243,7 @@ "informative": false, "heading": { "id": "payerphone-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#payerphone-attribute", + "href": "https://www.w3.org/TR/payment-request/#payerphone-attribute", "title": "payerPhone attribute", "number": "14.8" }, @@ -2251,7 +2251,7 @@ }, { "id": "dom-paymentresponse-requestid", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-requestid", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-requestid", "linkingText": [ "requestId" ], @@ -2266,7 +2266,7 @@ "informative": false, "heading": { "id": "requestid-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#requestid-attribute", + "href": "https://www.w3.org/TR/payment-request/#requestid-attribute", "title": "requestId attribute", "number": "14.9" }, @@ -2274,7 +2274,7 @@ }, { "id": "dom-paymentresponse-complete", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-complete", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-complete", "linkingText": [ "complete()", "complete(result)", @@ -2293,7 +2293,7 @@ "informative": false, "heading": { "id": "complete-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#complete-method", + "href": "https://www.w3.org/TR/payment-request/#complete-method", "title": "complete() method", "number": "14.10" }, @@ -2301,7 +2301,7 @@ }, { "id": "dom-paymentresponse-onpayerdetailchange", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-onpayerdetailchange", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentresponse-onpayerdetailchange", "linkingText": [ "onpayerdetailchange" ], @@ -2316,7 +2316,7 @@ "informative": false, "heading": { "id": "onpayerdetailchange-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#onpayerdetailchange-attribute", + "href": "https://www.w3.org/TR/payment-request/#onpayerdetailchange-attribute", "title": "onpayerdetailchange attribute", "number": "14.11" }, @@ -2324,7 +2324,7 @@ }, { "id": "dfn-complete", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-complete", + "href": "https://www.w3.org/TR/payment-request/#dfn-complete", "linkingText": [ "[[complete]]" ], @@ -2337,7 +2337,7 @@ "informative": false, "heading": { "id": "internal-slots-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots-0", + "href": "https://www.w3.org/TR/payment-request/#internal-slots-0", "title": "Internal Slots", "number": "14.12" }, @@ -2345,7 +2345,7 @@ }, { "id": "dfn-request", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-request", + "href": "https://www.w3.org/TR/payment-request/#dfn-request", "linkingText": [ "[[request]]" ], @@ -2358,7 +2358,7 @@ "informative": false, "heading": { "id": "internal-slots-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots-0", + "href": "https://www.w3.org/TR/payment-request/#internal-slots-0", "title": "Internal Slots", "number": "14.12" }, @@ -2366,7 +2366,7 @@ }, { "id": "dfn-retrypromise", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-retrypromise", + "href": "https://www.w3.org/TR/payment-request/#dfn-retrypromise", "linkingText": [ "[[retryPromise]]" ], @@ -2379,7 +2379,7 @@ "informative": false, "heading": { "id": "internal-slots-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots-0", + "href": "https://www.w3.org/TR/payment-request/#internal-slots-0", "title": "Internal Slots", "number": "14.12" }, @@ -2387,7 +2387,7 @@ }, { "id": "dfn-shipping-address", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-shipping-address", + "href": "https://www.w3.org/TR/payment-request/#dfn-shipping-address", "linkingText": [ "shipping address" ], @@ -2398,14 +2398,14 @@ "informative": false, "heading": { "id": "shipping-and-billing-addresses", - "href": "https://www.w3.org/TR/payment-request-1.1/#shipping-and-billing-addresses", + "href": "https://www.w3.org/TR/payment-request/#shipping-and-billing-addresses", "title": "15. Shipping and billing addresses" }, "definedIn": "prose" }, { "id": "dfn-billing-address", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-billing-address", + "href": "https://www.w3.org/TR/payment-request/#dfn-billing-address", "linkingText": [ "billing address" ], @@ -2416,14 +2416,14 @@ "informative": false, "heading": { "id": "shipping-and-billing-addresses", - "href": "https://www.w3.org/TR/payment-request-1.1/#shipping-and-billing-addresses", + "href": "https://www.w3.org/TR/payment-request/#shipping-and-billing-addresses", "title": "15. Shipping and billing addresses" }, "definedIn": "prose" }, { "id": "dom-addresserrors", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors", "linkingText": [ "AddressErrors" ], @@ -2434,7 +2434,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2442,7 +2442,7 @@ }, { "id": "dom-addresserrors-addressline", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-addressline", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-addressline", "linkingText": [ "addressLine" ], @@ -2455,7 +2455,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2463,7 +2463,7 @@ }, { "id": "dom-addresserrors-city", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-city", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-city", "linkingText": [ "city" ], @@ -2476,7 +2476,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2484,7 +2484,7 @@ }, { "id": "dom-addresserrors-country", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-country", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-country", "linkingText": [ "country" ], @@ -2497,7 +2497,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2505,7 +2505,7 @@ }, { "id": "dom-addresserrors-dependentlocality", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-dependentlocality", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-dependentlocality", "linkingText": [ "dependentLocality" ], @@ -2518,7 +2518,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2526,7 +2526,7 @@ }, { "id": "dom-addresserrors-organization", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-organization", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-organization", "linkingText": [ "organization" ], @@ -2539,7 +2539,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2547,7 +2547,7 @@ }, { "id": "dom-addresserrors-phone", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-phone", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-phone", "linkingText": [ "phone" ], @@ -2560,7 +2560,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2568,7 +2568,7 @@ }, { "id": "dom-addresserrors-postalcode", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-postalcode", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-postalcode", "linkingText": [ "postalCode" ], @@ -2581,7 +2581,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2589,7 +2589,7 @@ }, { "id": "dom-addresserrors-recipient", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-recipient", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-recipient", "linkingText": [ "recipient" ], @@ -2602,7 +2602,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2610,7 +2610,7 @@ }, { "id": "dom-addresserrors-region", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-region", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-region", "linkingText": [ "region" ], @@ -2623,7 +2623,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2631,7 +2631,7 @@ }, { "id": "dom-addresserrors-sortingcode", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-sortingcode", + "href": "https://www.w3.org/TR/payment-request/#dom-addresserrors-sortingcode", "linkingText": [ "sortingCode" ], @@ -2644,7 +2644,7 @@ "informative": false, "heading": { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "title": "AddressErrors dictionary", "number": "15.1" }, @@ -2652,7 +2652,7 @@ }, { "id": "dfn-payment", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payment", + "href": "https://www.w3.org/TR/payment-request/#dfn-payment", "linkingText": [ "\"payment\"" ], @@ -2663,14 +2663,14 @@ "informative": false, "heading": { "id": "permissions-policy", - "href": "https://www.w3.org/TR/payment-request-1.1/#permissions-policy", + "href": "https://www.w3.org/TR/payment-request/#permissions-policy", "title": "16. Permissions Policy integration" }, "definedIn": "prose" }, { "id": "dfn-shippingaddresschange", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-shippingaddresschange", + "href": "https://www.w3.org/TR/payment-request/#dfn-shippingaddresschange", "linkingText": [ "shippingaddresschange" ], @@ -2681,7 +2681,7 @@ "informative": true, "heading": { "id": "summary", - "href": "https://www.w3.org/TR/payment-request-1.1/#summary", + "href": "https://www.w3.org/TR/payment-request/#summary", "title": "Summary", "number": "17.1" }, @@ -2689,7 +2689,7 @@ }, { "id": "dfn-shippingoptionchange", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-shippingoptionchange", + "href": "https://www.w3.org/TR/payment-request/#dfn-shippingoptionchange", "linkingText": [ "shippingoptionchange" ], @@ -2700,7 +2700,7 @@ "informative": true, "heading": { "id": "summary", - "href": "https://www.w3.org/TR/payment-request-1.1/#summary", + "href": "https://www.w3.org/TR/payment-request/#summary", "title": "Summary", "number": "17.1" }, @@ -2708,7 +2708,7 @@ }, { "id": "dfn-payerdetailchange", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payerdetailchange", + "href": "https://www.w3.org/TR/payment-request/#dfn-payerdetailchange", "linkingText": [ "payerdetailchange" ], @@ -2719,7 +2719,7 @@ "informative": true, "heading": { "id": "summary", - "href": "https://www.w3.org/TR/payment-request-1.1/#summary", + "href": "https://www.w3.org/TR/payment-request/#summary", "title": "Summary", "number": "17.1" }, @@ -2727,7 +2727,7 @@ }, { "id": "dfn-paymentmethodchange", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-paymentmethodchange", + "href": "https://www.w3.org/TR/payment-request/#dfn-paymentmethodchange", "linkingText": [ "paymentmethodchange" ], @@ -2738,7 +2738,7 @@ "informative": true, "heading": { "id": "summary", - "href": "https://www.w3.org/TR/payment-request-1.1/#summary", + "href": "https://www.w3.org/TR/payment-request/#summary", "title": "Summary", "number": "17.1" }, @@ -2746,7 +2746,7 @@ }, { "id": "dom-paymentmethodchangeevent", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent", "linkingText": [ "PaymentMethodChangeEvent" ], @@ -2757,7 +2757,7 @@ "informative": false, "heading": { "id": "paymentmethodchangeevent-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeevent-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentmethodchangeevent-interface", "title": "PaymentMethodChangeEvent interface", "number": "17.2" }, @@ -2765,7 +2765,7 @@ }, { "id": "dom-paymentmethodchangeevent-constructor", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-constructor", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-constructor", "linkingText": [ "constructor()", "constructor(type)", @@ -2784,7 +2784,7 @@ "informative": false, "heading": { "id": "paymentmethodchangeevent-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeevent-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentmethodchangeevent-interface", "title": "PaymentMethodChangeEvent interface", "number": "17.2" }, @@ -2792,7 +2792,7 @@ }, { "id": "dom-paymentmethodchangeevent-methoddetails", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-methoddetails", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-methoddetails", "linkingText": [ "methodDetails" ], @@ -2807,7 +2807,7 @@ "informative": false, "heading": { "id": "methoddetails-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#methoddetails-attribute", + "href": "https://www.w3.org/TR/payment-request/#methoddetails-attribute", "title": "methodDetails attribute", "number": "17.2.1" }, @@ -2815,7 +2815,7 @@ }, { "id": "dom-paymentmethodchangeevent-methodname", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-methodname", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-methodname", "linkingText": [ "methodName" ], @@ -2830,7 +2830,7 @@ "informative": false, "heading": { "id": "methodname-attribute-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#methodname-attribute-0", + "href": "https://www.w3.org/TR/payment-request/#methodname-attribute-0", "title": "methodName attribute", "number": "17.2.2" }, @@ -2838,7 +2838,7 @@ }, { "id": "dom-paymentmethodchangeeventinit", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeeventinit", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeeventinit", "linkingText": [ "PaymentMethodChangeEventInit" ], @@ -2849,7 +2849,7 @@ "informative": false, "heading": { "id": "paymentmethodchangeeventinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeeventinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentmethodchangeeventinit-dictionary", "title": "PaymentMethodChangeEventInit dictionary", "number": "17.2.3" }, @@ -2857,7 +2857,7 @@ }, { "id": "dom-paymentmethodchangeeventinit-methodname", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeeventinit-methodname", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeeventinit-methodname", "linkingText": [ "methodName" ], @@ -2870,7 +2870,7 @@ "informative": false, "heading": { "id": "paymentmethodchangeeventinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeeventinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentmethodchangeeventinit-dictionary", "title": "PaymentMethodChangeEventInit dictionary", "number": "17.2.3" }, @@ -2878,7 +2878,7 @@ }, { "id": "dom-paymentmethodchangeeventinit-methoddetails", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeeventinit-methoddetails", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeeventinit-methoddetails", "linkingText": [ "methodDetails" ], @@ -2891,7 +2891,7 @@ "informative": false, "heading": { "id": "paymentmethodchangeeventinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeeventinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentmethodchangeeventinit-dictionary", "title": "PaymentMethodChangeEventInit dictionary", "number": "17.2.3" }, @@ -2899,7 +2899,7 @@ }, { "id": "dom-paymentrequestupdateevent", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent", "linkingText": [ "PaymentRequestUpdateEvent" ], @@ -2910,7 +2910,7 @@ "informative": false, "heading": { "id": "paymentrequestupdateevent-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequestupdateevent-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentrequestupdateevent-interface", "title": "PaymentRequestUpdateEvent interface", "number": "17.3" }, @@ -2918,7 +2918,7 @@ }, { "id": "dom-paymentrequestupdateevent-constructor", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-constructor", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-constructor", "linkingText": [ "PaymentRequestUpdateEvent.PaymentRequestUpdateEvent()", "Constructor", @@ -2939,7 +2939,7 @@ "informative": false, "heading": { "id": "constructor-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#constructor-0", + "href": "https://www.w3.org/TR/payment-request/#constructor-0", "title": "Constructor", "number": "17.3.1" }, @@ -2947,7 +2947,7 @@ }, { "id": "dom-paymentrequestupdateevent-updatewith", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-updatewith", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-updatewith", "linkingText": [ "updateWith()", "updateWith(detailsPromise)" @@ -2965,7 +2965,7 @@ "informative": false, "heading": { "id": "updatewith-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#updatewith-method", + "href": "https://www.w3.org/TR/payment-request/#updatewith-method", "title": "updateWith() method", "number": "17.3.2" }, @@ -2973,7 +2973,7 @@ }, { "id": "dfn-waitforupdate", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-waitforupdate", + "href": "https://www.w3.org/TR/payment-request/#dfn-waitforupdate", "linkingText": [ "[[waitForUpdate]]" ], @@ -2986,7 +2986,7 @@ "informative": false, "heading": { "id": "internal-slots-1", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots-1", + "href": "https://www.w3.org/TR/payment-request/#internal-slots-1", "title": "Internal Slots", "number": "17.3.3" }, @@ -2994,7 +2994,7 @@ }, { "id": "dom-paymentrequestupdateeventinit", - "href": "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateeventinit", + "href": "https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateeventinit", "linkingText": [ "PaymentRequestUpdateEventInit" ], @@ -3005,7 +3005,7 @@ "informative": false, "heading": { "id": "paymentrequestupdateeventinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequestupdateeventinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentrequestupdateeventinit-dictionary", "title": "PaymentRequestUpdateEventInit dictionary", "number": "17.3.4" }, @@ -3013,7 +3013,7 @@ }, { "id": "dfn-can-make-payment-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-can-make-payment-algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-can-make-payment-algorithm", "linkingText": [ "can make payment algorithm" ], @@ -3024,7 +3024,7 @@ "informative": false, "heading": { "id": "can-make-payment-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#can-make-payment-algorithm", + "href": "https://www.w3.org/TR/payment-request/#can-make-payment-algorithm", "title": "Can make payment algorithm", "number": "18.1" }, @@ -3032,7 +3032,7 @@ }, { "id": "dfn-shipping-address-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-shipping-address-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-shipping-address-changed-algorithm", "linkingText": [ "shipping address changed algorithm" ], @@ -3043,7 +3043,7 @@ "informative": false, "heading": { "id": "shipping-address-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#shipping-address-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#shipping-address-changed-algorithm", "title": "Shipping address changed algorithm", "number": "18.2" }, @@ -3051,7 +3051,7 @@ }, { "id": "dfn-shipping-option-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-shipping-option-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-shipping-option-changed-algorithm", "linkingText": [ "shipping option changed algorithm" ], @@ -3062,7 +3062,7 @@ "informative": false, "heading": { "id": "shipping-option-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#shipping-option-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#shipping-option-changed-algorithm", "title": "Shipping option changed algorithm", "number": "18.3" }, @@ -3070,7 +3070,7 @@ }, { "id": "dfn-payment-method-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-payment-method-changed-algorithm", "linkingText": [ "payment method changed algorithm" ], @@ -3083,7 +3083,7 @@ "informative": false, "heading": { "id": "payment-method-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#payment-method-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#payment-method-changed-algorithm", "title": "Payment method changed algorithm", "number": "18.4" }, @@ -3091,7 +3091,7 @@ }, { "id": "dfn-paymentrequest-updated-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-paymentrequest-updated-algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-paymentrequest-updated-algorithm", "linkingText": [ "PaymentRequest updated algorithm" ], @@ -3102,7 +3102,7 @@ "informative": false, "heading": { "id": "paymentrequest-updated-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-updated-algorithm", + "href": "https://www.w3.org/TR/payment-request/#paymentrequest-updated-algorithm", "title": "PaymentRequest updated algorithm", "number": "18.5" }, @@ -3110,7 +3110,7 @@ }, { "id": "dfn-payer-detail-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-payer-detail-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-payer-detail-changed-algorithm", "linkingText": [ "payer detail changed algorithm" ], @@ -3121,7 +3121,7 @@ "informative": false, "heading": { "id": "payer-detail-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#payer-detail-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#payer-detail-changed-algorithm", "title": "Payer detail changed algorithm", "number": "18.6" }, @@ -3129,7 +3129,7 @@ }, { "id": "dfn-user-accepts-the-payment-request-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-user-accepts-the-payment-request-algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-user-accepts-the-payment-request-algorithm", "linkingText": [ "user accepts the payment request algorithm", "user accepts the payment request" @@ -3143,7 +3143,7 @@ "informative": false, "heading": { "id": "user-accepts-the-payment-request-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#user-accepts-the-payment-request-algorithm", + "href": "https://www.w3.org/TR/payment-request/#user-accepts-the-payment-request-algorithm", "title": "User accepts the payment request algorithm", "number": "18.7" }, @@ -3151,7 +3151,7 @@ }, { "id": "dfn-user-aborts-the-payment-request", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-user-aborts-the-payment-request", + "href": "https://www.w3.org/TR/payment-request/#dfn-user-aborts-the-payment-request", "linkingText": [ "user aborts the payment request", "user aborts the payment request algorithm" @@ -3163,7 +3163,7 @@ "informative": false, "heading": { "id": "user-aborts-the-payment-request-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#user-aborts-the-payment-request-algorithm", + "href": "https://www.w3.org/TR/payment-request/#user-aborts-the-payment-request-algorithm", "title": "User aborts the payment request algorithm", "number": "18.8" }, @@ -3171,7 +3171,7 @@ }, { "id": "dfn-update-a-paymentrequest-s-details-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-update-a-paymentrequest-s-details-algorithm", + "href": "https://www.w3.org/TR/payment-request/#dfn-update-a-paymentrequest-s-details-algorithm", "linkingText": [ "update a PaymentRequest's details algorithm" ], @@ -3182,7 +3182,7 @@ "informative": false, "heading": { "id": "update-a-paymentrequest-s-details-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#update-a-paymentrequest-s-details-algorithm", + "href": "https://www.w3.org/TR/payment-request/#update-a-paymentrequest-s-details-algorithm", "title": "Update a PaymentRequest's details algorithm", "number": "18.9" }, @@ -3190,7 +3190,7 @@ }, { "id": "dfn-abort-the-update", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-abort-the-update", + "href": "https://www.w3.org/TR/payment-request/#dfn-abort-the-update", "linkingText": [ "abort the update" ], @@ -3201,7 +3201,7 @@ "informative": false, "heading": { "id": "abort-the-update", - "href": "https://www.w3.org/TR/payment-request-1.1/#abort-the-update", + "href": "https://www.w3.org/TR/payment-request/#abort-the-update", "title": "Abort the update", "number": "18.9.1" }, @@ -3209,7 +3209,7 @@ }, { "id": "dfn-user-agent", - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-user-agent", + "href": "https://www.w3.org/TR/payment-request/#dfn-user-agent", "linkingText": [ "user agent" ], @@ -3220,7 +3220,7 @@ "informative": false, "heading": { "id": "conformance", - "href": "https://www.w3.org/TR/payment-request-1.1/#conformance", + "href": "https://www.w3.org/TR/payment-request/#conformance", "title": "22. Conformance" }, "definedIn": "prose" diff --git a/tr/events/payment-request-1.1.json b/tr/events/payment-request.json similarity index 76% rename from tr/events/payment-request-1.1.json rename to tr/events/payment-request.json index 664fc9419cbf..19e8aef88363 100644 --- a/tr/events/payment-request-1.1.json +++ b/tr/events/payment-request.json @@ -1,15 +1,15 @@ { "spec": { "title": "Payment Request API", - "url": "https://www.w3.org/TR/payment-request-1.1/" + "url": "https://www.w3.org/TR/payment-request/" }, "events": [ { "src": { "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/payment-request-1.1/#payment-method-changed-algorithm" + "href": "https://www.w3.org/TR/payment-request/#payment-method-changed-algorithm" }, - "href": "https://www.w3.org/TR/payment-request-1.1/#dfn-paymentmethodchange", + "href": "https://www.w3.org/TR/payment-request/#dfn-paymentmethodchange", "type": "paymentmethodchange", "targets": [ "PaymentRequest" diff --git a/tr/headings/eme-initdata-keyids.json b/tr/headings/eme-initdata-keyids.json index 367f92e9d1e3..370f24bc9552 100644 --- a/tr/headings/eme-initdata-keyids.json +++ b/tr/headings/eme-initdata-keyids.json @@ -50,13 +50,6 @@ "level": 3, "title": "Normative references", "number": "A.1" - }, - { - "id": "informative-references", - "href": "https://www.w3.org/TR/eme-initdata-keyids/#informative-references", - "level": 3, - "title": "Informative references", - "number": "A.2" } ] } \ No newline at end of file diff --git a/tr/headings/payment-request-1.1.json b/tr/headings/payment-request.json similarity index 61% rename from tr/headings/payment-request-1.1.json rename to tr/headings/payment-request.json index 92b5b23b275d..782027fc75f3 100644 --- a/tr/headings/payment-request-1.1.json +++ b/tr/headings/payment-request.json @@ -1,690 +1,690 @@ { "spec": { "title": "Payment Request API", - "url": "https://www.w3.org/TR/payment-request-1.1/" + "url": "https://www.w3.org/TR/payment-request/" }, "headings": [ { "id": "title", - "href": "https://www.w3.org/TR/payment-request-1.1/#title", + "href": "https://www.w3.org/TR/payment-request/#title", "level": 1, "title": "Payment Request API" }, { "id": "toc", - "href": "https://www.w3.org/TR/payment-request-1.1/#toc", + "href": "https://www.w3.org/TR/payment-request/#toc", "level": 2, "title": "Table of Contents" }, { "id": "introduction", - "href": "https://www.w3.org/TR/payment-request-1.1/#introduction", + "href": "https://www.w3.org/TR/payment-request/#introduction", "level": 2, "title": "Introduction", "number": "1" }, { "id": "goals", - "href": "https://www.w3.org/TR/payment-request-1.1/#goals", + "href": "https://www.w3.org/TR/payment-request/#goals", "level": 3, "title": "Goals and scope", "number": "1.1" }, { "id": "examples-of-usage", - "href": "https://www.w3.org/TR/payment-request-1.1/#examples-of-usage", + "href": "https://www.w3.org/TR/payment-request/#examples-of-usage", "level": 2, "title": "Examples of usage", "number": "2" }, { "id": "declaring-multiple-ways-of-paying", - "href": "https://www.w3.org/TR/payment-request-1.1/#declaring-multiple-ways-of-paying", + "href": "https://www.w3.org/TR/payment-request/#declaring-multiple-ways-of-paying", "level": 3, "title": "Declaring multiple ways of paying", "number": "2.1" }, { "id": "describing-what-is-being-paid-for", - "href": "https://www.w3.org/TR/payment-request-1.1/#describing-what-is-being-paid-for", + "href": "https://www.w3.org/TR/payment-request/#describing-what-is-being-paid-for", "level": 3, "title": "Describing what is being paid for", "number": "2.2" }, { "id": "adding-shipping-options", - "href": "https://www.w3.org/TR/payment-request-1.1/#adding-shipping-options", + "href": "https://www.w3.org/TR/payment-request/#adding-shipping-options", "level": 3, "title": "Adding shipping options", "number": "2.3" }, { "id": "conditional-modifications-to-payment-request", - "href": "https://www.w3.org/TR/payment-request-1.1/#conditional-modifications-to-payment-request", + "href": "https://www.w3.org/TR/payment-request/#conditional-modifications-to-payment-request", "level": 3, "title": "Conditional modifications to payment request", "number": "2.4" }, { "id": "requesting-specific-information-from-the-end-user", - "href": "https://www.w3.org/TR/payment-request-1.1/#requesting-specific-information-from-the-end-user", + "href": "https://www.w3.org/TR/payment-request/#requesting-specific-information-from-the-end-user", "level": 3, "title": "Requesting specific information from the end user", "number": "2.5" }, { "id": "constructing-a-paymentrequest", - "href": "https://www.w3.org/TR/payment-request-1.1/#constructing-a-paymentrequest", + "href": "https://www.w3.org/TR/payment-request/#constructing-a-paymentrequest", "level": 3, "title": "Constructing a PaymentRequest", "number": "2.6" }, { "id": "handling-events-and-updating-the-payment-request", - "href": "https://www.w3.org/TR/payment-request-1.1/#handling-events-and-updating-the-payment-request", + "href": "https://www.w3.org/TR/payment-request/#handling-events-and-updating-the-payment-request", "level": 3, "title": "Handling events and updating the payment request", "number": "2.7" }, { "id": "fine-grained-error-reporting", - "href": "https://www.w3.org/TR/payment-request-1.1/#fine-grained-error-reporting", + "href": "https://www.w3.org/TR/payment-request/#fine-grained-error-reporting", "level": 3, "title": "Fine-grained error reporting", "number": "2.8" }, { "id": "posting-payment-response-back-to-a-server", - "href": "https://www.w3.org/TR/payment-request-1.1/#posting-payment-response-back-to-a-server", + "href": "https://www.w3.org/TR/payment-request/#posting-payment-response-back-to-a-server", "level": 3, "title": "POSTing payment response back to a server", "number": "2.9" }, { "id": "using-with-cross-origin-iframes", - "href": "https://www.w3.org/TR/payment-request-1.1/#using-with-cross-origin-iframes", + "href": "https://www.w3.org/TR/payment-request/#using-with-cross-origin-iframes", "level": 3, "title": "Using with cross-origin iframes", "number": "2.10" }, { "id": "paymentrequest-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentrequest-interface", "level": 2, "title": "PaymentRequest interface", "number": "3" }, { "id": "constructor", - "href": "https://www.w3.org/TR/payment-request-1.1/#constructor", + "href": "https://www.w3.org/TR/payment-request/#constructor", "level": 3, "title": "Constructor", "number": "3.1" }, { "id": "id-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#id-attribute", + "href": "https://www.w3.org/TR/payment-request/#id-attribute", "level": 3, "title": "id attribute", "number": "3.2" }, { "id": "show-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#show-method", + "href": "https://www.w3.org/TR/payment-request/#show-method", "level": 3, "title": "show() method", "number": "3.3" }, { "id": "abort-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#abort-method", + "href": "https://www.w3.org/TR/payment-request/#abort-method", "level": 3, "title": "abort() method", "number": "3.4" }, { "id": "canmakepayment-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#canmakepayment-method", + "href": "https://www.w3.org/TR/payment-request/#canmakepayment-method", "level": 3, "title": "canMakePayment() method", "number": "3.5" }, { "id": "shippingaddress-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingaddress-attribute", + "href": "https://www.w3.org/TR/payment-request/#shippingaddress-attribute", "level": 3, "title": "shippingAddress attribute", "number": "3.6" }, { "id": "shippingtype-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingtype-attribute", + "href": "https://www.w3.org/TR/payment-request/#shippingtype-attribute", "level": 3, "title": "shippingType attribute", "number": "3.7" }, { "id": "onshippingaddresschange-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#onshippingaddresschange-attribute", + "href": "https://www.w3.org/TR/payment-request/#onshippingaddresschange-attribute", "level": 3, "title": "onshippingaddresschange attribute", "number": "3.8" }, { "id": "shippingoption-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingoption-attribute", + "href": "https://www.w3.org/TR/payment-request/#shippingoption-attribute", "level": 3, "title": "shippingOption attribute", "number": "3.9" }, { "id": "onshippingoptionchange-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#onshippingoptionchange-attribute", + "href": "https://www.w3.org/TR/payment-request/#onshippingoptionchange-attribute", "level": 3, "title": "onshippingoptionchange attribute", "number": "3.10" }, { "id": "onpaymentmethodchange-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#onpaymentmethodchange-attribute", + "href": "https://www.w3.org/TR/payment-request/#onpaymentmethodchange-attribute", "level": 3, "title": "onpaymentmethodchange attribute", "number": "3.11" }, { "id": "internal-slots", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots", + "href": "https://www.w3.org/TR/payment-request/#internal-slots", "level": 3, "title": "Internal Slots", "number": "3.12" }, { "id": "paymentmethoddata-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethoddata-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentmethoddata-dictionary", "level": 2, "title": "PaymentMethodData dictionary", "number": "4" }, { "id": "paymentcurrencyamount-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcurrencyamount-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentcurrencyamount-dictionary", "level": 2, "title": "PaymentCurrencyAmount dictionary", "number": "5" }, { "id": "validity-checkers", - "href": "https://www.w3.org/TR/payment-request-1.1/#validity-checkers", + "href": "https://www.w3.org/TR/payment-request/#validity-checkers", "level": 3, "title": "Validity checkers", "number": "5.1" }, { "id": "payment-details-dictionaries", - "href": "https://www.w3.org/TR/payment-request-1.1/#payment-details-dictionaries", + "href": "https://www.w3.org/TR/payment-request/#payment-details-dictionaries", "level": 2, "title": "Payment details dictionaries", "number": "6" }, { "id": "paymentdetailsbase-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsbase-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsbase-dictionary", "level": 3, "title": "PaymentDetailsBase dictionary", "number": "6.1" }, { "id": "paymentdetailsinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsinit-dictionary", "level": 3, "title": "PaymentDetailsInit dictionary", "number": "6.2" }, { "id": "paymentdetailsupdate-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsupdate-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsupdate-dictionary", "level": 3, "title": "PaymentDetailsUpdate dictionary", "number": "6.3" }, { "id": "paymentdetailsmodifier-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsmodifier-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentdetailsmodifier-dictionary", "level": 2, "title": "PaymentDetailsModifier dictionary", "number": "7" }, { "id": "paymentshippingtype-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingtype-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingtype-enum", "level": 2, "title": "PaymentShippingType enum", "number": "8" }, { "id": "paymentoptions-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentoptions-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary", "level": 2, "title": "PaymentOptions dictionary", "number": "9" }, { "id": "paymentitem-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentitem-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentitem-dictionary", "level": 2, "title": "10. PaymentItem dictionary" }, { "id": "paymentcompletedetails-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcompletedetails-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentcompletedetails-dictionary", "level": 2, "title": "11. PaymentCompleteDetails dictionary" }, { "id": "paymentcomplete-enum", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentcomplete-enum", + "href": "https://www.w3.org/TR/payment-request/#paymentcomplete-enum", "level": 2, "title": "12. PaymentComplete enum" }, { "id": "paymentshippingoption-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentshippingoption-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentshippingoption-dictionary", "level": 2, "title": "13. PaymentShippingOption dictionary" }, { "id": "paymentresponse-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentresponse-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentresponse-interface", "level": 2, "title": "14. PaymentResponse interface" }, { "id": "retry-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#retry-method", + "href": "https://www.w3.org/TR/payment-request/#retry-method", "level": 3, "title": "retry() method", "number": "14.1" }, { "id": "paymentvalidationerrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentvalidationerrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentvalidationerrors-dictionary", "level": 4, "title": "PaymentValidationErrors dictionary", "number": "14.1.1" }, { "id": "payererrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#payererrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#payererrors-dictionary", "level": 4, "title": "PayerErrors dictionary", "number": "14.1.2" }, { "id": "methodname-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#methodname-attribute", + "href": "https://www.w3.org/TR/payment-request/#methodname-attribute", "level": 3, "title": "methodName attribute", "number": "14.2" }, { "id": "details-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#details-attribute", + "href": "https://www.w3.org/TR/payment-request/#details-attribute", "level": 3, "title": "details attribute", "number": "14.3" }, { "id": "shippingaddress-attribute-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingaddress-attribute-0", + "href": "https://www.w3.org/TR/payment-request/#shippingaddress-attribute-0", "level": 3, "title": "shippingAddress attribute", "number": "14.4" }, { "id": "shippingoption-attribute-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#shippingoption-attribute-0", + "href": "https://www.w3.org/TR/payment-request/#shippingoption-attribute-0", "level": 3, "title": "shippingOption attribute", "number": "14.5" }, { "id": "payername-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#payername-attribute", + "href": "https://www.w3.org/TR/payment-request/#payername-attribute", "level": 3, "title": "payerName attribute", "number": "14.6" }, { "id": "payeremail-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#payeremail-attribute", + "href": "https://www.w3.org/TR/payment-request/#payeremail-attribute", "level": 3, "title": "payerEmail attribute", "number": "14.7" }, { "id": "payerphone-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#payerphone-attribute", + "href": "https://www.w3.org/TR/payment-request/#payerphone-attribute", "level": 3, "title": "payerPhone attribute", "number": "14.8" }, { "id": "requestid-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#requestid-attribute", + "href": "https://www.w3.org/TR/payment-request/#requestid-attribute", "level": 3, "title": "requestId attribute", "number": "14.9" }, { "id": "complete-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#complete-method", + "href": "https://www.w3.org/TR/payment-request/#complete-method", "level": 3, "title": "complete() method", "number": "14.10" }, { "id": "onpayerdetailchange-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#onpayerdetailchange-attribute", + "href": "https://www.w3.org/TR/payment-request/#onpayerdetailchange-attribute", "level": 3, "title": "onpayerdetailchange attribute", "number": "14.11" }, { "id": "internal-slots-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots-0", + "href": "https://www.w3.org/TR/payment-request/#internal-slots-0", "level": 3, "title": "Internal Slots", "number": "14.12" }, { "id": "shipping-and-billing-addresses", - "href": "https://www.w3.org/TR/payment-request-1.1/#shipping-and-billing-addresses", + "href": "https://www.w3.org/TR/payment-request/#shipping-and-billing-addresses", "level": 2, "title": "15. Shipping and billing addresses" }, { "id": "addresserrors-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", + "href": "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", "level": 3, "title": "AddressErrors dictionary", "number": "15.1" }, { "id": "permissions-policy", - "href": "https://www.w3.org/TR/payment-request-1.1/#permissions-policy", + "href": "https://www.w3.org/TR/payment-request/#permissions-policy", "level": 2, "title": "16. Permissions Policy integration" }, { "id": "events", - "href": "https://www.w3.org/TR/payment-request-1.1/#events", + "href": "https://www.w3.org/TR/payment-request/#events", "level": 2, "title": "17. Events" }, { "id": "summary", - "href": "https://www.w3.org/TR/payment-request-1.1/#summary", + "href": "https://www.w3.org/TR/payment-request/#summary", "level": 3, "title": "Summary", "number": "17.1" }, { "id": "paymentmethodchangeevent-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeevent-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentmethodchangeevent-interface", "level": 3, "title": "PaymentMethodChangeEvent interface", "number": "17.2" }, { "id": "methoddetails-attribute", - "href": "https://www.w3.org/TR/payment-request-1.1/#methoddetails-attribute", + "href": "https://www.w3.org/TR/payment-request/#methoddetails-attribute", "level": 4, "title": "methodDetails attribute", "number": "17.2.1" }, { "id": "methodname-attribute-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#methodname-attribute-0", + "href": "https://www.w3.org/TR/payment-request/#methodname-attribute-0", "level": 4, "title": "methodName attribute", "number": "17.2.2" }, { "id": "paymentmethodchangeeventinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeeventinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentmethodchangeeventinit-dictionary", "level": 4, "title": "PaymentMethodChangeEventInit dictionary", "number": "17.2.3" }, { "id": "paymentrequestupdateevent-interface", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequestupdateevent-interface", + "href": "https://www.w3.org/TR/payment-request/#paymentrequestupdateevent-interface", "level": 3, "title": "PaymentRequestUpdateEvent interface", "number": "17.3" }, { "id": "constructor-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#constructor-0", + "href": "https://www.w3.org/TR/payment-request/#constructor-0", "level": 4, "title": "Constructor", "number": "17.3.1" }, { "id": "updatewith-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#updatewith-method", + "href": "https://www.w3.org/TR/payment-request/#updatewith-method", "level": 4, "title": "updateWith() method", "number": "17.3.2" }, { "id": "internal-slots-1", - "href": "https://www.w3.org/TR/payment-request-1.1/#internal-slots-1", + "href": "https://www.w3.org/TR/payment-request/#internal-slots-1", "level": 4, "title": "Internal Slots", "number": "17.3.3" }, { "id": "paymentrequestupdateeventinit-dictionary", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequestupdateeventinit-dictionary", + "href": "https://www.w3.org/TR/payment-request/#paymentrequestupdateeventinit-dictionary", "level": 4, "title": "PaymentRequestUpdateEventInit dictionary", "number": "17.3.4" }, { "id": "algorithms", - "href": "https://www.w3.org/TR/payment-request-1.1/#algorithms", + "href": "https://www.w3.org/TR/payment-request/#algorithms", "level": 2, "title": "18. Algorithms" }, { "id": "can-make-payment-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#can-make-payment-algorithm", + "href": "https://www.w3.org/TR/payment-request/#can-make-payment-algorithm", "level": 3, "title": "Can make payment algorithm", "number": "18.1" }, { "id": "shipping-address-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#shipping-address-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#shipping-address-changed-algorithm", "level": 3, "title": "Shipping address changed algorithm", "number": "18.2" }, { "id": "shipping-option-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#shipping-option-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#shipping-option-changed-algorithm", "level": 3, "title": "Shipping option changed algorithm", "number": "18.3" }, { "id": "payment-method-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#payment-method-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#payment-method-changed-algorithm", "level": 3, "title": "Payment method changed algorithm", "number": "18.4" }, { "id": "paymentrequest-updated-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-updated-algorithm", + "href": "https://www.w3.org/TR/payment-request/#paymentrequest-updated-algorithm", "level": 3, "title": "PaymentRequest updated algorithm", "number": "18.5" }, { "id": "payer-detail-changed-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#payer-detail-changed-algorithm", + "href": "https://www.w3.org/TR/payment-request/#payer-detail-changed-algorithm", "level": 3, "title": "Payer detail changed algorithm", "number": "18.6" }, { "id": "user-accepts-the-payment-request-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#user-accepts-the-payment-request-algorithm", + "href": "https://www.w3.org/TR/payment-request/#user-accepts-the-payment-request-algorithm", "level": 3, "title": "User accepts the payment request algorithm", "number": "18.7" }, { "id": "user-aborts-the-payment-request-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#user-aborts-the-payment-request-algorithm", + "href": "https://www.w3.org/TR/payment-request/#user-aborts-the-payment-request-algorithm", "level": 3, "title": "User aborts the payment request algorithm", "number": "18.8" }, { "id": "update-a-paymentrequest-s-details-algorithm", - "href": "https://www.w3.org/TR/payment-request-1.1/#update-a-paymentrequest-s-details-algorithm", + "href": "https://www.w3.org/TR/payment-request/#update-a-paymentrequest-s-details-algorithm", "level": 3, "title": "Update a PaymentRequest's details algorithm", "number": "18.9" }, { "id": "abort-the-update", - "href": "https://www.w3.org/TR/payment-request-1.1/#abort-the-update", + "href": "https://www.w3.org/TR/payment-request/#abort-the-update", "level": 4, "title": "Abort the update", "number": "18.9.1" }, { "id": "privacy", - "href": "https://www.w3.org/TR/payment-request-1.1/#privacy", + "href": "https://www.w3.org/TR/payment-request/#privacy", "level": 2, "title": "19. Privacy and Security Considerations" }, { "id": "user-protections-with-show-method", - "href": "https://www.w3.org/TR/payment-request-1.1/#user-protections-with-show-method", + "href": "https://www.w3.org/TR/payment-request/#user-protections-with-show-method", "level": 3, "title": "User protections with show() method", "number": "19.1" }, { "id": "secure-contexts", - "href": "https://www.w3.org/TR/payment-request-1.1/#secure-contexts", + "href": "https://www.w3.org/TR/payment-request/#secure-contexts", "level": 3, "title": "Secure contexts", "number": "19.2" }, { "id": "cross-origin-payment-requests", - "href": "https://www.w3.org/TR/payment-request-1.1/#cross-origin-payment-requests", + "href": "https://www.w3.org/TR/payment-request/#cross-origin-payment-requests", "level": 3, "title": "Cross-origin payment requests", "number": "19.3" }, { "id": "encryption-of-data-fields", - "href": "https://www.w3.org/TR/payment-request-1.1/#encryption-of-data-fields", + "href": "https://www.w3.org/TR/payment-request/#encryption-of-data-fields", "level": 3, "title": "Encryption of data fields", "number": "19.4" }, { "id": "how-user-agents-match-payment-handlers", - "href": "https://www.w3.org/TR/payment-request-1.1/#how-user-agents-match-payment-handlers", + "href": "https://www.w3.org/TR/payment-request/#how-user-agents-match-payment-handlers", "level": 3, "title": "How user agents match payment handlers", "number": "19.5" }, { "id": "data-usage-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#data-usage-0", + "href": "https://www.w3.org/TR/payment-request/#data-usage-0", "level": 3, "title": "Data usage", "number": "19.6" }, { "id": "exposing-user-information", - "href": "https://www.w3.org/TR/payment-request-1.1/#exposing-user-information", + "href": "https://www.w3.org/TR/payment-request/#exposing-user-information", "level": 3, "title": "Exposing user information", "number": "19.7" }, { "id": "canmakepayment-protections-0", - "href": "https://www.w3.org/TR/payment-request-1.1/#canmakepayment-protections-0", + "href": "https://www.w3.org/TR/payment-request/#canmakepayment-protections-0", "level": 3, "title": "canMakePayment() protections", "number": "19.8" }, { "id": "accessibility-considerations", - "href": "https://www.w3.org/TR/payment-request-1.1/#accessibility-considerations", + "href": "https://www.w3.org/TR/payment-request/#accessibility-considerations", "level": 2, "title": "20. Accessibility Considerations" }, { "id": "dependencies", - "href": "https://www.w3.org/TR/payment-request-1.1/#dependencies", + "href": "https://www.w3.org/TR/payment-request/#dependencies", "level": 2, "title": "21. Dependencies" }, { "id": "conformance", - "href": "https://www.w3.org/TR/payment-request-1.1/#conformance", + "href": "https://www.w3.org/TR/payment-request/#conformance", "level": 2, "title": "22. Conformance" }, { "id": "idl-index", - "href": "https://www.w3.org/TR/payment-request-1.1/#idl-index", + "href": "https://www.w3.org/TR/payment-request/#idl-index", "level": 2, "title": "IDL Index", "number": "A" }, { "id": "acknowledgements", - "href": "https://www.w3.org/TR/payment-request-1.1/#acknowledgements", + "href": "https://www.w3.org/TR/payment-request/#acknowledgements", "level": 2, "title": "Acknowledgements", "number": "B" }, { "id": "changelog", - "href": "https://www.w3.org/TR/payment-request-1.1/#changelog", + "href": "https://www.w3.org/TR/payment-request/#changelog", "level": 2, "title": "Changelog", "number": "C" }, { "id": "references", - "href": "https://www.w3.org/TR/payment-request-1.1/#references", + "href": "https://www.w3.org/TR/payment-request/#references", "level": 2, "title": "References", "number": "D" }, { "id": "normative-references", - "href": "https://www.w3.org/TR/payment-request-1.1/#normative-references", + "href": "https://www.w3.org/TR/payment-request/#normative-references", "level": 3, "title": "Normative references", "number": "D.1" }, { "id": "informative-references", - "href": "https://www.w3.org/TR/payment-request-1.1/#informative-references", + "href": "https://www.w3.org/TR/payment-request/#informative-references", "level": 3, "title": "Informative references", "number": "D.2" diff --git a/tr/idl/payment-request.idl b/tr/idl/payment-request.idl index 252d8adfbbe1..272f21fd68f4 100644 --- a/tr/idl/payment-request.idl +++ b/tr/idl/payment-request.idl @@ -1,7 +1,7 @@ // GENERATED CONTENT - DO NOT EDIT // Content was automatically extracted by Reffy into webref // (https://github.com/w3c/webref) -// Source: Payment Request API (https://www.w3.org/TR/payment-request-1.1/) +// Source: Payment Request API (https://www.w3.org/TR/payment-request/) [SecureContext, Exposed=Window] interface PaymentRequest : EventTarget { diff --git a/tr/ids/WGSL.json b/tr/ids/WGSL.json index c120e1a8f56e..ec03aeefc509 100644 --- a/tr/ids/WGSL.json +++ b/tr/ids/WGSL.json @@ -965,6 +965,15 @@ "https://www.w3.org/TR/WGSL/#ref-for-abstractfloat%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6", "https://www.w3.org/TR/WGSL/#example-b2e7e57e", "https://www.w3.org/TR/WGSL/#bool-type", "https://www.w3.org/TR/WGSL/#bool", @@ -972,38 +981,38 @@ "https://www.w3.org/TR/WGSL/#u32", "https://www.w3.org/TR/WGSL/#i32", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#floating-point-types", "https://www.w3.org/TR/WGSL/#f32", "https://www.w3.org/TR/WGSL/#f16", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-extension-f16%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-abstractfloat%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#scalar-types", "https://www.w3.org/TR/WGSL/#scalar", "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-abstractfloat%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#numeric-scalar", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-abstractfloat%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#integer-scalar", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4", "https://www.w3.org/TR/WGSL/#vector-types", "https://www.w3.org/TR/WGSL/#vector", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A3", "https://www.w3.org/TR/WGSL/#component-type", "https://www.w3.org/TR/WGSL/#numeric-vector", @@ -1058,10 +1067,10 @@ "https://www.w3.org/TR/WGSL/#atomic-type", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-workgroup%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-storage-buffer", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A2", @@ -1077,20 +1086,20 @@ "https://www.w3.org/TR/WGSL/#fixed-size-array", "https://www.w3.org/TR/WGSL/#element-count", "https://www.w3.org/TR/WGSL/#runtime-sized", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-override-expressions", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-override-expressions", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-override-declaration", "https://www.w3.org/TR/WGSL/#ref-for-shader-module-creation%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-storage-buffer%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-vector%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-matrix%E2%91%A1", @@ -1112,10 +1121,10 @@ "https://www.w3.org/TR/WGSL/#structure", "https://www.w3.org/TR/WGSL/#member", "https://www.w3.org/TR/WGSL/#ref-for-identifier%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-vector%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-matrix%E2%91%A2", @@ -1127,7 +1136,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-creation-fixed-footprint%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-plain-type%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-runtime-sized%E2%91%A0", "https://www.w3.org/TR/WGSL/#example-fbd46865", "https://www.w3.org/TR/WGSL/#syntax-struct_decl", @@ -1281,10 +1290,10 @@ "https://www.w3.org/TR/WGSL/#ref-for-type%E2%91%A0", "https://www.w3.org/TR/WGSL/#store-type", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/WGSL/#storable-types", "https://www.w3.org/TR/WGSL/#ref-for-variable%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-storable%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-texture-resource", "https://www.w3.org/TR/WGSL/#ref-for-sampler-resource", @@ -1305,7 +1314,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-uniform-buffer%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-storage-buffer%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/WGSL/#host-shareable", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A0", @@ -1334,11 +1343,11 @@ "https://www.w3.org/TR/WGSL/#pointer-type", "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-variable-declaration", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A7", @@ -1394,7 +1403,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-dynamic-error%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#trap", "https://www.w3.org/TR/WGSL/#ref-for-shader-stage-output%E2%91%A1", "https://www.w3.org/TR/WGSL/#invalid-load", @@ -1427,11 +1436,11 @@ "https://www.w3.org/TR/WGSL/#ref-for-simple-assignment", "https://www.w3.org/TR/WGSL/#ref-for-write-access", "https://www.w3.org/TR/WGSL/#ref-for-left-hand-side", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-access-write%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-right-hand-side", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/WGSL/#load-rule", "https://www.w3.org/TR/WGSL/#ref-for-access-read%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A5", @@ -1439,7 +1448,7 @@ "https://www.w3.org/TR/WGSL/#example-4df77232", "https://www.w3.org/TR/WGSL/#example-78cb44c6", "https://www.w3.org/TR/WGSL/#ref-for-calling-function", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-address-of%E2%91%A0", "https://www.w3.org/TR/WGSL/#example-db23276e", "https://www.w3.org/TR/WGSL/#example-e59d1aed", @@ -1475,7 +1484,7 @@ "https://www.w3.org/TR/WGSL/#pointers-other-languages", "https://www.w3.org/TR/WGSL/#ref-for-storable%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-variable-declaration%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-invalid-memory-reference%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A8", @@ -1513,7 +1522,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-texture-resource%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-handle", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-formal-parameter%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-type-storage-texture%E2%91%A1", "https://www.w3.org/TR/WGSL/#texture-types", @@ -1575,7 +1584,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-dom-gputexturebindinglayout-sampletype", "https://www.w3.org/TR/WGSL/#ref-for-sampled-type", "https://www.w3.org/TR/WGSL/#sampled-type", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-texture-dimensionality%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-texture-arrayed%E2%91%A1", "https://www.w3.org/TR/WGSL/#type-texture_1d", @@ -1604,7 +1613,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-dom-gputexturebindinglayout-sampletype%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-sampled-type%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-sampled-type%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-texture-dimensionality%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-texture-arrayed%E2%91%A2", "https://www.w3.org/TR/WGSL/#type-texture_multisampled_2d", @@ -1630,7 +1639,7 @@ "https://www.w3.org/TR/WGSL/#type-read-write-storage-texture", "https://www.w3.org/TR/WGSL/#ref-for-read-access%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-write-access%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-storage-texel-formats", "https://www.w3.org/TR/WGSL/#ref-for-texture-dimensionality%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-texture-arrayed%E2%91%A4", @@ -1642,10 +1651,10 @@ "https://www.w3.org/TR/WGSL/#ref-for-dom-gputextureviewdimension-2d-array%E2%91%A0", "https://www.w3.org/TR/WGSL/#type-texture_storage_3d", "https://www.w3.org/TR/WGSL/#ref-for-dom-gputextureviewdimension-3d%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-enumerant%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-storage-texel-formats%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-enumerant%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#texture-depth", @@ -1692,7 +1701,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax-expression%E2%91%A0", "https://www.w3.org/TR/WGSL/#type-aliases", "https://www.w3.org/TR/WGSL/#type-alias", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-scope", "https://www.w3.org/TR/WGSL/#ref-for-type-alias%E2%91%A2", @@ -1717,7 +1726,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-sampler%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-type-sampler_comparison%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-texture_depth_2d", @@ -1745,7 +1754,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-in-scope%E2%91%A3", "https://www.w3.org/TR/WGSL/#function-scope", "https://www.w3.org/TR/WGSL/#ref-for-dynamic-context", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/WGSL/#effective-value-type", "https://www.w3.org/TR/WGSL/#ref-for-concretization", "https://www.w3.org/TR/WGSL/#ref-for-effective-value-type%E2%91%A0", @@ -1874,7 +1883,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-shader-module-creation%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-function-scope%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-type-abstract%E2%91%A4", @@ -1886,7 +1895,7 @@ "https://www.w3.org/TR/WGSL/#override-decls", "https://www.w3.org/TR/WGSL/#override-declaration", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-overridable%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#pipeline-overridable", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation%E2%91%A8", @@ -1936,7 +1945,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-function%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-private%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-identifier%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-resolves%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A0%E2%91%A3", @@ -1958,11 +1967,11 @@ "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-function%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-function-scope%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-uniform%E2%91%A2", "https://www.w3.org/TR/WGSL/#uniform-buffer", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A0%E2%91%A3", @@ -2103,7 +2112,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-const-functions", "https://www.w3.org/TR/WGSL/#ref-for-type-alias%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-type-rule%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-creation-fixed-footprint%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-type-abstract%E2%91%A6", @@ -2114,37 +2123,37 @@ "https://www.w3.org/TR/WGSL/#ref-for-subexpressions%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-static-type%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-subexpressions%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-subexpressions%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-static-type%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-abstractfloat%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-const-declaration%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-abstract-numeric-types%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-const-declaration%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-abstract-numeric-types%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-let-declaration%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-constructible%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-overload-resolution%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-feasible-automatic-conversion%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#override-expr", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#override-expressions", @@ -2168,22 +2177,22 @@ "https://www.w3.org/TR/WGSL/#ref-for-type-rule%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-override-declaration%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-feasible-automatic-conversion%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-override-declaration%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-integer-literal%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-override-declaration%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-resolves%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-vector%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#example-c47acfbe", "https://www.w3.org/TR/WGSL/#example-9fbfe7f3", "https://www.w3.org/TR/WGSL/#indeterminate-values", @@ -2217,7 +2226,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-matrix%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-fixed-size-array%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-runtime-sized%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-syntax-component_or_swizzle_specifier", "https://www.w3.org/TR/WGSL/#ref-for-indexing-expression%E2%91%A4", @@ -2235,20 +2244,20 @@ "https://www.w3.org/TR/WGSL/#vector-access-expr", "https://www.w3.org/TR/WGSL/#swizzle", "https://www.w3.org/TR/WGSL/#ref-for-context-dependent-name%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/WGSL/#example-78b3a51f", "https://www.w3.org/TR/WGSL/#vector-single-component", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value", "https://www.w3.org/TR/WGSL/#ref-for-type-abstract%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-concretization-of-a-value%E2%91%A3", "https://www.w3.org/TR/WGSL/#vector-multi-component", @@ -2279,7 +2288,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-originating-variable%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A0%E2%91%A4", @@ -2287,18 +2296,18 @@ "https://www.w3.org/TR/WGSL/#ref-for-originating-variable%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#matrix-access-expr", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-type-abstract%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-concretization-of-a-value%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A0%E2%91%A6", @@ -2306,18 +2315,18 @@ "https://www.w3.org/TR/WGSL/#ref-for-originating-variable%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#array-access-expr", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-type-abstract%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-concretization-of-a-value%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A0%E2%91%A8", @@ -2325,7 +2334,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-originating-variable%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-invalid-memory-reference%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%93%AA", @@ -2344,33 +2353,33 @@ "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-truncate", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-truncate%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%91%A5", @@ -2391,23 +2400,23 @@ "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-shader-execution-start%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A2%E2%93%AA", @@ -2432,9 +2441,9 @@ "https://www.w3.org/TR/WGSL/#address-of", "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-invalid-memory-reference%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-handle%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-handle%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/WGSL/#indirection-expr", "https://www.w3.org/TR/WGSL/#indirection", "https://www.w3.org/TR/WGSL/#ref-for-memory-view%E2%91%A1%E2%91%A5", @@ -2758,7 +2767,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-_shift_right_assign", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-_shift_left_assign", "https://www.w3.org/TR/WGSL/#ref-for-reference-type%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-compound-assignment", @@ -2776,7 +2785,7 @@ "https://www.w3.org/TR/WGSL/#syntax-decrement_statement", "https://www.w3.org/TR/WGSL/#ref-for-syntax-lhs_expression%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-minus_minus", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A1%E2%91%A1", @@ -2807,7 +2816,7 @@ "https://www.w3.org/TR/WGSL/#syntax-else_clause", "https://www.w3.org/TR/WGSL/#ref-for-syntax-compound_statement%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A6", "https://www.w3.org/TR/WGSL/#switch-statement", "https://www.w3.org/TR/WGSL/#statement-switch", @@ -2850,19 +2859,19 @@ "https://www.w3.org/TR/WGSL/#ref-for-case-clause%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-syntax_kw-default%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-default-alone-clause%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-default-clause%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-syntax_kw-default%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-syntax-case_selector%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-syntax-case_selectors%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-syntax-case_selector%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-case-clause%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-default-clause%E2%91%A2", @@ -2925,7 +2934,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-scope%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-iteration", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-statement-continuing%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-declaration%E2%91%A0%E2%91%A2", @@ -2944,7 +2953,7 @@ "https://www.w3.org/TR/WGSL/#statement-while", "https://www.w3.org/TR/WGSL/#ref-for-iteration%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-statement-loop%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-statement-for%E2%91%A2", @@ -2952,12 +2961,12 @@ "https://www.w3.org/TR/WGSL/#syntax-break_statement", "https://www.w3.org/TR/WGSL/#statement-break", "https://www.w3.org/TR/WGSL/#ref-for-statement-switch%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-statement-loop%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-statement-for%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-statement-while%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-statement-switch%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/WGSL/#example-58268bcc", "https://www.w3.org/TR/WGSL/#break-if-statement", "https://www.w3.org/TR/WGSL/#syntax-break_if_statement", @@ -2966,7 +2975,7 @@ "https://www.w3.org/TR/WGSL/#statement-break-if", "https://www.w3.org/TR/WGSL/#ref-for-statement-loop%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#example-c9adc204", "https://www.w3.org/TR/WGSL/#continue-statement", @@ -2975,13 +2984,13 @@ "https://www.w3.org/TR/WGSL/#ref-for-statement-loop%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-statement-continuing%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-iteration%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-statement-loop%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-statement-for%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-statement-while%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-statement-continuing%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-statement-continuing%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-statement-continuing%E2%91%A3", "https://www.w3.org/TR/WGSL/#example-f39a4ef5", "https://www.w3.org/TR/WGSL/#continuing-statement", @@ -2996,7 +3005,7 @@ "https://www.w3.org/TR/WGSL/#statement-continuing", "https://www.w3.org/TR/WGSL/#ref-for-compound-statement%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-iteration%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-statement-return%E2%91%A0", "https://www.w3.org/TR/WGSL/#return-statement", "https://www.w3.org/TR/WGSL/#syntax-return_statement", @@ -3006,14 +3015,14 @@ "https://www.w3.org/TR/WGSL/#ref-for-call-site%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-return-type%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-statement-return%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/WGSL/#return-value", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#return-value", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#discard-statement", "https://www.w3.org/TR/WGSL/#statement-discard", "https://www.w3.org/TR/WGSL/#ref-for-helper-invocation", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-fragment", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-helper-invocation%E2%91%A0", @@ -3025,19 +3034,19 @@ "https://www.w3.org/TR/WGSL/#syntax-func_call_statement", "https://www.w3.org/TR/WGSL/#ref-for-syntax-call_phrase%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-function-call%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-attribute-must_use%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-return-value%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-attribute-must_use%E2%91%A1", "https://www.w3.org/TR/WGSL/#const-assert-statement", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-statically-accessed%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-function-scope%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#syntax-const_assert_statement", "https://www.w3.org/TR/WGSL/#ref-for-syntax-expression%E2%91%A1%E2%91%A2", @@ -3081,14 +3090,14 @@ "https://www.w3.org/TR/WGSL/#ref-for-statement-while%E2%91%A4", "https://www.w3.org/TR/WGSL/#behavior", "https://www.w3.org/TR/WGSL/#ref-for-behavior", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-syntax-switch_clause%E2%91%A0", @@ -3097,7 +3106,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-behavior%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#behaviors-notes", "https://www.w3.org/TR/WGSL/#behaviors-examples", "https://www.w3.org/TR/WGSL/#example-ad6c34a8", @@ -3130,7 +3139,7 @@ "https://www.w3.org/TR/WGSL/#return-type", "https://www.w3.org/TR/WGSL/#function-body", "https://www.w3.org/TR/WGSL/#ref-for-function-call%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-in-scope%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-user-defined-function%E2%91%A5", @@ -3138,13 +3147,13 @@ "https://www.w3.org/TR/WGSL/#formal-parameter", "https://www.w3.org/TR/WGSL/#ref-for-declaration%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-identifier%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-scope%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-function-body%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-abstract-numeric-types%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-return-type%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-constructible%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-shader-stage-attributes", "https://www.w3.org/TR/WGSL/#ref-for-attribute-vertex%E2%91%A0", @@ -3186,10 +3195,10 @@ "https://www.w3.org/TR/WGSL/#called-function", "https://www.w3.org/TR/WGSL/#callee", "https://www.w3.org/TR/WGSL/#ref-for-called-function", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-formal-parameter%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-called-function%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-calling-function%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-called-function%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-returns", @@ -3223,24 +3232,24 @@ "https://www.w3.org/TR/WGSL/#ref-for-shader-module-creation%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#const-functions", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-const-declaration%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-attribute-const%E2%91%A1", "https://www.w3.org/TR/WGSL/#example-62c7bf88", "https://www.w3.org/TR/WGSL/#function-restriction", "https://www.w3.org/TR/WGSL/#ref-for-vertex", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-built-in-values-position%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-built-in-output-value", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-function-call%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-function-call%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-constructible%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-formal-parameter%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A1%E2%91%A1", @@ -3272,7 +3281,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-root-identifier%E2%91%A3", "https://www.w3.org/TR/WGSL/#alias", "https://www.w3.org/TR/WGSL/#ref-for-originating-variable%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-write-access%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-module-scope%E2%91%A1%E2%91%A7", @@ -3280,7 +3289,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-write-access%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-read-access%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-call-site%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/WGSL/#example-1243cb94", "https://www.w3.org/TR/WGSL/#attributes", "https://www.w3.org/TR/WGSL/#attribute", @@ -3306,7 +3315,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax-vertex_attr", "https://www.w3.org/TR/WGSL/#ref-for-syntax-fragment_attr", "https://www.w3.org/TR/WGSL/#ref-for-syntax-compute_attr", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/WGSL/#align-attr", "https://www.w3.org/TR/WGSL/#syntax-align_attr", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-attr%E2%91%A0", @@ -3315,18 +3324,18 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-comma%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-paren_right%E2%91%A4", "https://www.w3.org/TR/WGSL/#attribute-align", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-requiredalignof", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-requiredalignof", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-type-rule%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/WGSL/#binding-attr", "https://www.w3.org/TR/WGSL/#syntax-binding_attr", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-attr%E2%91%A1", @@ -3336,14 +3345,14 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-paren_right%E2%91%A5", "https://www.w3.org/TR/WGSL/#attribute-binding", "https://www.w3.org/TR/WGSL/#ref-for-attribute-group%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-resource%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-resource%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-type-rule%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/WGSL/#blend-src-attr", "https://www.w3.org/TR/WGSL/#syntax-blend_src_attr", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-attr%E2%91%A2", @@ -3354,21 +3363,21 @@ "https://www.w3.org/TR/WGSL/#attribute-blend_src", "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-extension-dual_source_blending%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-attribute-location%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-numeric-vector%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-stage-input%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-stage-input%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-stage-output%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-resolves%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#builtin-attr", "https://www.w3.org/TR/WGSL/#syntax-builtin_attr", @@ -3379,9 +3388,9 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-paren_right%E2%91%A7", "https://www.w3.org/TR/WGSL/#attribute-builtin", "https://www.w3.org/TR/WGSL/#ref-for-token%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-built-in-value-name-token", "https://www.w3.org/TR/WGSL/#ref-for-built-in-values%E2%91%A1", "https://www.w3.org/TR/WGSL/#const-attr", @@ -3389,8 +3398,8 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-attr%E2%91%A4", "https://www.w3.org/TR/WGSL/#attribute-const", "https://www.w3.org/TR/WGSL/#ref-for-const-functions%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/WGSL/#diagnostic-attr", "https://www.w3.org/TR/WGSL/#syntax-diagnostic_attr", @@ -3406,7 +3415,7 @@ "https://www.w3.org/TR/WGSL/#attribute-diagnostic", "https://www.w3.org/TR/WGSL/#ref-for-range-diagnostic-filter", "https://www.w3.org/TR/WGSL/#ref-for-attribute-diagnostic%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-diagnostic-triggering-rule%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-syntax-severity_control_name%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-syntax-diagnostic_rule_name%E2%91%A1", @@ -3419,14 +3428,14 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-comma%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-paren_right%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#attribute-group", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-resource%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-resource%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-rule%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/WGSL/#id-attr", "https://www.w3.org/TR/WGSL/#syntax-id_attr", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-attr%E2%91%A7", @@ -3436,15 +3445,15 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-paren_right%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#attribute-id", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-overridable%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-override-declaration%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-type-rule%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/WGSL/#interpolate-attr", "https://www.w3.org/TR/WGSL/#syntax-interpolate_attr", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-attr%E2%91%A8", @@ -3462,15 +3471,15 @@ "https://www.w3.org/TR/WGSL/#syntax-interpolate_type_name", "https://www.w3.org/TR/WGSL/#ref-for-syntax-ident_pattern_token%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#attribute-interpolate", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-vertex%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-attribute-location%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-attribute-location%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-interpolation-type-name-token", "https://www.w3.org/TR/WGSL/#ref-for-interpolation-type%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-interpolation-sampling-name-token", "https://www.w3.org/TR/WGSL/#ref-for-interpolation-sampling%E2%91%A1", "https://www.w3.org/TR/WGSL/#invariant-attr", @@ -3480,7 +3489,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-built-in-values-position%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-built-in-output-value%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-built-in-input-value", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-built-in-values-position%E2%91%A2", "https://www.w3.org/TR/WGSL/#location-attr", "https://www.w3.org/TR/WGSL/#syntax-location_attr", @@ -3490,29 +3499,29 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-comma%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-paren_right%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#attribute-location", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-numeric-vector%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-compute", "https://www.w3.org/TR/WGSL/#ref-for-shader-stage-input%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-type-rule%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/WGSL/#must-use-attr", "https://www.w3.org/TR/WGSL/#syntax-must_use_attr", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-attr%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#attribute-must_use", "https://www.w3.org/TR/WGSL/#ref-for-function-call%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-expression%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-expression%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-function-function%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-return-type%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-phony-assignment%E2%91%A0", @@ -3525,19 +3534,19 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-comma%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-paren_right%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#attribute-size", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-byte-size%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-sizeof", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-creation-fixed-footprint%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-creation-fixed-footprint%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-type-rule%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/WGSL/#workgroup-size-attr", "https://www.w3.org/TR/WGSL/#syntax-workgroup_size_attr", "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-attr%E2%91%A0%E2%91%A4", @@ -3563,23 +3572,23 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax_sym-paren_right%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#attribute-workgroup_size", "https://www.w3.org/TR/WGSL/#ref-for-workgroup-grid", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-compute-shader-stage%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-compute-shader-stage%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#shader-stage-attr", "https://www.w3.org/TR/WGSL/#shader-stage-attributes", "https://www.w3.org/TR/WGSL/#ref-for-entry-point%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-shader-stages%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-function-declaration%E2%91%A2", "https://www.w3.org/TR/WGSL/#vertex-attr", "https://www.w3.org/TR/WGSL/#syntax-vertex_attr", @@ -3634,7 +3643,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-shader-stage-input%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-return-value%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-stage-output%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-numeric-vector%E2%91%A2", @@ -3716,21 +3725,21 @@ "https://www.w3.org/TR/WGSL/#ref-for-attribute-invariant%E2%91%A3", "https://www.w3.org/TR/WGSL/#builtin-inputs-outputs", "https://www.w3.org/TR/WGSL/#built-in-input-value", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-formal-parameter%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-entry-point%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-shader-stages%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-attribute-builtin%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/WGSL/#built-in-output-value", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/WGSL/#built-in-output-value", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-return-value%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-entry-point%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-stages%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-return-type%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-return-type%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-attribute-builtin%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-built-in-values-position%E2%91%A3", "https://www.w3.org/TR/WGSL/#built-in-values", "https://www.w3.org/TR/WGSL/#ref-for-built-in-value-name-token%E2%91%A0", @@ -3754,7 +3763,7 @@ "https://www.w3.org/TR/WGSL/#built-in-values-clip_distances", "https://www.w3.org/TR/WGSL/#ref-for-vertex-shader-stage%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-built-in-values-clip_distances%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/WGSL/#frag-depth-builtin-value", "https://www.w3.org/TR/WGSL/#built-in-values-frag_depth", "https://www.w3.org/TR/WGSL/#ref-for-fragment-shader-stage%E2%91%A0", @@ -3830,24 +3839,24 @@ "https://www.w3.org/TR/WGSL/#user-defined-inputs-outputs", "https://www.w3.org/TR/WGSL/#user-defined-input-datum", "https://www.w3.org/TR/WGSL/#user-defined-output-datum", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-numeric-vector%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-compute%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/WGSL/#input-output-locations", "https://www.w3.org/TR/WGSL/#ref-for-attribute-location%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-user-defined-input-datum%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-user-defined-output-datum%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-attribute-location%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-attribute-location%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-attribute-blend_src%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-attribute-location%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#example-7d0deae3", "https://www.w3.org/TR/WGSL/#example-ee897116", @@ -3855,14 +3864,14 @@ "https://www.w3.org/TR/WGSL/#interpolation", "https://www.w3.org/TR/WGSL/#ref-for-attribute-interpolate%E2%91%A4", "https://www.w3.org/TR/WGSL/#interpolation-type", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-interpolation-type-name-token%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-token%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#interpolation-type-perspective", "https://www.w3.org/TR/WGSL/#interpolation-type-linear", "https://www.w3.org/TR/WGSL/#interpolation-type-flat", "https://www.w3.org/TR/WGSL/#interpolation-sampling", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-interpolation-sampling-name-token%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-token%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#interpolation-sampling-center", @@ -3871,12 +3880,12 @@ "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A5", "https://www.w3.org/TR/WGSL/#interpolation-sampling-first", "https://www.w3.org/TR/WGSL/#interpolation-sampling-either", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-vertex%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-vertex%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-attribute-location%E2%91%A0%E2%91%A0", @@ -3892,11 +3901,11 @@ "https://www.w3.org/TR/WGSL/#resource-interface-of-a-shader", "https://www.w3.org/TR/WGSL/#ref-for-statically-accessed%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-functions-in-a-shader-stage%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-attribute-group%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-attribute-binding%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-shader%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-attribute-group%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-attribute-binding%E2%91%A1", "https://www.w3.org/TR/WGSL/#resource-layout-compatibility", @@ -4038,7 +4047,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-enumerant%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-variable%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-workgroup%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-statically-accessed%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-compute-shader-stage%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-variable%E2%91%A0%E2%91%A6", @@ -4059,7 +4068,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-pointer-type%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-access-read%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#memory-layouts", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-uniform-buffer%E2%91%A0%E2%91%A0", @@ -4068,9 +4077,9 @@ "https://www.w3.org/TR/WGSL/#memory-layout", "https://www.w3.org/TR/WGSL/#ref-for-memory-locations%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-uniform%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-uniform%E2%91%A4", @@ -4099,25 +4108,25 @@ "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-fixed-footprint%E2%91%A3", "https://www.w3.org/TR/WGSL/#alignment", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-memory-locations%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#byte-size", "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-alignof%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-sizeof%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-atomic-type%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-vector%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-matrix%E2%91%A0%E2%91%A1", @@ -4154,7 +4163,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-attribute-align%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-alignof%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-attribute-size%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-sizeofmember%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-sizeof%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-offsetofmember%E2%91%A1", @@ -4171,12 +4180,12 @@ "https://www.w3.org/TR/WGSL/#internal-value-layout", "https://www.w3.org/TR/WGSL/#ref-for-attribute-align%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-attribute-size%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-alignof%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/WGSL/#64-bit-integer", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-64-bit-integer", @@ -4199,8 +4208,8 @@ "https://www.w3.org/TR/WGSL/#ref-for-address-spaces%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-uniform%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#requiredalignof", "https://www.w3.org/TR/WGSL/#ref-for-alignment%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A0%E2%91%A5", @@ -4209,7 +4218,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-requiredalignof%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-uniform%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A0%E2%91%A5", @@ -4235,11 +4244,11 @@ "https://www.w3.org/TR/WGSL/#ref-for-alignof%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-roundup%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-alignof%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-requiredalignof%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-offsetofmember%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-requiredalignof%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-element-stride", "https://www.w3.org/TR/WGSL/#ref-for-requiredalignof%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-strideof%E2%91%A5", @@ -4252,7 +4261,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-requiredalignof%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-uniform%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-strideof%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-roundup%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-sizeof%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-attribute-align%E2%91%A6", @@ -4349,7 +4358,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-severity-error%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-diagnostic%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-triggered%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#uniformity-concepts", "https://www.w3.org/TR/WGSL/#uniform-control-flow", "https://www.w3.org/TR/WGSL/#ref-for-compute-shader-stage%E2%91%A0%E2%91%A0", @@ -4442,7 +4451,7 @@ "https://www.w3.org/TR/WGSL/#parameternorestriction", "https://www.w3.org/TR/WGSL/#ref-for-parameter-return-tag", "https://www.w3.org/TR/WGSL/#parameterreturncontentsrequiredtobeuniform", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-uniform-value%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-return-value%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-uniform-value%E2%91%A6", @@ -4849,7 +4858,7 @@ "https://www.w3.org/TR/WGSL/#barrier", "https://www.w3.org/TR/WGSL/#control-barrier", "https://www.w3.org/TR/WGSL/#ref-for-compute-shader-stage-workgroup%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-uniform-control-flow%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-compute-shader-stage%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#derivatives", @@ -4868,7 +4877,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A2%E2%91%A4", @@ -4880,7 +4889,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-runtime-expression%E2%91%A4", @@ -4920,18 +4929,18 @@ "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/WGSL/#numeric-scalar-conversion-to-floating-point", "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-integer-scalar%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#grammar", @@ -4965,7 +4974,7 @@ "https://www.w3.org/TR/WGSL/#reserved-words", "https://www.w3.org/TR/WGSL/#reserved-word", "https://www.w3.org/TR/WGSL/#ref-for-token%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#syntax-_reserved", "https://www.w3.org/TR/WGSL/#syntactic-tokens", "https://www.w3.org/TR/WGSL/#syntactic-token", @@ -5045,10 +5054,10 @@ "https://www.w3.org/TR/WGSL/#ref-for-constructible%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-identifier%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-in-scope%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-identifier%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-resolves%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/WGSL/#zero-value-builtin-function", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A3%E2%93%AA", @@ -5057,7 +5066,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-abstract-numeric-types%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-constructible%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-constructible%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-abstractfloat%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-atomic-type%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-runtime-sized%E2%91%A8", @@ -5104,16 +5113,16 @@ "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#i32-builtin", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-scalar-floating-point-to-integral-conversion", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#mat2x2-builtin", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A2%E2%91%A5", @@ -5256,15 +5265,15 @@ "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-scalar-floating-point-to-integral-conversion%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-overload-resolution%E2%91%A1", "https://www.w3.org/TR/WGSL/#vec2-builtin", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A3%E2%91%A3", @@ -5339,7 +5348,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-vector%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A3%E2%91%A6", @@ -5390,7 +5399,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/WGSL/#clamp", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A2%E2%91%A7", @@ -5419,13 +5428,13 @@ "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/WGSL/#extractBits-signed-builtin", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/WGSL/#extractBits-unsigned-builtin", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A3%E2%93%AA", @@ -5447,14 +5456,14 @@ "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value%E2%91%A6", "https://www.w3.org/TR/WGSL/#example-450e6187", "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/WGSL/#example-2820d825", "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/WGSL/#insertBits-builtin", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A3%E2%91%A0", @@ -5467,7 +5476,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-feasible-automatic-conversion%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A3%E2%91%A1", @@ -5492,7 +5501,7 @@ "https://www.w3.org/TR/WGSL/#pow-builtin", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/WGSL/#quantizeToF16-builtin", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A3%E2%91%A2", @@ -5518,7 +5527,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/WGSL/#smoothstep-builtin", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A3%E2%91%A3", @@ -5536,7 +5545,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-truncate%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-component-wise%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/WGSL/#derivative-builtin-functions", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-triggered%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-trigger-derivative_uniformity%E2%91%A7", @@ -5571,37 +5580,37 @@ "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-uniform-control-flow%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#texture-builtin-functions", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/WGSL/#texturedimensions", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-texel-format%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-texel-format%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-texel-format%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-mip-level%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-logical-texel-address%E2%91%A0", @@ -5613,144 +5622,144 @@ "https://www.w3.org/TR/WGSL/#texture-gather", "https://www.w3.org/TR/WGSL/#ref-for-mip-level%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-type-depth-texture%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/WGSL/#example-16e82a5f", "https://www.w3.org/TR/WGSL/#texturegathercompare", "https://www.w3.org/TR/WGSL/#texture-gather-compare", "https://www.w3.org/TR/WGSL/#ref-for-mip-level%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/WGSL/#example-e6a4066b", "https://www.w3.org/TR/WGSL/#textureload", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-access-read%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-storage-texel-formats%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-access-read%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-storage-texel-formats%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-access-read%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-storage-texel-formats%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-access-read%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A1%E2%91%A4", @@ -5767,14 +5776,14 @@ "https://www.w3.org/TR/WGSL/#ref-for-texture-arrayed%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-texel-format%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-access-mode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-type-sampled-texture%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-type-depth-texture%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-type-storage-texture%E2%91%A6", "https://www.w3.org/TR/WGSL/#texturenumlevels", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-type-sampled-texture%E2%91%A8", @@ -5782,151 +5791,151 @@ "https://www.w3.org/TR/WGSL/#ref-for-texture-mip-level-count%E2%91%A1", "https://www.w3.org/TR/WGSL/#texturenumsamples", "https://www.w3.org/TR/WGSL/#ref-for-type-multisampled-texture%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-type-multisampled-texture%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-texture-sample-count%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-multisampled-texture%E2%91%A4", "https://www.w3.org/TR/WGSL/#texturesample", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-uniformity-analysis%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-uniform-control-flow%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-trigger-derivative_uniformity%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-diagnostic%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-triggered%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-type-sampled-texture%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-type-depth-texture%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-sampler%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-uniform-control-flow%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#texturesamplebias", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-uniformity-analysis%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-uniform-control-flow%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-trigger-derivative_uniformity%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-diagnostic%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-triggered%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-type-sampled-texture%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-type-sampler%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/WGSL/#texturesamplecompare", "https://www.w3.org/TR/WGSL/#ref-for-type-depth-texture%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-fragment%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-uniformity-analysis%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-uniform-control-flow%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-trigger-derivative_uniformity%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-diagnostic%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-triggered%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-type-depth-texture%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-type-sampler_comparison%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-indeterminate-value%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-uniform-control-flow%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#texturesamplecomparelevel", "https://www.w3.org/TR/WGSL/#ref-for-type-depth-texture%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-type-depth-texture%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-type-sampler_comparison%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-uniform-control-flow%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#texturesamplegrad", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-type-sampled-texture%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-type-sampler%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/WGSL/#texturesamplelevel", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-type-sampled-texture%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-depth-texture%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-sampler%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/WGSL/#textureSampleBaseClampToEdge", "https://www.w3.org/TR/WGSL/#ref-for-type-sampled-texture%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-type-external-texture%E2%91%A1", @@ -5936,27 +5945,27 @@ "https://www.w3.org/TR/WGSL/#ref-for-enumdef-gpufiltermode%E2%91%A0", "https://www.w3.org/TR/WGSL/#texturestore", "https://www.w3.org/TR/WGSL/#ref-for-texel-format%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-access-write%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-storage-texel-formats%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-texel-format%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-access-write%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-storage-texel-formats%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-texel-format%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-access-write%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-storage-texel-formats%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-texel-format%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-access-write%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-access-read_write%E2%91%A1%E2%91%A8", @@ -5968,14 +5977,14 @@ "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/WGSL/#atomic-builtin-functions", "https://www.w3.org/TR/WGSL/#ref-for-memory-locations%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-vertex%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-vertex%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-workgroup%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/WGSL/#atomic-load", "https://www.w3.org/TR/WGSL/#ref-for-atomic-modification", "https://www.w3.org/TR/WGSL/#atomic-store", @@ -5995,7 +6004,7 @@ "https://www.w3.org/TR/WGSL/#pack2x16snorm-builtin", "https://www.w3.org/TR/WGSL/#pack2x16unorm-builtin", "https://www.w3.org/TR/WGSL/#pack2x16float-builtin", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-const-expressions%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-pipeline-creation-error%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-override-expressions%E2%91%A3%E2%91%A4", @@ -6013,9 +6022,9 @@ "https://www.w3.org/TR/WGSL/#ref-for-control-barrier", "https://www.w3.org/TR/WGSL/#ref-for-memory-scope%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-execution-scope", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-compute%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-compute%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-uniform-control-flow%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/WGSL/#storageBarrier-builtin", "https://www.w3.org/TR/WGSL/#ref-for-control-barrier%E2%91%A0", @@ -6032,7 +6041,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-fixed-footprint%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-atomic-type%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-uniform-value%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-uniform-value%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-control-barrier%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-workgroup%E2%91%A1%E2%91%A3", diff --git a/tr/ids/eme-initdata-keyids.json b/tr/ids/eme-initdata-keyids.json index e17511b9a613..765ee1ac7d0c 100644 --- a/tr/ids/eme-initdata-keyids.json +++ b/tr/ids/eme-initdata-keyids.json @@ -34,9 +34,6 @@ "https://www.w3.org/TR/eme-initdata-keyids/#a-1-normative-references", "https://www.w3.org/TR/eme-initdata-keyids/#bib-encoding", "https://www.w3.org/TR/eme-initdata-keyids/#bib-encrypted-media", - "https://www.w3.org/TR/eme-initdata-keyids/#informative-references", - "https://www.w3.org/TR/eme-initdata-keyids/#a-2-informative-references", - "https://www.w3.org/TR/eme-initdata-keyids/#bib-eme-initdata-cenc", "https://www.w3.org/TR/eme-initdata-keyids/#back-to-top" ] } \ No newline at end of file diff --git a/tr/ids/payment-request-1.1.json b/tr/ids/payment-request-1.1.json deleted file mode 100644 index 97670ef40f10..000000000000 --- a/tr/ids/payment-request-1.1.json +++ /dev/null @@ -1,1682 +0,0 @@ -{ - "spec": { - "title": "Payment Request API", - "url": "https://www.w3.org/TR/payment-request-1.1/" - }, - "ids": [ - "https://www.w3.org/TR/payment-request-1.1/#initialUserConfig", - "https://www.w3.org/TR/payment-request-1.1/#toc-nav", - "https://www.w3.org/TR/payment-request-1.1/#toc-jump", - "https://www.w3.org/TR/payment-request-1.1/#toc-toggle", - "https://www.w3.org/TR/payment-request-1.1/#title", - "https://www.w3.org/TR/payment-request-1.1/#w3c-state", - "https://www.w3.org/TR/payment-request-1.1/#abstract", - "https://www.w3.org/TR/payment-request-1.1/#sotd", - "https://www.w3.org/TR/payment-request-1.1/#w3c_process_revision", - "https://www.w3.org/TR/payment-request-1.1/#toc", - "https://www.w3.org/TR/payment-request-1.1/#table-of-contents", - "https://www.w3.org/TR/payment-request-1.1/#introduction", - "https://www.w3.org/TR/payment-request-1.1/#x1-introduction", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-1", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method-provider", - "https://www.w3.org/TR/payment-request-1.1/#dfn-additional-data-type", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-data-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-data-2", - "https://www.w3.org/TR/payment-request-1.1/#dfn-steps-to-validate-payment-method-data", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-data-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-additional-data-type-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-3", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-handler", - "https://www.w3.org/TR/payment-request-1.1/#dfn-steps-to-check-if-a-payment-can-be-made", - "https://www.w3.org/TR/payment-request-1.1/#dfn-steps-to-respond-to-a-payment-request", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-4", - "https://www.w3.org/TR/payment-request-1.1/#dfn-steps-for-when-a-user-changes-payment-method", - "https://www.w3.org/TR/payment-request-1.1/#goals", - "https://www.w3.org/TR/payment-request-1.1/#x1-1-goals-and-scope", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-provider-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-provider-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-provider-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-5", - "https://www.w3.org/TR/payment-request-1.1/#examples-of-usage", - "https://www.w3.org/TR/payment-request-1.1/#x2-examples-of-usage", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-1", - "https://www.w3.org/TR/payment-request-1.1/#declaring-multiple-ways-of-paying", - "https://www.w3.org/TR/payment-request-1.1/#x2-1-declaring-multiple-ways-of-paying", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-8", - "https://www.w3.org/TR/payment-request-1.1/#example-the-methoddata-argument", - "https://www.w3.org/TR/payment-request-1.1/#describing-what-is-being-paid-for", - "https://www.w3.org/TR/payment-request-1.1/#x2-2-describing-what-is-being-paid-for", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-4", - "https://www.w3.org/TR/payment-request-1.1/#example-the-details-argument", - "https://www.w3.org/TR/payment-request-1.1/#adding-shipping-options", - "https://www.w3.org/TR/payment-request-1.1/#x2-3-adding-shipping-options", - "https://www.w3.org/TR/payment-request-1.1/#example-adding-shipping-options", - "https://www.w3.org/TR/payment-request-1.1/#conditional-modifications-to-payment-request", - "https://www.w3.org/TR/payment-request-1.1/#x2-4-conditional-modifications-to-payment-request", - "https://www.w3.org/TR/payment-request-1.1/#example-modifying-payment-request-based-on-card-type", - "https://www.w3.org/TR/payment-request-1.1/#requesting-specific-information-from-the-end-user", - "https://www.w3.org/TR/payment-request-1.1/#x2-5-requesting-specific-information-from-the-end-user", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-5", - "https://www.w3.org/TR/payment-request-1.1/#example-the-options-argument", - "https://www.w3.org/TR/payment-request-1.1/#constructing-a-paymentrequest", - "https://www.w3.org/TR/payment-request-1.1/#x2-6-constructing-a-paymentrequest", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-6", - "https://www.w3.org/TR/payment-request-1.1/#example-constructing-a-paymentrequest", - "https://www.w3.org/TR/payment-request-1.1/#handling-events-and-updating-the-payment-request", - "https://www.w3.org/TR/payment-request-1.1/#x2-7-handling-events-and-updating-the-payment-request", - "https://www.w3.org/TR/payment-request-1.1/#example-registering-event-handlers", - "https://www.w3.org/TR/payment-request-1.1/#fine-grained-error-reporting", - "https://www.w3.org/TR/payment-request-1.1/#x2-8-fine-grained-error-reporting", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-1", - "https://www.w3.org/TR/payment-request-1.1/#example-8", - "https://www.w3.org/TR/payment-request-1.1/#posting-payment-response-back-to-a-server", - "https://www.w3.org/TR/payment-request-1.1/#x2-9-posting-payment-response-back-to-a-server", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-3", - "https://www.w3.org/TR/payment-request-1.1/#example-posting-with-fetch", - "https://www.w3.org/TR/payment-request-1.1/#using-with-cross-origin-iframes", - "https://www.w3.org/TR/payment-request-1.1/#x2-10-using-with-cross-origin-iframes", - "https://www.w3.org/TR/payment-request-1.1/#example-using-payment-request-api-with-cross-origin-iframes", - "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-interface", - "https://www.w3.org/TR/payment-request-1.1/#x3-paymentrequest-interface", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1134666017", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-7", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-constructor-methoddata-details-options", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-constructor", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-show-detailspromise", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-abort", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-abort-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-canmakepayment", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-canmakepayment-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-id", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-id-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-shippingaddress", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-shippingoption", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-shippingtype", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingtype-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-onshippingaddresschange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-onshippingaddresschange-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-onshippingoptionchange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-onshippingoptionchange-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequest-onpaymentmethodchange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-onpaymentmethodchange-1", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID", - "https://www.w3.org/TR/payment-request-1.1/#h-note", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingtype-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-1", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-relevant-browsing-context", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-1", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-request-is-showing", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-3", - "https://www.w3.org/TR/payment-request-1.1/#constructor", - "https://www.w3.org/TR/payment-request-1.1/#x3-1-constructor", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-data-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-3", - "https://www.w3.org/TR/payment-request-1.1/#dfn-paymentrequest-paymentrequest", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-id-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-id-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-supportedmethods-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-supportedmethods-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-supportedmethods-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-data-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-data-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-supportedmethods-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-additional-data-type-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-additional-data-type-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-steps-to-validate-payment-method-data-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-supportedmethods-5", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-0", - "https://www.w3.org/TR/payment-request-1.1/#h-note-0", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-supportedmethods-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-total-amount-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-total-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-amount-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-amount-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-id-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-id-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-selected-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-id-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-total-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-total-amount-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-total-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-amount-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-supportedmethods-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-handler-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-created-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-updating-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-details-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmodifierdata-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmethoddata-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingtype-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-shippingtype-1", - "https://www.w3.org/TR/payment-request-1.1/#id-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x3-2-id-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-id", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-id-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-details-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-id-3", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-1", - "https://www.w3.org/TR/payment-request-1.1/#h-note-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-id-4", - "https://www.w3.org/TR/payment-request-1.1/#show-method", - "https://www.w3.org/TR/payment-request-1.1/#x3-3-show-method", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-show", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-2", - "https://www.w3.org/TR/payment-request-1.1/#h-note-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-accepts-the-payment-request-algorithm-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-created-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-acceptpromise-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-2", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-3", - "https://www.w3.org/TR/payment-request-1.1/#h-note-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-aborts-the-payment-request-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmethoddata-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-additional-data-type-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-4", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-4", - "https://www.w3.org/TR/payment-request-1.1/#h-note-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-steps-to-check-if-a-payment-can-be-made-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-5", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-5", - "https://www.w3.org/TR/payment-request-1.1/#h-note-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-update-a-paymentrequest-s-details-algorithm-1", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-6", - "https://www.w3.org/TR/payment-request-1.1/#h-note-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-update-a-paymentrequest-s-details-algorithm-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-handler-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmodifierdata-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-handler-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmodifierdata-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmodifierdata-4", - "https://www.w3.org/TR/payment-request-1.1/#example-handling-of-multiple-applicable-modifiers", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmodifierdata-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-accepts-the-payment-request-algorithm-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-aborts-the-payment-request-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-6", - "https://www.w3.org/TR/payment-request-1.1/#abort-method", - "https://www.w3.org/TR/payment-request-1.1/#x3-4-abort-method", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-abort", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-7", - "https://www.w3.org/TR/payment-request-1.1/#h-note-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-abort-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-abort-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-0-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-acceptpromise-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-abort-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-aborts-the-payment-request-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-abort-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-acceptpromise-3", - "https://www.w3.org/TR/payment-request-1.1/#canmakepayment-method", - "https://www.w3.org/TR/payment-request-1.1/#x3-5-canmakepayment-method", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-canmakepayment", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-8", - "https://www.w3.org/TR/payment-request-1.1/#h-note-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-canmakepayment-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-canmakepayment-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-canmakepayment-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-can-make-payment-algorithm-1", - "https://www.w3.org/TR/payment-request-1.1/#shippingaddress-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x3-6-shippingaddress-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-shippingaddress", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shipping-address-changed-algorithm-1", - "https://www.w3.org/TR/payment-request-1.1/#shippingtype-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x3-7-shippingtype-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-shippingtype", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingtype-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-paymentrequest-paymentrequest-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-shippingtype-2", - "https://www.w3.org/TR/payment-request-1.1/#onshippingaddresschange-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x3-8-onshippingaddresschange-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-onshippingaddresschange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-16", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-onshippingaddresschange-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shippingaddresschange-1", - "https://www.w3.org/TR/payment-request-1.1/#shippingoption-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x3-9-shippingoption-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-shippingoption", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-17", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shipping-option-changed-algorithm-1", - "https://www.w3.org/TR/payment-request-1.1/#onshippingoptionchange-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x3-10-onshippingoptionchange-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-onshippingoptionchange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-18", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-onshippingoptionchange-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shippingoptionchange-1", - "https://www.w3.org/TR/payment-request-1.1/#onpaymentmethodchange-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x3-11-onpaymentmethodchange-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequest-onpaymentmethodchange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-19", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-onpaymentmethodchange-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-paymentmethodchange-1", - "https://www.w3.org/TR/payment-request-1.1/#internal-slots", - "https://www.w3.org/TR/payment-request-1.1/#x3-12-internal-slots", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-20", - "https://www.w3.org/TR/payment-request-1.1/#dfn-serializedmethoddata", - "https://www.w3.org/TR/payment-request-1.1/#dfn-serializedmodifierdata", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-details-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-4", - "https://www.w3.org/TR/payment-request-1.1/#dfn-details", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmodifierdata-6", - "https://www.w3.org/TR/payment-request-1.1/#dfn-options", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-5", - "https://www.w3.org/TR/payment-request-1.1/#dfn-state", - "https://www.w3.org/TR/payment-request-1.1/#dfn-state-0", - "https://www.w3.org/TR/payment-request-1.1/#dfn-created", - "https://www.w3.org/TR/payment-request-1.1/#dfn-interactive", - "https://www.w3.org/TR/payment-request-1.1/#dfn-closed", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-0-2", - "https://www.w3.org/TR/payment-request-1.1/#fig-the-constructor-sets-the-initial-state-to-created-the-show-method-changes-the-state-to-interactive-from-there-the-abort-method-or-any-other-error-can-send-the-state-to-closed-similarly-the-user-accepts-the-payment-request-algorithm-and-user-aborts-the-payment-request-algorithm-will-change-the-state-to-closed", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-0-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-created-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-0-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-abort-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-0-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-accepts-the-payment-request-algorithm-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-aborts-the-payment-request-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-0-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-7", - "https://www.w3.org/TR/payment-request-1.1/#dfn-updating", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-2", - "https://www.w3.org/TR/payment-request-1.1/#dfn-acceptpromise", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-12", - "https://www.w3.org/TR/payment-request-1.1/#dfn-response", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-21", - "https://www.w3.org/TR/payment-request-1.1/#dfn-handler", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-22", - "https://www.w3.org/TR/payment-request-1.1/#paymentmethoddata-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x4-paymentmethoddata-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethoddata", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1205695403", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethoddata", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-7", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethoddata-supportedmethods", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-supportedmethods-7", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethoddata-data", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-data-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-13", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethoddata-supportedmethods", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-14", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethoddata-data", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-9", - "https://www.w3.org/TR/payment-request-1.1/#h-note-9", - "https://www.w3.org/TR/payment-request-1.1/#paymentcurrencyamount-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x5-paymentcurrencyamount-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcurrencyamount", - "https://www.w3.org/TR/payment-request-1.1/#webidl-826862570", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentcurrencyamount", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentcurrencyamount-currency", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-currency-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentcurrencyamount-value", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-value-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcurrencyamount-currency", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-currency-2", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-10", - "https://www.w3.org/TR/payment-request-1.1/#h-note-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-amount-4", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcurrencyamount-value", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-valid-decimal-monetary-value-1", - "https://www.w3.org/TR/payment-request-1.1/#example-how-to-represent-1-234-omani-rials", - "https://www.w3.org/TR/payment-request-1.1/#validity-checkers", - "https://www.w3.org/TR/payment-request-1.1/#x5-1-validity-checkers", - "https://www.w3.org/TR/payment-request-1.1/#dfn-valid-decimal-monetary-value", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-11", - "https://www.w3.org/TR/payment-request-1.1/#h-note-11", - "https://www.w3.org/TR/payment-request-1.1/#dfn-check-and-canonicalize-amount", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-currency-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-value-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-valid-decimal-monetary-value-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-currency-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-currency-5", - "https://www.w3.org/TR/payment-request-1.1/#dfn-check-and-canonicalize-total-amount", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-amount-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-value-3", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-12", - "https://www.w3.org/TR/payment-request-1.1/#h-note-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-value-4", - "https://www.w3.org/TR/payment-request-1.1/#payment-details-dictionaries", - "https://www.w3.org/TR/payment-request-1.1/#x6-payment-details-dictionaries", - "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsbase-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x6-1-paymentdetailsbase-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase", - "https://www.w3.org/TR/payment-request-1.1/#webidl-914982787", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsbase", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsbase-displayitems", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-3", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsbase-shippingoptions", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-4", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsbase-modifiers", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-6", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase-displayitems", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-12", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-13", - "https://www.w3.org/TR/payment-request-1.1/#h-note-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-23", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-total-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase-shippingoptions", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-selected-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-id-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shipping-option-changed-algorithm-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-selected-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-24", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-4", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-14", - "https://www.w3.org/TR/payment-request-1.1/#h-note-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-selected-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-total-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shippingoptionchange-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsbase-modifiers", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-4", - "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsinit-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x6-2-paymentdetailsinit-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsinit", - "https://www.w3.org/TR/payment-request-1.1/#webidl-47162060", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsinit", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-3", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsinit-id", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-id-5", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsinit-total", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-total-4", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-15", - "https://www.w3.org/TR/payment-request-1.1/#h-note-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-6", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsinit-id", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-16", - "https://www.w3.org/TR/payment-request-1.1/#h-note-16", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-id-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-paymentrequest-paymentrequest-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsinit-total", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-4", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-17", - "https://www.w3.org/TR/payment-request-1.1/#h-note-17", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-total-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-value-5", - "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsupdate-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x6-3-paymentdetailsupdate-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate", - "https://www.w3.org/TR/payment-request-1.1/#webidl-505108935", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsupdate", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-5", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsupdate-error", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-error-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsupdate-total", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-total-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsupdate-shippingaddresserrors", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-3", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsupdate-payererrors", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-payererrors-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsupdate-paymentmethoderrors", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-5", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-error", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-error-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-25", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-5", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-total", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-7", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-18", - "https://www.w3.org/TR/payment-request-1.1/#h-note-18", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-total-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-value-6", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-shippingaddresserrors", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-payererrors", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payer-details-1", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsupdate-paymentmethoderrors", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-15", - "https://www.w3.org/TR/payment-request-1.1/#paymentdetailsmodifier-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x7-paymentdetailsmodifier-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1242509167", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsmodifier", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-5", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsmodifier-supportedmethods", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-supportedmethods-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsmodifier-total", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-total-3", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsmodifier-additionaldisplayitems", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-3", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentdetailsmodifier-data", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-7", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-supportedmethods", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-16", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-total", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-total-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-supportedmethods-3", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-additionaldisplayitems", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-supportedmethods-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-total-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-17", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-19", - "https://www.w3.org/TR/payment-request-1.1/#h-note-19", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-total-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-4", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentdetailsmodifier-data", - "https://www.w3.org/TR/payment-request-1.1/#paymentshippingtype-enum", - "https://www.w3.org/TR/payment-request-1.1/#x8-paymentshippingtype-enum", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingtype", - "https://www.w3.org/TR/payment-request-1.1/#webidl-119612894", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentshippingtype", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-shipping-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-delivery-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-pickup-1", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingtype-shipping", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shipping-address-1", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingtype-delivery", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shipping-address-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingtype-pickup", - "https://www.w3.org/TR/payment-request-1.1/#paymentoptions-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x9-paymentoptions-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1552147530", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentoptions", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-7", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentoptions-requestpayername", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayername-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentoptions-requestbillingaddress", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestbillingaddress-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentoptions-requestpayeremail", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayeremail-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentoptions-requestpayerphone", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayerphone-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentoptions-requestshipping", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-6", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentoptions-shippingtype", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-shippingtype-3", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-20", - "https://www.w3.org/TR/payment-request-1.1/#h-note-20", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-26", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestbillingaddress", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-billing-address-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-18", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methoddetails-1", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestpayername", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-16", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestpayeremail", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-17", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestpayerphone", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-18", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-requestshipping", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-19", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shipping-address-3", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentoptions-shippingtype", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-shippingtype-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-20", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-shippingtype-5", - "https://www.w3.org/TR/payment-request-1.1/#paymentitem-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x10-paymentitem-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1435887180", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentitem", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-11", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentitem-label", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-label-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentitem-amount", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-9", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentitem-pending", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-pending-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-9", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem-label", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-21", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-21", - "https://www.w3.org/TR/payment-request-1.1/#h-note-21", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-label-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem-amount", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-6", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentitem-pending", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-22", - "https://www.w3.org/TR/payment-request-1.1/#paymentcompletedetails-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x11-paymentcompletedetails-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcompletedetails", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1518429867", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentcompletedetails", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcompletedetails-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentcompletedetails-data", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcompletedetails-data-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcompletedetails-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcompletedetails-3", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcompletedetails-data", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-19", - "https://www.w3.org/TR/payment-request-1.1/#paymentcomplete-enum", - "https://www.w3.org/TR/payment-request-1.1/#x12-paymentcomplete-enum", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1223986974", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentcomplete", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-fail-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-success-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-unknown-1", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete-fail", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-23", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete-success", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-24", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentcomplete-unknown", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-25", - "https://www.w3.org/TR/payment-request-1.1/#paymentshippingoption-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x13-paymentshippingoption-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1340523886", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentshippingoption", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-3", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentshippingoption-id", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-id-5", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentshippingoption-label", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-label-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentshippingoption-amount", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-amount-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentshippingoption-selected", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-selected-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-5", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption-id", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-27", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption-label", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-26", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption-amount", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-8", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentshippingoption-selected", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-27", - "https://www.w3.org/TR/payment-request-1.1/#paymentresponse-interface", - "https://www.w3.org/TR/payment-request-1.1/#x14-paymentresponse-interface", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse", - "https://www.w3.org/TR/payment-request-1.1/#webidl-2136333605", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-7", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-tojson", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-requestid", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-requestid-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-methodname", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-methodname-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-details", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-details-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-shippingaddress", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingaddress-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-shippingoption", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingoption-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-payername", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payername-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-payeremail", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payeremail-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-payerphone", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payerphone-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-complete-result-details", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcompletedetails-4", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-retry-errorfields", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-retry-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentresponse-onpayerdetailchange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-onpayerdetailchange-1", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-22", - "https://www.w3.org/TR/payment-request-1.1/#h-note-22", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-8", - "https://www.w3.org/TR/payment-request-1.1/#retry-method", - "https://www.w3.org/TR/payment-request-1.1/#x14-1-retry-method", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-retry", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-23", - "https://www.w3.org/TR/payment-request-1.1/#h-note-23", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-retry-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-28", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-retry-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-request-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-complete-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayername-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-payer-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-name-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayeremail-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-payer-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-email-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayerphone-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-payer-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-phone-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-shippingaddress-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-paymentmethod-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-methodname-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-paymentmethod-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-28", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-error-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-5", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-24", - "https://www.w3.org/TR/payment-request-1.1/#h-note-24", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-accepts-the-payment-request-algorithm-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-aborts-the-payment-request-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-1", - "https://www.w3.org/TR/payment-request-1.1/#paymentvalidationerrors-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x14-1-1-paymentvalidationerrors-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors", - "https://www.w3.org/TR/payment-request-1.1/#webidl-65418220", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentvalidationerrors", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-4", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentvalidationerrors-payer", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-payer-4", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentvalidationerrors-shippingaddress", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-shippingaddress-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentvalidationerrors-error", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-error-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentvalidationerrors-paymentmethod", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-paymentmethod-3", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-payer", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payer-details-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-shippingaddress", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingaddress-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-error", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-error-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-5", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-25", - "https://www.w3.org/TR/payment-request-1.1/#h-note-25", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-error-4", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentvalidationerrors-paymentmethod", - "https://www.w3.org/TR/payment-request-1.1/#payererrors-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x14-1-2-payererrors-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-payererrors", - "https://www.w3.org/TR/payment-request-1.1/#webidl-73171198", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-payererrors", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-3", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-payererrors-email", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-email-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-payererrors-name", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-name-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-payererrors-phone", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-phone-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payer-details-3", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payer-details", - "https://www.w3.org/TR/payment-request-1.1/#dom-payererrors-email", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payeremail-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-payererrors-name", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-16", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payername-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-payererrors-phone", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-17", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payerphone-2", - "https://www.w3.org/TR/payment-request-1.1/#example-payer-related-validation-errors", - "https://www.w3.org/TR/payment-request-1.1/#methodname-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x14-2-methodname-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-methodname", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-20", - "https://www.w3.org/TR/payment-request-1.1/#details-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x14-3-details-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-details", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-21", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-22", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-26", - "https://www.w3.org/TR/payment-request-1.1/#h-note-26", - "https://www.w3.org/TR/payment-request-1.1/#shippingaddress-attribute-0", - "https://www.w3.org/TR/payment-request-1.1/#x14-4-shippingaddress-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-shippingaddress", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-29", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shipping-address-4", - "https://www.w3.org/TR/payment-request-1.1/#shippingoption-attribute-0", - "https://www.w3.org/TR/payment-request-1.1/#x14-5-shippingoption-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-shippingoption", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-30", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-id-6", - "https://www.w3.org/TR/payment-request-1.1/#payername-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x14-6-payername-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-payername", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayername-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-31", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payername-3", - "https://www.w3.org/TR/payment-request-1.1/#payeremail-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x14-7-payeremail-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-payeremail", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayeremail-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-32", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payeremail-3", - "https://www.w3.org/TR/payment-request-1.1/#payerphone-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x14-8-payerphone-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-payerphone", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayerphone-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-33", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payerphone-3", - "https://www.w3.org/TR/payment-request-1.1/#requestid-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x14-9-requestid-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-requestid", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-id-3", - "https://www.w3.org/TR/payment-request-1.1/#complete-method", - "https://www.w3.org/TR/payment-request-1.1/#x14-10-complete-method", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-complete", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-27", - "https://www.w3.org/TR/payment-request-1.1/#h-note-27", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-acceptpromise-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-29", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-18", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-complete-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcompletedetails-data-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-methodname-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-methodname-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-methodname-5", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-28", - "https://www.w3.org/TR/payment-request-1.1/#h-note-28", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-complete-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-30", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-11", - "https://www.w3.org/TR/payment-request-1.1/#onpayerdetailchange-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x14-11-onpayerdetailchange-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentresponse-onpayerdetailchange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payerdetailchange-1", - "https://www.w3.org/TR/payment-request-1.1/#internal-slots-0", - "https://www.w3.org/TR/payment-request-1.1/#x14-12-internal-slots", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-19", - "https://www.w3.org/TR/payment-request-1.1/#dfn-complete", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-9", - "https://www.w3.org/TR/payment-request-1.1/#dfn-request", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-34", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-20", - "https://www.w3.org/TR/payment-request-1.1/#dfn-retrypromise", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-accepts-the-payment-request-algorithm-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-aborts-the-payment-request-6", - "https://www.w3.org/TR/payment-request-1.1/#shipping-and-billing-addresses", - "https://www.w3.org/TR/payment-request-1.1/#x15-shipping-and-billing-addresses", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-35", - "https://www.w3.org/TR/payment-request-1.1/#dfn-shipping-address", - "https://www.w3.org/TR/payment-request-1.1/#dfn-billing-address", - "https://www.w3.org/TR/payment-request-1.1/#addresserrors-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x15-1-addresserrors-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors", - "https://www.w3.org/TR/payment-request-1.1/#webidl-2030492674", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-4", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-addressline", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-addressline-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-city", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-city-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-country", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-country-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-dependentlocality", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-dependentlocality-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-organization", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-organization-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-phone", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-phone-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-postalcode", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-postalcode-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-recipient", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-recipient-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-region", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-region-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-addresserrors-sortingcode", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-sortingcode-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-5", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-29", - "https://www.w3.org/TR/payment-request-1.1/#h-note-29", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-addressline", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-city", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-country", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-dependentlocality", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-organization", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-phone", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-postalcode", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-recipient", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-region", - "https://www.w3.org/TR/payment-request-1.1/#dom-addresserrors-sortingcode", - "https://www.w3.org/TR/payment-request-1.1/#permissions-policy", - "https://www.w3.org/TR/payment-request-1.1/#x16-permissions-policy-integration", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payment", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-30", - "https://www.w3.org/TR/payment-request-1.1/#h-note-30", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-36", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-37", - "https://www.w3.org/TR/payment-request-1.1/#events", - "https://www.w3.org/TR/payment-request-1.1/#x17-events", - "https://www.w3.org/TR/payment-request-1.1/#summary", - "https://www.w3.org/TR/payment-request-1.1/#x17-1-summary", - "https://www.w3.org/TR/payment-request-1.1/#dfn-shippingaddresschange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-38", - "https://www.w3.org/TR/payment-request-1.1/#dfn-shippingoptionchange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-39", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payerdetailchange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payer-detail-changed-algorithm-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-21", - "https://www.w3.org/TR/payment-request-1.1/#dfn-paymentmethodchange", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-23", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-40", - "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeevent-interface", - "https://www.w3.org/TR/payment-request-1.1/#x17-2-paymentmethodchangeevent-interface", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1848946631", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethodchangeevent", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-6", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethodchangeevent-constructor-type-eventinitdict", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-constructor", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethodchangeevent-methodname", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methodname-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethodchangeevent-methoddetails", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methoddetails-2", - "https://www.w3.org/TR/payment-request-1.1/#methoddetails-attribute", - "https://www.w3.org/TR/payment-request-1.1/#x17-2-1-methoddetails-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-methoddetails", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-methoddetails-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-2", - "https://www.w3.org/TR/payment-request-1.1/#methodname-attribute-0", - "https://www.w3.org/TR/payment-request-1.1/#x17-2-2-methodname-attribute", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeevent-methodname", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-methodname-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-3", - "https://www.w3.org/TR/payment-request-1.1/#paymentmethodchangeeventinit-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x17-2-3-paymentmethodchangeeventinit-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeeventinit", - "https://www.w3.org/TR/payment-request-1.1/#webidl-746190437", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethodchangeeventinit", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateeventinit-1", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethodchangeeventinit-methodname", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-methodname-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentmethodchangeeventinit-methoddetails", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-methoddetails-2", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeeventinit-methodname", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentmethodchangeeventinit-methoddetails", - "https://www.w3.org/TR/payment-request-1.1/#paymentrequestupdateevent-interface", - "https://www.w3.org/TR/payment-request-1.1/#x17-3-paymentrequestupdateevent-interface", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent", - "https://www.w3.org/TR/payment-request-1.1/#webidl-1601085411", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequestupdateevent", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-7", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequestupdateevent-constructor-type-eventinitdict", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-constructor-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateeventinit-2", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequestupdateevent-updatewith-detailspromise", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-8", - "https://www.w3.org/TR/payment-request-1.1/#constructor-0", - "https://www.w3.org/TR/payment-request-1.1/#x17-3-1-constructor", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-constructor", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-constructor-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-waitforupdate-1", - "https://www.w3.org/TR/payment-request-1.1/#updatewith-method", - "https://www.w3.org/TR/payment-request-1.1/#x17-3-2-updatewith-method", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateevent-updatewith", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-31", - "https://www.w3.org/TR/payment-request-1.1/#h-note-31", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-31", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-8", - "https://www.w3.org/TR/payment-request-1.1/#example-how-to-use-updatewith-correctly", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-waitforupdate-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-11", - "https://www.w3.org/TR/payment-request-1.1/#example-can-only-call-updatewith-once", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-waitforupdate-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-22", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-request-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-41", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-updating-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-waitforupdate-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methodname-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methodname-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-update-a-paymentrequest-s-details-algorithm-3", - "https://www.w3.org/TR/payment-request-1.1/#internal-slots-1", - "https://www.w3.org/TR/payment-request-1.1/#x17-3-3-internal-slots", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-12", - "https://www.w3.org/TR/payment-request-1.1/#dfn-waitforupdate", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-10", - "https://www.w3.org/TR/payment-request-1.1/#paymentrequestupdateeventinit-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#x17-3-4-paymentrequestupdateeventinit-dictionary", - "https://www.w3.org/TR/payment-request-1.1/#dom-paymentrequestupdateeventinit", - "https://www.w3.org/TR/payment-request-1.1/#webidl-349124107", - "https://www.w3.org/TR/payment-request-1.1/#idl-def-paymentrequestupdateeventinit", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateeventinit-3", - "https://www.w3.org/TR/payment-request-1.1/#algorithms", - "https://www.w3.org/TR/payment-request-1.1/#x18-algorithms", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-42", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-32", - "https://www.w3.org/TR/payment-request-1.1/#can-make-payment-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#x18-1-can-make-payment-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#dfn-can-make-payment-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-33", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-24", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-43", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-44", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-created-4", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-32", - "https://www.w3.org/TR/payment-request-1.1/#h-note-32", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-45", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-25", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-can-make-payment-algorithm-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmethoddata-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-11", - "https://www.w3.org/TR/payment-request-1.1/#shipping-address-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#x18-2-shipping-address-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#dfn-shipping-address-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-46", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-33", - "https://www.w3.org/TR/payment-request-1.1/#h-note-33", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-paymentrequest-updated-algorithm-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shippingaddresschange-2", - "https://www.w3.org/TR/payment-request-1.1/#shipping-option-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#x18-3-shipping-option-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#dfn-shipping-option-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-47", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-paymentrequest-updated-algorithm-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shippingoptionchange-3", - "https://www.w3.org/TR/payment-request-1.1/#payment-method-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#x18-4-payment-method-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-12", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payment-method-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-26", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-13", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-34", - "https://www.w3.org/TR/payment-request-1.1/#h-note-34", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-48", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-updating-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-paymentmethodchange-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methodname-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methoddetails-3", - "https://www.w3.org/TR/payment-request-1.1/#paymentrequest-updated-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#x18-5-paymentrequest-updated-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#dfn-paymentrequest-updated-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-49", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-updating-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-waitforupdate-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-waitforupdate-6", - "https://www.w3.org/TR/payment-request-1.1/#payer-detail-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#x18-6-payer-detail-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#dfn-payer-detail-changed-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-50", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-updating-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-16", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayername-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payername-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayeremail-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payeremail-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayerphone-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payerphone-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payerdetailchange-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-waitforupdate-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-waitforupdate-8", - "https://www.w3.org/TR/payment-request-1.1/#user-accepts-the-payment-request-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#x18-7-user-accepts-the-payment-request-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#dfn-user-accepts-the-payment-request-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-51", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-updating-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-34", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-17", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-35", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-36", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-23", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-request-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-complete-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-requestid-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-details-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-id-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-handler-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-methodname-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-details-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-steps-to-respond-to-a-payment-request-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingaddress-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingaddress-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingaddress-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingoption-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingoption-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayername-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payername-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayeremail-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payeremail-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayerphone-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payerphone-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payerphone-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-18", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-acceptpromise-5", - "https://www.w3.org/TR/payment-request-1.1/#user-aborts-the-payment-request-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#x18-8-user-aborts-the-payment-request-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#dfn-user-aborts-the-payment-request", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-52", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-19", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-interactive-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-37", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-20", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-complete-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-acceptpromise-6", - "https://www.w3.org/TR/payment-request-1.1/#update-a-paymentrequest-s-details-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#x18-9-update-a-paymentrequest-s-details-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#dfn-update-a-paymentrequest-s-details-algorithm", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-53", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-aborts-the-payment-request-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-updating-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-total-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-total-amount-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-total-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-amount-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-amount-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-amount-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-id-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-selected-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-id-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-supportedmethods-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-total-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-total-amount-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-total-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-check-and-canonicalize-amount-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-54", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-total-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-details-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-total-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-total-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-details-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-details-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-details-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-serializedmodifierdata-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-16", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-details-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-error-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-options-16", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayername-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayeremail-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayerphone-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-updating-8", - "https://www.w3.org/TR/payment-request-1.1/#abort-the-update", - "https://www.w3.org/TR/payment-request-1.1/#x18-9-1-abort-the-update", - "https://www.w3.org/TR/payment-request-1.1/#dfn-abort-the-update", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-55", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-relevant-browsing-context-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-request-is-showing-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-state-21", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-response-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-complete-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-acceptpromise-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-updating-9", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-35", - "https://www.w3.org/TR/payment-request-1.1/#h-note-35", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-56", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-closed-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-acceptpromise-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-abort-the-update-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-retry-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-retrypromise-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-24", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-complete-7", - "https://www.w3.org/TR/payment-request-1.1/#privacy", - "https://www.w3.org/TR/payment-request-1.1/#x19-privacy-and-security-considerations", - "https://www.w3.org/TR/payment-request-1.1/#user-protections-with-show-method", - "https://www.w3.org/TR/payment-request-1.1/#x19-1-user-protections-with-show-method", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-16", - "https://www.w3.org/TR/payment-request-1.1/#secure-contexts", - "https://www.w3.org/TR/payment-request-1.1/#x19-2-secure-contexts", - "https://www.w3.org/TR/payment-request-1.1/#cross-origin-payment-requests", - "https://www.w3.org/TR/payment-request-1.1/#x19-3-cross-origin-payment-requests", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-16", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-57", - "https://www.w3.org/TR/payment-request-1.1/#encryption-of-data-fields", - "https://www.w3.org/TR/payment-request-1.1/#x19-4-encryption-of-data-fields", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-58", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-27", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-28", - "https://www.w3.org/TR/payment-request-1.1/#how-user-agents-match-payment-handlers", - "https://www.w3.org/TR/payment-request-1.1/#x19-5-how-user-agents-match-payment-handlers", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-17", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-canmakepayment-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-handler-17", - "https://www.w3.org/TR/payment-request-1.1/#data-usage-0", - "https://www.w3.org/TR/payment-request-1.1/#data-usage", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-29", - "https://www.w3.org/TR/payment-request-1.1/#exposing-user-information", - "https://www.w3.org/TR/payment-request-1.1/#user-info", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-38", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-shipping-address-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-data-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-25", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-details-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-details-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-39", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-user-agent-40", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-30", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-31", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-32", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-steps-for-when-a-user-changes-payment-method-1", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methoddetails-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-33", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-34", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-26", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-35", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dfn-payment-method-changed-algorithm-1", - "https://www.w3.org/TR/payment-request-1.1/#canmakepayment-protections-0", - "https://www.w3.org/TR/payment-request-1.1/#canmakepayment-protections", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-canmakepayment-6", - "https://www.w3.org/TR/payment-request-1.1/#accessibility-considerations", - "https://www.w3.org/TR/payment-request-1.1/#x20-accessibility-considerations", - "https://www.w3.org/TR/payment-request-1.1/#dependencies", - "https://www.w3.org/TR/payment-request-1.1/#x21-dependencies", - "https://www.w3.org/TR/payment-request-1.1/#dfn-internal-slot", - "https://www.w3.org/TR/payment-request-1.1/#conformance", - "https://www.w3.org/TR/payment-request-1.1/#x22-conformance", - "https://www.w3.org/TR/payment-request-1.1/#dfn-user-agent", - "https://www.w3.org/TR/payment-request-1.1/#issue-container-generatedID-36", - "https://www.w3.org/TR/payment-request-1.1/#h-note-36", - "https://www.w3.org/TR/payment-request-1.1/#idl-index", - "https://www.w3.org/TR/payment-request-1.1/#a-idl-index", - "https://www.w3.org/TR/payment-request-1.1/#actual-idl-index", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-59", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-27", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-show-18", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-13", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-abort-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-canmakepayment-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-id-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingaddress-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingoption-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-shippingtype-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-onshippingaddresschange-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-onshippingoptionchange-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequest-onpaymentmethodchange-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-supportedmethods-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethoddata-data-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-currency-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-value-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-displayitems-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-shippingoptions-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-modifiers-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-id-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsinit-total-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-14", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsbase-12", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-error-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-16", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-total-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-payererrors-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-supportedmethods-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-17", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-total-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-18", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsmodifier-data-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-shipping-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-delivery-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-pickup-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayername-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestbillingaddress-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayeremail-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestpayerphone-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-requestshipping-17", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingtype-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentoptions-shippingtype-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-19", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-label-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-amount-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentitem-pending-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcompletedetails-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcompletedetails-data-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-fail-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-success-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-unknown-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-id-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-label-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcurrencyamount-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-amount-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentshippingoption-selected-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-28", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-requestid-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-methodname-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-details-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingaddress-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-shippingoption-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payername-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payeremail-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-payerphone-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-complete-10", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcomplete-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentcompletedetails-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-retry-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentresponse-onpayerdetailchange-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-7", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-payer-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-shippingaddress-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-error-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentvalidationerrors-paymentmethod-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-8", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-email-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-name-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-payererrors-phone-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-addressline-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-city-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-country-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-dependentlocality-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-organization-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-phone-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-postalcode-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-recipient-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-region-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-addresserrors-sortingcode-2", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-9", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methodname-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeevent-methoddetails-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-6", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateeventinit-4", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-methodname-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentmethodchangeeventinit-methoddetails-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-16", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-constructor-3", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateeventinit-5", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateevent-updatewith-11", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentdetailsupdate-15", - "https://www.w3.org/TR/payment-request-1.1/#ref-for-dom-paymentrequestupdateeventinit-6", - "https://www.w3.org/TR/payment-request-1.1/#acknowledgements", - "https://www.w3.org/TR/payment-request-1.1/#b-acknowledgements", - "https://www.w3.org/TR/payment-request-1.1/#changelog", - "https://www.w3.org/TR/payment-request-1.1/#c-changelog", - "https://www.w3.org/TR/payment-request-1.1/#references", - "https://www.w3.org/TR/payment-request-1.1/#d-references", - "https://www.w3.org/TR/payment-request-1.1/#normative-references", - "https://www.w3.org/TR/payment-request-1.1/#d-1-normative-references", - "https://www.w3.org/TR/payment-request-1.1/#bib-contact-picker", - "https://www.w3.org/TR/payment-request-1.1/#bib-dom", - "https://www.w3.org/TR/payment-request-1.1/#bib-e.164", - "https://www.w3.org/TR/payment-request-1.1/#bib-ecma-402", - "https://www.w3.org/TR/payment-request-1.1/#bib-ecmascript", - "https://www.w3.org/TR/payment-request-1.1/#bib-fetch", - "https://www.w3.org/TR/payment-request-1.1/#bib-html", - "https://www.w3.org/TR/payment-request-1.1/#bib-infra", - "https://www.w3.org/TR/payment-request-1.1/#bib-iso4217", - "https://www.w3.org/TR/payment-request-1.1/#bib-payment-handler", - "https://www.w3.org/TR/payment-request-1.1/#bib-payment-method-id", - "https://www.w3.org/TR/payment-request-1.1/#bib-permissions-policy", - "https://www.w3.org/TR/payment-request-1.1/#bib-rfc2119", - "https://www.w3.org/TR/payment-request-1.1/#bib-rfc4122", - "https://www.w3.org/TR/payment-request-1.1/#bib-rfc8174", - "https://www.w3.org/TR/payment-request-1.1/#bib-url", - "https://www.w3.org/TR/payment-request-1.1/#bib-webidl", - "https://www.w3.org/TR/payment-request-1.1/#informative-references", - "https://www.w3.org/TR/payment-request-1.1/#d-2-informative-references", - "https://www.w3.org/TR/payment-request-1.1/#bib-rfc6454", - "https://www.w3.org/TR/payment-request-1.1/#bib-secure-contexts", - "https://www.w3.org/TR/payment-request-1.1/#back-to-top" - ] -} \ No newline at end of file diff --git a/tr/ids/payment-request.json b/tr/ids/payment-request.json new file mode 100644 index 000000000000..f82ab2fcc02f --- /dev/null +++ b/tr/ids/payment-request.json @@ -0,0 +1,1682 @@ +{ + "spec": { + "title": "Payment Request API", + "url": "https://www.w3.org/TR/payment-request/" + }, + "ids": [ + "https://www.w3.org/TR/payment-request/#initialUserConfig", + "https://www.w3.org/TR/payment-request/#toc-nav", + "https://www.w3.org/TR/payment-request/#toc-jump", + "https://www.w3.org/TR/payment-request/#toc-toggle", + "https://www.w3.org/TR/payment-request/#title", + "https://www.w3.org/TR/payment-request/#w3c-state", + "https://www.w3.org/TR/payment-request/#abstract", + "https://www.w3.org/TR/payment-request/#sotd", + "https://www.w3.org/TR/payment-request/#w3c_process_revision", + "https://www.w3.org/TR/payment-request/#toc", + "https://www.w3.org/TR/payment-request/#table-of-contents", + "https://www.w3.org/TR/payment-request/#introduction", + "https://www.w3.org/TR/payment-request/#x1-introduction", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-1", + "https://www.w3.org/TR/payment-request/#dfn-payment-method", + "https://www.w3.org/TR/payment-request/#dfn-payment-method-provider", + "https://www.w3.org/TR/payment-request/#dfn-additional-data-type", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-data-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-data-2", + "https://www.w3.org/TR/payment-request/#dfn-steps-to-validate-payment-method-data", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-data-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-additional-data-type-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-3", + "https://www.w3.org/TR/payment-request/#dfn-payment-handler", + "https://www.w3.org/TR/payment-request/#dfn-steps-to-check-if-a-payment-can-be-made", + "https://www.w3.org/TR/payment-request/#dfn-steps-to-respond-to-a-payment-request", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-4", + "https://www.w3.org/TR/payment-request/#dfn-steps-for-when-a-user-changes-payment-method", + "https://www.w3.org/TR/payment-request/#goals", + "https://www.w3.org/TR/payment-request/#x1-1-goals-and-scope", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-provider-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-provider-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-provider-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-5", + "https://www.w3.org/TR/payment-request/#examples-of-usage", + "https://www.w3.org/TR/payment-request/#x2-examples-of-usage", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-1", + "https://www.w3.org/TR/payment-request/#declaring-multiple-ways-of-paying", + "https://www.w3.org/TR/payment-request/#x2-1-declaring-multiple-ways-of-paying", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-8", + "https://www.w3.org/TR/payment-request/#example-the-methoddata-argument", + "https://www.w3.org/TR/payment-request/#describing-what-is-being-paid-for", + "https://www.w3.org/TR/payment-request/#x2-2-describing-what-is-being-paid-for", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-4", + "https://www.w3.org/TR/payment-request/#example-the-details-argument", + "https://www.w3.org/TR/payment-request/#adding-shipping-options", + "https://www.w3.org/TR/payment-request/#x2-3-adding-shipping-options", + "https://www.w3.org/TR/payment-request/#example-adding-shipping-options", + "https://www.w3.org/TR/payment-request/#conditional-modifications-to-payment-request", + "https://www.w3.org/TR/payment-request/#x2-4-conditional-modifications-to-payment-request", + "https://www.w3.org/TR/payment-request/#example-modifying-payment-request-based-on-card-type", + "https://www.w3.org/TR/payment-request/#requesting-specific-information-from-the-end-user", + "https://www.w3.org/TR/payment-request/#x2-5-requesting-specific-information-from-the-end-user", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-5", + "https://www.w3.org/TR/payment-request/#example-the-options-argument", + "https://www.w3.org/TR/payment-request/#constructing-a-paymentrequest", + "https://www.w3.org/TR/payment-request/#x2-6-constructing-a-paymentrequest", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-6", + "https://www.w3.org/TR/payment-request/#example-constructing-a-paymentrequest", + "https://www.w3.org/TR/payment-request/#handling-events-and-updating-the-payment-request", + "https://www.w3.org/TR/payment-request/#x2-7-handling-events-and-updating-the-payment-request", + "https://www.w3.org/TR/payment-request/#example-registering-event-handlers", + "https://www.w3.org/TR/payment-request/#fine-grained-error-reporting", + "https://www.w3.org/TR/payment-request/#x2-8-fine-grained-error-reporting", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-1", + "https://www.w3.org/TR/payment-request/#example-8", + "https://www.w3.org/TR/payment-request/#posting-payment-response-back-to-a-server", + "https://www.w3.org/TR/payment-request/#x2-9-posting-payment-response-back-to-a-server", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-3", + "https://www.w3.org/TR/payment-request/#example-posting-with-fetch", + "https://www.w3.org/TR/payment-request/#using-with-cross-origin-iframes", + "https://www.w3.org/TR/payment-request/#x2-10-using-with-cross-origin-iframes", + "https://www.w3.org/TR/payment-request/#example-using-payment-request-api-with-cross-origin-iframes", + "https://www.w3.org/TR/payment-request/#paymentrequest-interface", + "https://www.w3.org/TR/payment-request/#x3-paymentrequest-interface", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest", + "https://www.w3.org/TR/payment-request/#webidl-1134666017", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-7", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-constructor-methoddata-details-options", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-constructor", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-2", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-show-detailspromise", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-2", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-abort", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-abort-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-canmakepayment", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-canmakepayment-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-id", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-id-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-shippingaddress", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-shippingoption", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-shippingtype", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingtype-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-onshippingaddresschange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-onshippingaddresschange-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-onshippingoptionchange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-onshippingoptionchange-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequest-onpaymentmethodchange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-onpaymentmethodchange-1", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID", + "https://www.w3.org/TR/payment-request/#h-note", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingtype-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-1", + "https://www.w3.org/TR/payment-request/#dfn-payment-relevant-browsing-context", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-1", + "https://www.w3.org/TR/payment-request/#dfn-payment-request-is-showing", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-3", + "https://www.w3.org/TR/payment-request/#constructor", + "https://www.w3.org/TR/payment-request/#x3-1-constructor", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-data-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-3", + "https://www.w3.org/TR/payment-request/#dfn-paymentrequest-paymentrequest", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-id-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-id-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-supportedmethods-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-supportedmethods-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-supportedmethods-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-data-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-data-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-supportedmethods-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-additional-data-type-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-additional-data-type-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-steps-to-validate-payment-method-data-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-supportedmethods-5", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-0", + "https://www.w3.org/TR/payment-request/#h-note-0", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-supportedmethods-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-total-amount-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-total-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-amount-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-amount-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-id-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-id-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-selected-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-id-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-total-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-total-amount-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-total-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-amount-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-supportedmethods-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-12", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-handler-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-created-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-updating-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-details-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmodifierdata-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmethoddata-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingtype-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-shippingtype-1", + "https://www.w3.org/TR/payment-request/#id-attribute", + "https://www.w3.org/TR/payment-request/#x3-2-id-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-id", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-id-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-13", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-details-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-id-3", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-1", + "https://www.w3.org/TR/payment-request/#h-note-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-id-4", + "https://www.w3.org/TR/payment-request/#show-method", + "https://www.w3.org/TR/payment-request/#x3-3-show-method", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-show", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-2", + "https://www.w3.org/TR/payment-request/#h-note-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-accepts-the-payment-request-algorithm-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-created-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-acceptpromise-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-2", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-3", + "https://www.w3.org/TR/payment-request/#h-note-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-aborts-the-payment-request-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmethoddata-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-additional-data-type-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-4", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-4", + "https://www.w3.org/TR/payment-request/#h-note-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-steps-to-check-if-a-payment-can-be-made-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-5", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-5", + "https://www.w3.org/TR/payment-request/#h-note-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-update-a-paymentrequest-s-details-algorithm-1", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-6", + "https://www.w3.org/TR/payment-request/#h-note-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-update-a-paymentrequest-s-details-algorithm-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-handler-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmodifierdata-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-handler-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmodifierdata-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmodifierdata-4", + "https://www.w3.org/TR/payment-request/#example-handling-of-multiple-applicable-modifiers", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmodifierdata-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-accepts-the-payment-request-algorithm-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-aborts-the-payment-request-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-6", + "https://www.w3.org/TR/payment-request/#abort-method", + "https://www.w3.org/TR/payment-request/#x3-4-abort-method", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-abort", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-7", + "https://www.w3.org/TR/payment-request/#h-note-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-abort-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-abort-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-0-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-acceptpromise-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-abort-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-aborts-the-payment-request-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-abort-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-acceptpromise-3", + "https://www.w3.org/TR/payment-request/#canmakepayment-method", + "https://www.w3.org/TR/payment-request/#x3-5-canmakepayment-method", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-canmakepayment", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-8", + "https://www.w3.org/TR/payment-request/#h-note-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-canmakepayment-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-canmakepayment-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-canmakepayment-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-can-make-payment-algorithm-1", + "https://www.w3.org/TR/payment-request/#shippingaddress-attribute", + "https://www.w3.org/TR/payment-request/#x3-6-shippingaddress-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-shippingaddress", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shipping-address-changed-algorithm-1", + "https://www.w3.org/TR/payment-request/#shippingtype-attribute", + "https://www.w3.org/TR/payment-request/#x3-7-shippingtype-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-shippingtype", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingtype-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-paymentrequest-paymentrequest-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-shippingtype-2", + "https://www.w3.org/TR/payment-request/#onshippingaddresschange-attribute", + "https://www.w3.org/TR/payment-request/#x3-8-onshippingaddresschange-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-onshippingaddresschange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-16", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-onshippingaddresschange-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shippingaddresschange-1", + "https://www.w3.org/TR/payment-request/#shippingoption-attribute", + "https://www.w3.org/TR/payment-request/#x3-9-shippingoption-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-shippingoption", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-17", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shipping-option-changed-algorithm-1", + "https://www.w3.org/TR/payment-request/#onshippingoptionchange-attribute", + "https://www.w3.org/TR/payment-request/#x3-10-onshippingoptionchange-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-onshippingoptionchange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-18", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-onshippingoptionchange-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shippingoptionchange-1", + "https://www.w3.org/TR/payment-request/#onpaymentmethodchange-attribute", + "https://www.w3.org/TR/payment-request/#x3-11-onpaymentmethodchange-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentrequest-onpaymentmethodchange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-19", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-onpaymentmethodchange-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-paymentmethodchange-1", + "https://www.w3.org/TR/payment-request/#internal-slots", + "https://www.w3.org/TR/payment-request/#x3-12-internal-slots", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-20", + "https://www.w3.org/TR/payment-request/#dfn-serializedmethoddata", + "https://www.w3.org/TR/payment-request/#dfn-serializedmodifierdata", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-details-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-4", + "https://www.w3.org/TR/payment-request/#dfn-details", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmodifierdata-6", + "https://www.w3.org/TR/payment-request/#dfn-options", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-5", + "https://www.w3.org/TR/payment-request/#dfn-state", + "https://www.w3.org/TR/payment-request/#dfn-state-0", + "https://www.w3.org/TR/payment-request/#dfn-created", + "https://www.w3.org/TR/payment-request/#dfn-interactive", + "https://www.w3.org/TR/payment-request/#dfn-closed", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-0-2", + "https://www.w3.org/TR/payment-request/#fig-the-constructor-sets-the-initial-state-to-created-the-show-method-changes-the-state-to-interactive-from-there-the-abort-method-or-any-other-error-can-send-the-state-to-closed-similarly-the-user-accepts-the-payment-request-algorithm-and-user-aborts-the-payment-request-algorithm-will-change-the-state-to-closed", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-0-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-created-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-0-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-abort-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-0-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-accepts-the-payment-request-algorithm-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-aborts-the-payment-request-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-0-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-7", + "https://www.w3.org/TR/payment-request/#dfn-updating", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-2", + "https://www.w3.org/TR/payment-request/#dfn-acceptpromise", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-12", + "https://www.w3.org/TR/payment-request/#dfn-response", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-21", + "https://www.w3.org/TR/payment-request/#dfn-handler", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-22", + "https://www.w3.org/TR/payment-request/#paymentmethoddata-dictionary", + "https://www.w3.org/TR/payment-request/#x4-paymentmethoddata-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentmethoddata", + "https://www.w3.org/TR/payment-request/#webidl-1205695403", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethoddata", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-7", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethoddata-supportedmethods", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-supportedmethods-7", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethoddata-data", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-data-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-12", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-13", + "https://www.w3.org/TR/payment-request/#dom-paymentmethoddata-supportedmethods", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-14", + "https://www.w3.org/TR/payment-request/#dom-paymentmethoddata-data", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-9", + "https://www.w3.org/TR/payment-request/#h-note-9", + "https://www.w3.org/TR/payment-request/#paymentcurrencyamount-dictionary", + "https://www.w3.org/TR/payment-request/#x5-paymentcurrencyamount-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount", + "https://www.w3.org/TR/payment-request/#webidl-826862570", + "https://www.w3.org/TR/payment-request/#idl-def-paymentcurrencyamount", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentcurrencyamount-currency", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-currency-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentcurrencyamount-value", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-value-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-2", + "https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount-currency", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-currency-2", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-10", + "https://www.w3.org/TR/payment-request/#h-note-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-amount-4", + "https://www.w3.org/TR/payment-request/#dom-paymentcurrencyamount-value", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-valid-decimal-monetary-value-1", + "https://www.w3.org/TR/payment-request/#example-how-to-represent-1-234-omani-rials", + "https://www.w3.org/TR/payment-request/#validity-checkers", + "https://www.w3.org/TR/payment-request/#x5-1-validity-checkers", + "https://www.w3.org/TR/payment-request/#dfn-valid-decimal-monetary-value", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-11", + "https://www.w3.org/TR/payment-request/#h-note-11", + "https://www.w3.org/TR/payment-request/#dfn-check-and-canonicalize-amount", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-currency-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-value-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-valid-decimal-monetary-value-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-currency-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-currency-5", + "https://www.w3.org/TR/payment-request/#dfn-check-and-canonicalize-total-amount", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-amount-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-value-3", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-12", + "https://www.w3.org/TR/payment-request/#h-note-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-value-4", + "https://www.w3.org/TR/payment-request/#payment-details-dictionaries", + "https://www.w3.org/TR/payment-request/#x6-payment-details-dictionaries", + "https://www.w3.org/TR/payment-request/#paymentdetailsbase-dictionary", + "https://www.w3.org/TR/payment-request/#x6-1-paymentdetailsbase-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase", + "https://www.w3.org/TR/payment-request/#webidl-914982787", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsbase", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-2", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsbase-displayitems", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-3", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsbase-shippingoptions", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-4", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsbase-modifiers", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-6", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase-displayitems", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-12", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-13", + "https://www.w3.org/TR/payment-request/#h-note-13", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-23", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-total-2", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase-shippingoptions", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-selected-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-id-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shipping-option-changed-algorithm-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-selected-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-13", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-24", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-4", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-14", + "https://www.w3.org/TR/payment-request/#h-note-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-selected-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-total-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shippingoptionchange-2", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsbase-modifiers", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-4", + "https://www.w3.org/TR/payment-request/#paymentdetailsinit-dictionary", + "https://www.w3.org/TR/payment-request/#x6-2-paymentdetailsinit-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsinit", + "https://www.w3.org/TR/payment-request/#webidl-47162060", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsinit", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-3", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsinit-id", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-id-5", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsinit-total", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-total-4", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-15", + "https://www.w3.org/TR/payment-request/#h-note-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-6", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsinit-id", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-16", + "https://www.w3.org/TR/payment-request/#h-note-16", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-id-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-14", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-paymentrequest-paymentrequest-2", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsinit-total", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-4", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-17", + "https://www.w3.org/TR/payment-request/#h-note-17", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-total-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-value-5", + "https://www.w3.org/TR/payment-request/#paymentdetailsupdate-dictionary", + "https://www.w3.org/TR/payment-request/#x6-3-paymentdetailsupdate-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate", + "https://www.w3.org/TR/payment-request/#webidl-505108935", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsupdate", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-5", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsupdate-error", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-error-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsupdate-total", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-total-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsupdate-shippingaddresserrors", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-3", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsupdate-payererrors", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-payererrors-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsupdate-paymentmethoderrors", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-5", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-error", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-error-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-25", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-5", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-total", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-7", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-18", + "https://www.w3.org/TR/payment-request/#h-note-18", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-total-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-value-6", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-shippingaddresserrors", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-payererrors", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payer-details-1", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsupdate-paymentmethoderrors", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-15", + "https://www.w3.org/TR/payment-request/#paymentdetailsmodifier-dictionary", + "https://www.w3.org/TR/payment-request/#x7-paymentdetailsmodifier-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier", + "https://www.w3.org/TR/payment-request/#webidl-1242509167", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsmodifier", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-5", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsmodifier-supportedmethods", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-supportedmethods-2", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsmodifier-total", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-total-3", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsmodifier-additionaldisplayitems", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-3", + "https://www.w3.org/TR/payment-request/#idl-def-paymentdetailsmodifier-data", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-7", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-supportedmethods", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-16", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-total", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-total-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-supportedmethods-3", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-additionaldisplayitems", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-supportedmethods-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-total-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-17", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-19", + "https://www.w3.org/TR/payment-request/#h-note-19", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-total-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-4", + "https://www.w3.org/TR/payment-request/#dom-paymentdetailsmodifier-data", + "https://www.w3.org/TR/payment-request/#paymentshippingtype-enum", + "https://www.w3.org/TR/payment-request/#x8-paymentshippingtype-enum", + "https://www.w3.org/TR/payment-request/#dom-paymentshippingtype", + "https://www.w3.org/TR/payment-request/#webidl-119612894", + "https://www.w3.org/TR/payment-request/#idl-def-paymentshippingtype", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-shipping-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-delivery-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-pickup-1", + "https://www.w3.org/TR/payment-request/#dom-paymentshippingtype-shipping", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shipping-address-1", + "https://www.w3.org/TR/payment-request/#dom-paymentshippingtype-delivery", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shipping-address-2", + "https://www.w3.org/TR/payment-request/#dom-paymentshippingtype-pickup", + "https://www.w3.org/TR/payment-request/#paymentoptions-dictionary", + "https://www.w3.org/TR/payment-request/#x9-paymentoptions-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentoptions", + "https://www.w3.org/TR/payment-request/#webidl-1552147530", + "https://www.w3.org/TR/payment-request/#idl-def-paymentoptions", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-7", + "https://www.w3.org/TR/payment-request/#idl-def-paymentoptions-requestpayername", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayername-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentoptions-requestbillingaddress", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestbillingaddress-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentoptions-requestpayeremail", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayeremail-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentoptions-requestpayerphone", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayerphone-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentoptions-requestshipping", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-6", + "https://www.w3.org/TR/payment-request/#idl-def-paymentoptions-shippingtype", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-shippingtype-3", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-20", + "https://www.w3.org/TR/payment-request/#h-note-20", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-26", + "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestbillingaddress", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-15", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-billing-address-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-18", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methoddetails-1", + "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestpayername", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-16", + "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestpayeremail", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-17", + "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestpayerphone", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-18", + "https://www.w3.org/TR/payment-request/#dom-paymentoptions-requestshipping", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-19", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shipping-address-3", + "https://www.w3.org/TR/payment-request/#dom-paymentoptions-shippingtype", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-shippingtype-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-20", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-shippingtype-5", + "https://www.w3.org/TR/payment-request/#paymentitem-dictionary", + "https://www.w3.org/TR/payment-request/#x10-paymentitem-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentitem", + "https://www.w3.org/TR/payment-request/#webidl-1435887180", + "https://www.w3.org/TR/payment-request/#idl-def-paymentitem", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-11", + "https://www.w3.org/TR/payment-request/#idl-def-paymentitem-label", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-label-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentitem-amount", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-9", + "https://www.w3.org/TR/payment-request/#idl-def-paymentitem-pending", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-pending-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-9", + "https://www.w3.org/TR/payment-request/#dom-paymentitem-label", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-21", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-21", + "https://www.w3.org/TR/payment-request/#h-note-21", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-label-2", + "https://www.w3.org/TR/payment-request/#dom-paymentitem-amount", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-6", + "https://www.w3.org/TR/payment-request/#dom-paymentitem-pending", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-22", + "https://www.w3.org/TR/payment-request/#paymentcompletedetails-dictionary", + "https://www.w3.org/TR/payment-request/#x11-paymentcompletedetails-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentcompletedetails", + "https://www.w3.org/TR/payment-request/#webidl-1518429867", + "https://www.w3.org/TR/payment-request/#idl-def-paymentcompletedetails", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcompletedetails-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentcompletedetails-data", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcompletedetails-data-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcompletedetails-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcompletedetails-3", + "https://www.w3.org/TR/payment-request/#dom-paymentcompletedetails-data", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-19", + "https://www.w3.org/TR/payment-request/#paymentcomplete-enum", + "https://www.w3.org/TR/payment-request/#x12-paymentcomplete-enum", + "https://www.w3.org/TR/payment-request/#dom-paymentcomplete", + "https://www.w3.org/TR/payment-request/#webidl-1223986974", + "https://www.w3.org/TR/payment-request/#idl-def-paymentcomplete", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-fail-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-success-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-unknown-1", + "https://www.w3.org/TR/payment-request/#dom-paymentcomplete-fail", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-23", + "https://www.w3.org/TR/payment-request/#dom-paymentcomplete-success", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-24", + "https://www.w3.org/TR/payment-request/#dom-paymentcomplete-unknown", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-25", + "https://www.w3.org/TR/payment-request/#paymentshippingoption-dictionary", + "https://www.w3.org/TR/payment-request/#x13-paymentshippingoption-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption", + "https://www.w3.org/TR/payment-request/#webidl-1340523886", + "https://www.w3.org/TR/payment-request/#idl-def-paymentshippingoption", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-3", + "https://www.w3.org/TR/payment-request/#idl-def-paymentshippingoption-id", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-id-5", + "https://www.w3.org/TR/payment-request/#idl-def-paymentshippingoption-label", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-label-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentshippingoption-amount", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-amount-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentshippingoption-selected", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-selected-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-5", + "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-id", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-27", + "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-label", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-26", + "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-amount", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-8", + "https://www.w3.org/TR/payment-request/#dom-paymentshippingoption-selected", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-27", + "https://www.w3.org/TR/payment-request/#paymentresponse-interface", + "https://www.w3.org/TR/payment-request/#x14-paymentresponse-interface", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse", + "https://www.w3.org/TR/payment-request/#webidl-2136333605", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-7", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-tojson", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-requestid", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-requestid-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-methodname", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-methodname-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-details", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-details-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-shippingaddress", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingaddress-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-shippingoption", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingoption-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-payername", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payername-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-payeremail", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payeremail-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-payerphone", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payerphone-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-complete-result-details", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcompletedetails-4", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-retry-errorfields", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-retry-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentresponse-onpayerdetailchange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-onpayerdetailchange-1", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-22", + "https://www.w3.org/TR/payment-request/#h-note-22", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-8", + "https://www.w3.org/TR/payment-request/#retry-method", + "https://www.w3.org/TR/payment-request/#x14-1-retry-method", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-retry", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-23", + "https://www.w3.org/TR/payment-request/#h-note-23", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-retry-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-12", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-13", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-28", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-retry-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-request-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-complete-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayername-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-payer-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-name-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayeremail-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-payer-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-email-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayerphone-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-payer-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-phone-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-shippingaddress-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-paymentmethod-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-methodname-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-paymentmethod-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-28", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-error-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-5", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-24", + "https://www.w3.org/TR/payment-request/#h-note-24", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-accepts-the-payment-request-algorithm-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-aborts-the-payment-request-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-1", + "https://www.w3.org/TR/payment-request/#paymentvalidationerrors-dictionary", + "https://www.w3.org/TR/payment-request/#x14-1-1-paymentvalidationerrors-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors", + "https://www.w3.org/TR/payment-request/#webidl-65418220", + "https://www.w3.org/TR/payment-request/#idl-def-paymentvalidationerrors", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-4", + "https://www.w3.org/TR/payment-request/#idl-def-paymentvalidationerrors-payer", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-payer-4", + "https://www.w3.org/TR/payment-request/#idl-def-paymentvalidationerrors-shippingaddress", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-shippingaddress-2", + "https://www.w3.org/TR/payment-request/#idl-def-paymentvalidationerrors-error", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-error-2", + "https://www.w3.org/TR/payment-request/#idl-def-paymentvalidationerrors-paymentmethod", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-paymentmethod-3", + "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-payer", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payer-details-2", + "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-shippingaddress", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingaddress-2", + "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-error", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-error-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-5", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-25", + "https://www.w3.org/TR/payment-request/#h-note-25", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-error-4", + "https://www.w3.org/TR/payment-request/#dom-paymentvalidationerrors-paymentmethod", + "https://www.w3.org/TR/payment-request/#payererrors-dictionary", + "https://www.w3.org/TR/payment-request/#x14-1-2-payererrors-dictionary", + "https://www.w3.org/TR/payment-request/#dom-payererrors", + "https://www.w3.org/TR/payment-request/#webidl-73171198", + "https://www.w3.org/TR/payment-request/#idl-def-payererrors", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-3", + "https://www.w3.org/TR/payment-request/#idl-def-payererrors-email", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-email-2", + "https://www.w3.org/TR/payment-request/#idl-def-payererrors-name", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-name-2", + "https://www.w3.org/TR/payment-request/#idl-def-payererrors-phone", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-phone-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payer-details-3", + "https://www.w3.org/TR/payment-request/#dfn-payer-details", + "https://www.w3.org/TR/payment-request/#dom-payererrors-email", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payeremail-2", + "https://www.w3.org/TR/payment-request/#dom-payererrors-name", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-16", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payername-2", + "https://www.w3.org/TR/payment-request/#dom-payererrors-phone", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-17", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payerphone-2", + "https://www.w3.org/TR/payment-request/#example-payer-related-validation-errors", + "https://www.w3.org/TR/payment-request/#methodname-attribute", + "https://www.w3.org/TR/payment-request/#x14-2-methodname-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-methodname", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-20", + "https://www.w3.org/TR/payment-request/#details-attribute", + "https://www.w3.org/TR/payment-request/#x14-3-details-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-details", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-21", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-22", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-26", + "https://www.w3.org/TR/payment-request/#h-note-26", + "https://www.w3.org/TR/payment-request/#shippingaddress-attribute-0", + "https://www.w3.org/TR/payment-request/#x14-4-shippingaddress-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-shippingaddress", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-29", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shipping-address-4", + "https://www.w3.org/TR/payment-request/#shippingoption-attribute-0", + "https://www.w3.org/TR/payment-request/#x14-5-shippingoption-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-shippingoption", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-30", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-id-6", + "https://www.w3.org/TR/payment-request/#payername-attribute", + "https://www.w3.org/TR/payment-request/#x14-6-payername-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-payername", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayername-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-31", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payername-3", + "https://www.w3.org/TR/payment-request/#payeremail-attribute", + "https://www.w3.org/TR/payment-request/#x14-7-payeremail-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-payeremail", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayeremail-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-32", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payeremail-3", + "https://www.w3.org/TR/payment-request/#payerphone-attribute", + "https://www.w3.org/TR/payment-request/#x14-8-payerphone-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-payerphone", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayerphone-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-13", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-33", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payerphone-3", + "https://www.w3.org/TR/payment-request/#requestid-attribute", + "https://www.w3.org/TR/payment-request/#x14-9-requestid-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-requestid", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-id-3", + "https://www.w3.org/TR/payment-request/#complete-method", + "https://www.w3.org/TR/payment-request/#x14-10-complete-method", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-complete", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-27", + "https://www.w3.org/TR/payment-request/#h-note-27", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-acceptpromise-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-29", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-18", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-complete-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcompletedetails-data-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-methodname-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-methodname-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-methodname-5", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-28", + "https://www.w3.org/TR/payment-request/#h-note-28", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-complete-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-30", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-11", + "https://www.w3.org/TR/payment-request/#onpayerdetailchange-attribute", + "https://www.w3.org/TR/payment-request/#x14-11-onpayerdetailchange-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentresponse-onpayerdetailchange", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payerdetailchange-1", + "https://www.w3.org/TR/payment-request/#internal-slots-0", + "https://www.w3.org/TR/payment-request/#x14-12-internal-slots", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-19", + "https://www.w3.org/TR/payment-request/#dfn-complete", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-9", + "https://www.w3.org/TR/payment-request/#dfn-request", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-34", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-20", + "https://www.w3.org/TR/payment-request/#dfn-retrypromise", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-accepts-the-payment-request-algorithm-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-aborts-the-payment-request-6", + "https://www.w3.org/TR/payment-request/#shipping-and-billing-addresses", + "https://www.w3.org/TR/payment-request/#x15-shipping-and-billing-addresses", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-35", + "https://www.w3.org/TR/payment-request/#dfn-shipping-address", + "https://www.w3.org/TR/payment-request/#dfn-billing-address", + "https://www.w3.org/TR/payment-request/#addresserrors-dictionary", + "https://www.w3.org/TR/payment-request/#x15-1-addresserrors-dictionary", + "https://www.w3.org/TR/payment-request/#dom-addresserrors", + "https://www.w3.org/TR/payment-request/#webidl-2030492674", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-4", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-addressline", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-addressline-1", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-city", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-city-1", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-country", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-country-1", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-dependentlocality", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-dependentlocality-1", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-organization", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-organization-1", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-phone", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-phone-1", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-postalcode", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-postalcode-1", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-recipient", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-recipient-1", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-region", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-region-1", + "https://www.w3.org/TR/payment-request/#idl-def-addresserrors-sortingcode", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-sortingcode-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-5", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-29", + "https://www.w3.org/TR/payment-request/#h-note-29", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-addressline", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-city", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-country", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-dependentlocality", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-organization", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-phone", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-postalcode", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-recipient", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-region", + "https://www.w3.org/TR/payment-request/#dom-addresserrors-sortingcode", + "https://www.w3.org/TR/payment-request/#permissions-policy", + "https://www.w3.org/TR/payment-request/#x16-permissions-policy-integration", + "https://www.w3.org/TR/payment-request/#dfn-payment", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-30", + "https://www.w3.org/TR/payment-request/#h-note-30", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-36", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-37", + "https://www.w3.org/TR/payment-request/#events", + "https://www.w3.org/TR/payment-request/#x17-events", + "https://www.w3.org/TR/payment-request/#summary", + "https://www.w3.org/TR/payment-request/#x17-1-summary", + "https://www.w3.org/TR/payment-request/#dfn-shippingaddresschange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-38", + "https://www.w3.org/TR/payment-request/#dfn-shippingoptionchange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-39", + "https://www.w3.org/TR/payment-request/#dfn-payerdetailchange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payer-detail-changed-algorithm-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-21", + "https://www.w3.org/TR/payment-request/#dfn-paymentmethodchange", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-23", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-40", + "https://www.w3.org/TR/payment-request/#paymentmethodchangeevent-interface", + "https://www.w3.org/TR/payment-request/#x17-2-paymentmethodchangeevent-interface", + "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent", + "https://www.w3.org/TR/payment-request/#webidl-1848946631", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethodchangeevent", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-6", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethodchangeevent-constructor-type-eventinitdict", + "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-constructor", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethodchangeevent-methodname", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methodname-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethodchangeevent-methoddetails", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methoddetails-2", + "https://www.w3.org/TR/payment-request/#methoddetails-attribute", + "https://www.w3.org/TR/payment-request/#x17-2-1-methoddetails-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-methoddetails", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-methoddetails-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-2", + "https://www.w3.org/TR/payment-request/#methodname-attribute-0", + "https://www.w3.org/TR/payment-request/#x17-2-2-methodname-attribute", + "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeevent-methodname", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-methodname-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-3", + "https://www.w3.org/TR/payment-request/#paymentmethodchangeeventinit-dictionary", + "https://www.w3.org/TR/payment-request/#x17-2-3-paymentmethodchangeeventinit-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeeventinit", + "https://www.w3.org/TR/payment-request/#webidl-746190437", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethodchangeeventinit", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateeventinit-1", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethodchangeeventinit-methodname", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-methodname-2", + "https://www.w3.org/TR/payment-request/#idl-def-paymentmethodchangeeventinit-methoddetails", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-methoddetails-2", + "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeeventinit-methodname", + "https://www.w3.org/TR/payment-request/#dom-paymentmethodchangeeventinit-methoddetails", + "https://www.w3.org/TR/payment-request/#paymentrequestupdateevent-interface", + "https://www.w3.org/TR/payment-request/#x17-3-paymentrequestupdateevent-interface", + "https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent", + "https://www.w3.org/TR/payment-request/#webidl-1601085411", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequestupdateevent", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-7", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequestupdateevent-constructor-type-eventinitdict", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-constructor-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateeventinit-2", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequestupdateevent-updatewith-detailspromise", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-8", + "https://www.w3.org/TR/payment-request/#constructor-0", + "https://www.w3.org/TR/payment-request/#x17-3-1-constructor", + "https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-constructor", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-constructor-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-waitforupdate-1", + "https://www.w3.org/TR/payment-request/#updatewith-method", + "https://www.w3.org/TR/payment-request/#x17-3-2-updatewith-method", + "https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateevent-updatewith", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-31", + "https://www.w3.org/TR/payment-request/#h-note-31", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-31", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-8", + "https://www.w3.org/TR/payment-request/#example-how-to-use-updatewith-correctly", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-waitforupdate-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-11", + "https://www.w3.org/TR/payment-request/#example-can-only-call-updatewith-once", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-waitforupdate-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-22", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-request-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-41", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-updating-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-waitforupdate-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methodname-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methodname-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-update-a-paymentrequest-s-details-algorithm-3", + "https://www.w3.org/TR/payment-request/#internal-slots-1", + "https://www.w3.org/TR/payment-request/#x17-3-3-internal-slots", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-12", + "https://www.w3.org/TR/payment-request/#dfn-waitforupdate", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-10", + "https://www.w3.org/TR/payment-request/#paymentrequestupdateeventinit-dictionary", + "https://www.w3.org/TR/payment-request/#x17-3-4-paymentrequestupdateeventinit-dictionary", + "https://www.w3.org/TR/payment-request/#dom-paymentrequestupdateeventinit", + "https://www.w3.org/TR/payment-request/#webidl-349124107", + "https://www.w3.org/TR/payment-request/#idl-def-paymentrequestupdateeventinit", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateeventinit-3", + "https://www.w3.org/TR/payment-request/#algorithms", + "https://www.w3.org/TR/payment-request/#x18-algorithms", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-42", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-32", + "https://www.w3.org/TR/payment-request/#can-make-payment-algorithm", + "https://www.w3.org/TR/payment-request/#x18-1-can-make-payment-algorithm", + "https://www.w3.org/TR/payment-request/#dfn-can-make-payment-algorithm", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-33", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-24", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-43", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-44", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-13", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-created-4", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-32", + "https://www.w3.org/TR/payment-request/#h-note-32", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-45", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-25", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-can-make-payment-algorithm-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmethoddata-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-11", + "https://www.w3.org/TR/payment-request/#shipping-address-changed-algorithm", + "https://www.w3.org/TR/payment-request/#x18-2-shipping-address-changed-algorithm", + "https://www.w3.org/TR/payment-request/#dfn-shipping-address-changed-algorithm", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-46", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-33", + "https://www.w3.org/TR/payment-request/#h-note-33", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-paymentrequest-updated-algorithm-1", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shippingaddresschange-2", + "https://www.w3.org/TR/payment-request/#shipping-option-changed-algorithm", + "https://www.w3.org/TR/payment-request/#x18-3-shipping-option-changed-algorithm", + "https://www.w3.org/TR/payment-request/#dfn-shipping-option-changed-algorithm", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-47", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-paymentrequest-updated-algorithm-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shippingoptionchange-3", + "https://www.w3.org/TR/payment-request/#payment-method-changed-algorithm", + "https://www.w3.org/TR/payment-request/#x18-4-payment-method-changed-algorithm", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-12", + "https://www.w3.org/TR/payment-request/#dfn-payment-method-changed-algorithm", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-26", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-13", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-34", + "https://www.w3.org/TR/payment-request/#h-note-34", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-48", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-updating-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-14", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-paymentmethodchange-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methodname-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methoddetails-3", + "https://www.w3.org/TR/payment-request/#paymentrequest-updated-algorithm", + "https://www.w3.org/TR/payment-request/#x18-5-paymentrequest-updated-algorithm", + "https://www.w3.org/TR/payment-request/#dfn-paymentrequest-updated-algorithm", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-49", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-updating-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-15", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-13", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-waitforupdate-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-waitforupdate-6", + "https://www.w3.org/TR/payment-request/#payer-detail-changed-algorithm", + "https://www.w3.org/TR/payment-request/#x18-6-payer-detail-changed-algorithm", + "https://www.w3.org/TR/payment-request/#dfn-payer-detail-changed-algorithm", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-50", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-updating-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-16", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayername-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payername-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayeremail-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payeremail-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayerphone-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payerphone-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-14", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payerdetailchange-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-waitforupdate-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-waitforupdate-8", + "https://www.w3.org/TR/payment-request/#user-accepts-the-payment-request-algorithm", + "https://www.w3.org/TR/payment-request/#x18-7-user-accepts-the-payment-request-algorithm", + "https://www.w3.org/TR/payment-request/#dfn-user-accepts-the-payment-request-algorithm", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-51", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-updating-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-34", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-17", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-35", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-36", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-23", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-request-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-complete-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-requestid-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-details-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-id-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-handler-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-methodname-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-details-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-steps-to-respond-to-a-payment-request-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-12", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingaddress-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingaddress-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingaddress-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-13", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingoption-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingoption-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayername-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payername-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayeremail-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payeremail-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayerphone-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payerphone-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payerphone-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-18", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-acceptpromise-5", + "https://www.w3.org/TR/payment-request/#user-aborts-the-payment-request-algorithm", + "https://www.w3.org/TR/payment-request/#x18-8-user-aborts-the-payment-request-algorithm", + "https://www.w3.org/TR/payment-request/#dfn-user-aborts-the-payment-request", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-52", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-19", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-interactive-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-37", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-20", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-12", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-complete-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-acceptpromise-6", + "https://www.w3.org/TR/payment-request/#update-a-paymentrequest-s-details-algorithm", + "https://www.w3.org/TR/payment-request/#x18-9-update-a-paymentrequest-s-details-algorithm", + "https://www.w3.org/TR/payment-request/#dfn-update-a-paymentrequest-s-details-algorithm", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-53", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-14", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-aborts-the-payment-request-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-updating-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-12", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-total-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-total-amount-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-total-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-amount-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-12", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-13", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-amount-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-amount-2", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-id-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-selected-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-id-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-supportedmethods-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-total-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-total-amount-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-total-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-13", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-13", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-check-and-canonicalize-amount-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-14", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-3", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-12", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-54", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-total-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-details-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-total-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-total-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-8", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-details-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-15", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-details-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-details-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-serializedmodifierdata-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-16", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-details-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-error-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-options-16", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayername-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayeremail-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayerphone-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-updating-8", + "https://www.w3.org/TR/payment-request/#abort-the-update", + "https://www.w3.org/TR/payment-request/#x18-9-1-abort-the-update", + "https://www.w3.org/TR/payment-request/#dfn-abort-the-update", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-55", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-relevant-browsing-context-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-request-is-showing-13", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-state-21", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-response-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-complete-6", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-12", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-acceptpromise-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-updating-9", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-35", + "https://www.w3.org/TR/payment-request/#h-note-35", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-13", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-56", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-closed-11", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-acceptpromise-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-13", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-abort-the-update-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-retry-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-retrypromise-13", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-24", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-complete-7", + "https://www.w3.org/TR/payment-request/#privacy", + "https://www.w3.org/TR/payment-request/#x19-privacy-and-security-considerations", + "https://www.w3.org/TR/payment-request/#user-protections-with-show-method", + "https://www.w3.org/TR/payment-request/#x19-1-user-protections-with-show-method", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-16", + "https://www.w3.org/TR/payment-request/#secure-contexts", + "https://www.w3.org/TR/payment-request/#x19-2-secure-contexts", + "https://www.w3.org/TR/payment-request/#cross-origin-payment-requests", + "https://www.w3.org/TR/payment-request/#x19-3-cross-origin-payment-requests", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-16", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-57", + "https://www.w3.org/TR/payment-request/#encryption-of-data-fields", + "https://www.w3.org/TR/payment-request/#x19-4-encryption-of-data-fields", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-58", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-27", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-28", + "https://www.w3.org/TR/payment-request/#how-user-agents-match-payment-handlers", + "https://www.w3.org/TR/payment-request/#x19-5-how-user-agents-match-payment-handlers", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-17", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-canmakepayment-5", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-handler-17", + "https://www.w3.org/TR/payment-request/#data-usage-0", + "https://www.w3.org/TR/payment-request/#data-usage", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-29", + "https://www.w3.org/TR/payment-request/#exposing-user-information", + "https://www.w3.org/TR/payment-request/#user-info", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-38", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-shipping-address-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-data-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-25", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-details-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-details-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-39", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-user-agent-40", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-7", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-30", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-31", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-32", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-steps-for-when-a-user-changes-payment-method-1", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methoddetails-4", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-33", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-9", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-34", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-26", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-10", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-35", + "https://www.w3.org/TR/payment-request/#ref-for-dfn-payment-method-changed-algorithm-1", + "https://www.w3.org/TR/payment-request/#canmakepayment-protections-0", + "https://www.w3.org/TR/payment-request/#canmakepayment-protections", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-canmakepayment-6", + "https://www.w3.org/TR/payment-request/#accessibility-considerations", + "https://www.w3.org/TR/payment-request/#x20-accessibility-considerations", + "https://www.w3.org/TR/payment-request/#dependencies", + "https://www.w3.org/TR/payment-request/#x21-dependencies", + "https://www.w3.org/TR/payment-request/#dfn-internal-slot", + "https://www.w3.org/TR/payment-request/#conformance", + "https://www.w3.org/TR/payment-request/#x22-conformance", + "https://www.w3.org/TR/payment-request/#dfn-user-agent", + "https://www.w3.org/TR/payment-request/#issue-container-generatedID-36", + "https://www.w3.org/TR/payment-request/#h-note-36", + "https://www.w3.org/TR/payment-request/#idl-index", + "https://www.w3.org/TR/payment-request/#a-idl-index", + "https://www.w3.org/TR/payment-request/#actual-idl-index", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-59", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-27", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-show-18", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-13", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-abort-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-canmakepayment-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-id-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingaddress-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingoption-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-shippingtype-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-onshippingaddresschange-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-onshippingoptionchange-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequest-onpaymentmethodchange-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-supportedmethods-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethoddata-data-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-currency-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-value-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-displayitems-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-shippingoptions-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-modifiers-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-id-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsinit-total-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-14", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsbase-12", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-error-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-16", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-total-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-shippingaddresserrors-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-payererrors-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-paymentmethoderrors-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-supportedmethods-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-17", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-total-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-18", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-additionaldisplayitems-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsmodifier-data-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-shipping-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-delivery-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-pickup-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayername-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestbillingaddress-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayeremail-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestpayerphone-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-requestshipping-17", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingtype-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentoptions-shippingtype-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-19", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-label-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-amount-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentitem-pending-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcompletedetails-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcompletedetails-data-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-fail-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-success-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-unknown-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-id-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-label-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcurrencyamount-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-amount-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentshippingoption-selected-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-28", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-requestid-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-methodname-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-details-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingaddress-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-shippingoption-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payername-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payeremail-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-payerphone-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-complete-10", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcomplete-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentcompletedetails-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-retry-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentresponse-onpayerdetailchange-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-7", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-payer-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-shippingaddress-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-error-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentvalidationerrors-paymentmethod-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-8", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-email-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-name-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-payererrors-phone-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-addressline-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-city-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-country-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-dependentlocality-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-organization-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-phone-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-postalcode-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-recipient-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-region-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-addresserrors-sortingcode-2", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-9", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methodname-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeevent-methoddetails-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-6", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateeventinit-4", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-methodname-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentmethodchangeeventinit-methoddetails-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-16", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-constructor-3", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateeventinit-5", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateevent-updatewith-11", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentdetailsupdate-15", + "https://www.w3.org/TR/payment-request/#ref-for-dom-paymentrequestupdateeventinit-6", + "https://www.w3.org/TR/payment-request/#acknowledgements", + "https://www.w3.org/TR/payment-request/#b-acknowledgements", + "https://www.w3.org/TR/payment-request/#changelog", + "https://www.w3.org/TR/payment-request/#c-changelog", + "https://www.w3.org/TR/payment-request/#references", + "https://www.w3.org/TR/payment-request/#d-references", + "https://www.w3.org/TR/payment-request/#normative-references", + "https://www.w3.org/TR/payment-request/#d-1-normative-references", + "https://www.w3.org/TR/payment-request/#bib-contact-picker", + "https://www.w3.org/TR/payment-request/#bib-dom", + "https://www.w3.org/TR/payment-request/#bib-e.164", + "https://www.w3.org/TR/payment-request/#bib-ecma-402", + "https://www.w3.org/TR/payment-request/#bib-ecmascript", + "https://www.w3.org/TR/payment-request/#bib-fetch", + "https://www.w3.org/TR/payment-request/#bib-html", + "https://www.w3.org/TR/payment-request/#bib-infra", + "https://www.w3.org/TR/payment-request/#bib-iso4217", + "https://www.w3.org/TR/payment-request/#bib-payment-handler", + "https://www.w3.org/TR/payment-request/#bib-payment-method-id", + "https://www.w3.org/TR/payment-request/#bib-permissions-policy", + "https://www.w3.org/TR/payment-request/#bib-rfc2119", + "https://www.w3.org/TR/payment-request/#bib-rfc4122", + "https://www.w3.org/TR/payment-request/#bib-rfc8174", + "https://www.w3.org/TR/payment-request/#bib-url", + "https://www.w3.org/TR/payment-request/#bib-webidl", + "https://www.w3.org/TR/payment-request/#informative-references", + "https://www.w3.org/TR/payment-request/#d-2-informative-references", + "https://www.w3.org/TR/payment-request/#bib-rfc6454", + "https://www.w3.org/TR/payment-request/#bib-secure-contexts", + "https://www.w3.org/TR/payment-request/#back-to-top" + ] +} \ No newline at end of file diff --git a/tr/index.json b/tr/index.json index dc712755ab2c..5280b0d1a44b 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-08-20T01:33:52.107Z", + "date": "2024-08-21T01:48:01.815Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -47,6 +47,7 @@ "css-size-adjust-1", "css-values-5", "css-variables-2", + "selectors-5", "compositing-2", "filter-effects-2", "encoding", @@ -65,6 +66,7 @@ "infra", "mimesniff", "notifications", + "private-aggregation-api", "topics", "gpc-spec", "nav-tracking-mitigations", @@ -132,6 +134,7 @@ "tc39-arraybuffer-base64", "tc39-arraybuffer-transfer", "tc39-async-explicit-resource-management", + "tc39-canonical-tz", "tc39-decorators", "tc39-dynamic-code-brand-checks", "tc39-explicit-resource-management", @@ -144,6 +147,7 @@ "tc39-json-parse-with-source", "tc39-promise-try", "tc39-promise-with-resolvers", + "tc39-regex-escaping", "tc39-regexp-modifiers", "tc39-set-methods", "tc39-shadowrealm", @@ -177,6 +181,7 @@ "wasm-core-2-fork-function-references", "wasm-core-2-fork-gc", "wasm-js-api-2-fork-js-promise-integration", + "wasm-js-api-2-fork-js-string-builtins", "wasm-js-api-2-fork-js-types", "wasm-core-2-fork-memory64", "wasm-core-2-fork-multi-memory", @@ -511,7 +516,7 @@ "payment-handler", "payment-method-id", "payment-method-manifest", - "payment-request-1.1", + "payment-request", "performance-timeline", "permissions-policy-1", "permissions", @@ -659,7 +664,7 @@ "crawled": 327, "errors": 0 }, - "crawler": "reffy-17.1.2", + "crawler": "reffy-17.2.0", "results": [ { "url": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", @@ -705,7 +710,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "20 August 2024", + "date": "21 August 2024", "links": "links/av1-spec.json" }, { @@ -3374,7 +3379,7 @@ ], "release": { "url": "https://www.w3.org/TR/css-conditional-3/", - "status": "Candidate Recommendation Snapshot", + "status": "Candidate Recommendation Draft", "filename": "Overview.html" }, "nightly": { @@ -8203,7 +8208,7 @@ "https://w3c.github.io/csswg-drafts/css-viewport/" ], "repository": "https://github.com/w3c/csswg-drafts", - "sourcePath": "css-viewport/Overview.bs", + "sourcePath": "css-viewport-1/Overview.bs", "filename": "index.html" }, "formerNames": [ @@ -9387,10 +9392,11 @@ ], "crawled": "https://www.w3.org/TR/eme-initdata-keyids/", "crawlCacheInfo": { - "lastModified": "Fri, 12 Jul 2024 12:39:25 GMT" + "lastModified": "Tue, 20 Aug 2024 15:43:03 GMT" }, "generator": "respec", - "date": "18 July 2024", + "date": "20 August 2024", + "revision": "81ab0edaf64a9dce1e794bf9a8b1a41559983ff2", "links": "links/eme-initdata-keyids.json", "refs": "refs/eme-initdata-keyids.json", "headings": "headings/eme-initdata-keyids.json", @@ -9604,7 +9610,7 @@ ], "crawled": "https://www.w3.org/TR/eme-stream-registry/", "crawlCacheInfo": { - "lastModified": "Fri, 12 Jul 2024 12:46:58 GMT" + "lastModified": "Fri, 12 Jul 2024 12:26:24 GMT" }, "generator": "respec", "date": "18 July 2024", @@ -9700,7 +9706,7 @@ ], "release": { "url": "https://www.w3.org/TR/encrypted-media-2/", - "status": "First Public Working Draft", + "status": "Working Draft", "filename": "Overview.html" }, "title": "Encrypted Media Extensions", @@ -13954,18 +13960,20 @@ "ids": "ids/payment-method-manifest.json" }, { - "url": "https://www.w3.org/TR/payment-request-1.1/", + "url": "https://www.w3.org/TR/payment-request/", "seriesComposition": "full", - "shortname": "payment-request-1.1", + "shortname": "payment-request", "series": { "shortname": "payment-request", - "currentSpecification": "payment-request-1.1", + "currentSpecification": "payment-request", "title": "Payment Request API", "shortTitle": "Payment Request API", "releaseUrl": "https://www.w3.org/TR/payment-request/", "nightlyUrl": "https://w3c.github.io/payment-request/" }, - "seriesVersion": "1.1", + "formerNames": [ + "payment-request-1.1" + ], "organization": "W3C", "groups": [ { @@ -13974,8 +13982,8 @@ } ], "release": { - "url": "https://www.w3.org/TR/payment-request-1.1/", - "status": "Working Draft", + "url": "https://www.w3.org/TR/payment-request/", + "status": "Candidate Recommendation Draft", "filename": "Overview.html" }, "nightly": { @@ -13988,7 +13996,7 @@ }, "title": "Payment Request API", "source": "w3c", - "shortTitle": "Payment Request API 1.1", + "shortTitle": "Payment Request API", "categories": [ "browser" ], @@ -14000,24 +14008,24 @@ ] }, "versions": [ - "https://www.w3.org/TR/payment-request-1.1/", + "https://www.w3.org/TR/payment-request/", "https://w3c.github.io/payment-request/" ], - "crawled": "https://www.w3.org/TR/payment-request-1.1/", + "crawled": "https://www.w3.org/TR/payment-request/", "crawlCacheInfo": { "lastModified": "Wed, 14 Aug 2024 13:38:59 GMT" }, "generator": "respec", "date": "14 August 2024", "revision": "0a5afe29c87a8b303148839d5a474dbef5e33697", - "algorithms": "algorithms/payment-request-1.1.json", - "links": "links/payment-request-1.1.json", - "refs": "refs/payment-request-1.1.json", - "events": "events/payment-request-1.1.json", + "algorithms": "algorithms/payment-request.json", + "links": "links/payment-request.json", + "refs": "refs/payment-request.json", + "events": "events/payment-request.json", "idl": "idl/payment-request.idl", - "dfns": "dfns/payment-request-1.1.json", - "headings": "headings/payment-request-1.1.json", - "ids": "ids/payment-request-1.1.json" + "dfns": "dfns/payment-request.json", + "headings": "headings/payment-request.json", + "ids": "ids/payment-request.json" }, { "url": "https://www.w3.org/TR/performance-timeline/", @@ -16138,6 +16146,7 @@ }, "seriesVersion": "4", "seriesPrevious": "selectors-3", + "seriesNext": "selectors-5", "organization": "W3C", "groups": [ { @@ -18361,6 +18370,7 @@ "wasm-js-api-2-fork-esm-integration", "wasm-js-api-2-fork-exception-handling", "wasm-js-api-2-fork-js-promise-integration", + "wasm-js-api-2-fork-js-string-builtins", "wasm-js-api-2-fork-js-types", "wasm-js-api-2-fork-threads" ], @@ -19931,7 +19941,7 @@ "groups": [ { "name": "GPU for the Web Working Group", - "url": "https://www.w3.org/2020/gpu/" + "url": "https://www.w3.org/groups/wg/gpu/" } ], "release": { @@ -21216,7 +21226,7 @@ "groups": [ { "name": "GPU for the Web Working Group", - "url": "https://www.w3.org/2020/gpu/" + "url": "https://www.w3.org/groups/wg/gpu/" } ], "release": { @@ -21237,11 +21247,11 @@ ], "crawled": "https://www.w3.org/TR/WGSL/", "crawlCacheInfo": { - "lastModified": "Mon, 19 Aug 2024 17:40:38 GMT" + "lastModified": "Tue, 20 Aug 2024 14:31:02 GMT" }, "generator": "bikeshed", - "date": "19 August 2024", - "revision": "0f098a93b6470c2395d650d798231fe4d4e9bdb9", + "date": "20 August 2024", + "revision": "c1990f4f6a8ad55ad593462c585483dcbab7850e", "algorithms": "algorithms/WGSL.json", "links": "links/WGSL.json", "refs": "refs/WGSL.json", diff --git a/tr/links/eme-initdata-keyids.json b/tr/links/eme-initdata-keyids.json index b46ff7960ce5..af526f49280a 100644 --- a/tr/links/eme-initdata-keyids.json +++ b/tr/links/eme-initdata-keyids.json @@ -7,12 +7,11 @@ "rawlinks": { "https://encoding.spec.whatwg.org/": {}, "https://www.w3.org/TR/": {}, - "https://www.w3.org/TR/eme-initdata-cenc/": { + "https://www.w3.org/TR/encrypted-media-2/": { "anchors": [ "using-base64url" ] }, - "https://www.w3.org/TR/encrypted-media/": {}, "https://www.w3.org/groups/wg/media": {}, "https://www.w3.org/policies/patent-policy/": {}, "https://www.w3.org/policies/process/20231103/": { @@ -27,7 +26,7 @@ "textencoder" ] }, - "https://www.w3.org/TR/encrypted-media/": { + "https://www.w3.org/TR/encrypted-media-2/": { "anchors": [ "dfn-initialization-data", "dfn-decryption-key-id" diff --git a/tr/links/payment-request-1.1.json b/tr/links/payment-request.json similarity index 99% rename from tr/links/payment-request-1.1.json rename to tr/links/payment-request.json index f5b8c0b721fd..b2731248fb1f 100644 --- a/tr/links/payment-request-1.1.json +++ b/tr/links/payment-request.json @@ -1,7 +1,7 @@ { "spec": { "title": "Payment Request API", - "url": "https://www.w3.org/TR/payment-request-1.1/" + "url": "https://www.w3.org/TR/payment-request/" }, "links": { "rawlinks": { diff --git a/tr/refs/eme-initdata-keyids.json b/tr/refs/eme-initdata-keyids.json index 085d64738f36..1be66cb0942c 100644 --- a/tr/refs/eme-initdata-keyids.json +++ b/tr/refs/eme-initdata-keyids.json @@ -11,14 +11,9 @@ }, { "name": "ENCRYPTED-MEDIA", - "url": "https://www.w3.org/TR/encrypted-media/" + "url": "https://www.w3.org/TR/encrypted-media-2/" } ], - "informative": [ - { - "name": "eme-initdata-cenc", - "url": "https://www.w3.org/TR/eme-initdata-cenc/" - } - ] + "informative": [] } } \ No newline at end of file diff --git a/tr/refs/payment-request-1.1.json b/tr/refs/payment-request.json similarity index 97% rename from tr/refs/payment-request-1.1.json rename to tr/refs/payment-request.json index 871a06b16548..5f97950c8cf9 100644 --- a/tr/refs/payment-request-1.1.json +++ b/tr/refs/payment-request.json @@ -1,7 +1,7 @@ { "spec": { "title": "Payment Request API", - "url": "https://www.w3.org/TR/payment-request-1.1/" + "url": "https://www.w3.org/TR/payment-request/" }, "refs": { "normative": [