diff --git a/tr/algorithms/CSP3.json b/tr/algorithms/CSP3.json index 74b21d8ada8a..542e3c261a7b 100644 --- a/tr/algorithms/CSP3.json +++ b/tr/algorithms/CSP3.json @@ -7,13 +7,16 @@ { "name": "parse a serialized CSP", "href": "https://www.w3.org/TR/CSP3/#abstract-opdef-parse-a-serialized-csp", - "html": "To parse a serialized CSP, given a string serialized, a source source, and a disposition disposition, execute the\n following steps.", + "html": "To parse a serialized CSP, given a byte sequence or string serialized, a source source, and a disposition disposition, execute the following steps.", "rationale": "To " }, { "html": "This algorithm returns a Content Security Policy object. If serialized could not be\n parsed, the object’s directive set will be empty.", "rationale": ".algorithm", "steps": [ + { + "html": "

If serialized is a byte sequence, then set serialized to be the result of isomorphic decoding serialized.

" + }, { "html": "

Let policy be a new policy with an empty directive set, a source of source, and a disposition of disposition.

" }, @@ -53,55 +56,44 @@ ] }, { - "name": "parse a serialized CSP list", - "href": "https://www.w3.org/TR/CSP3/#abstract-opdef-parse-a-serialized-csp-list", - "html": "To parse a serialized CSP list, given a byte sequence or string list, a source source, and a disposition disposition, execute\n the following steps.", + "name": "parse a response’s Content Security Policies", + "href": "https://www.w3.org/TR/CSP3/#abstract-opdef-parse-a-responses-content-security-policies", + "html": "To parse a response’s Content Security Policies given a response response, execute the following steps.", "rationale": "To " }, { - "html": "This algorithm returns a list of Content Security Policy objects. If list cannot be\n parsed, the returned list will be empty.", + "html": "This algorithm returns a list of Content Security Policy objects. If the policies cannot\n be parsed, the returned list will be empty.", "rationale": ".algorithm", "steps": [ - { - "html": "

If list is a byte sequence, then set list to be the result of isomorphic decoding list.

" - }, { "html": "

Let policies be an empty list.

" }, { - "html": "For each token returned by splitting list on commas:", + "html": "For each token returned by extracting header list values given Content-Security-Policy and response’s header list:", "rationale": "let", "steps": [ { - "html": "

Let policy be the result of parsing token, with a source of source, and disposition of disposition.

" + "html": "

Let policy be the result of parsing token, with a source of \"header\", and a disposition of \"enforce\".

" }, { - "html": "

If policy’s directive set is empty, continue.

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

Append policy to policies.

" + "html": "

If policy’s directive set is not empty, append policy to policies.

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

Return policies.

" - } - ] - }, - { - "name": "parse a response’s Content Security Policies", - "href": "https://www.w3.org/TR/CSP3/#abstract-opdef-parse-a-responses-content-security-policies", - "html": "To parse a response’s Content Security Policies given a response response:", - "rationale": ".algorithm", - "steps": [ - { - "html": "

Let policies be the result of parsing the result of extracting header list values given Content-Security-Policy and response’s header list, with a source of \"header\", and a disposition of \"enforce\".

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

Append to policies the result of parsing the result of extracting header list values given Content-Security-Policy-Report-Only and response’s header list, with a source of \"header\", and a disposition of \"report\".

" + "html": "For each token returned by extracting header list values given Content-Security-Policy-Report-Only and response’s header list:", + "rationale": "let", + "steps": [ + { + "html": "

Let policy be the result of parsing token, with a source of \"header\", and a disposition of \"report\".

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

If policy’s directive set is not empty, append policy to policies.

" + } + ] }, { - "html": "For each policy of policies:", + "html": "For each policy of policies:", "rationale": "set", "steps": [ { @@ -115,7 +107,7 @@ ] }, { - "html": "Given a global object global, a policy policy, and a string directive, the following algorithm creates a new violation object, and populates it with an initial set of data:", + "html": "Given a global object global, a policy policy, and a string directive, the following algorithm creates a new violation object, and populates it with an initial set of data:", "rationale": "let", "steps": [ { @@ -161,11 +153,11 @@ "html": "

Let CSP list be request’s policy container's CSP list.

" }, { - "html": "For each policy of CSP list:", + "html": "For each policy of CSP list:", "rationale": "if", "steps": [ { - "html": "

If policy’s disposition is \"enforce\",\n then skip to the next policy.

" + "html": "

If policy’s disposition is \"enforce\",\n then skip to the next policy.

" }, { "html": "

Let violates be the result of executing § 6.7.2.1 Does request violate policy? on request and policy.

" @@ -188,11 +180,11 @@ "html": "

Let result be \"Allowed\".

" }, { - "html": "For each policy of CSP list:", + "html": "For each policy of CSP list:", "rationale": "if", "steps": [ { - "html": "

If policy’s disposition is \"report\",\n then skip to the next policy.

" + "html": "

If policy’s disposition is \"report\",\n then skip to the next policy.

" }, { "html": "

Let violates be the result of executing § 6.7.2.1 Does request violate policy? on request and policy.

" @@ -227,11 +219,11 @@ "html": "

Let result be \"Allowed\".

" }, { - "html": "For each policy of CSP list:", + "html": "For each policy of CSP list:", "rationale": "for", "steps": [ { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "if", "steps": [ { @@ -242,7 +234,7 @@ "html": "

Execute § 5.5 Report a violation on the result of executing § 2.4.2 Create a violation object for request, and policy. on request, and policy.

" }, { - "html": "

If policy’s disposition is \"enforce\",\n then set result to \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\",\n then set result to \"Blocked\".

" } ] } @@ -260,11 +252,11 @@ "rationale": "for", "steps": [ { - "html": "For each policy of document’s policy container's CSP list:", + "html": "For each policy of document’s policy container's CSP list:", "rationale": "for", "steps": [ { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "execute", "steps": [ { @@ -302,11 +294,11 @@ "html": "

Let result be \"Allowed\".

" }, { - "html": "For each policy of element’s Document's global object’s CSP list:", + "html": "For each policy of element’s Document's global object’s CSP list:", "rationale": "for", "steps": [ { - "html": "For each directive of policy’s directive set:", + "html": "For each directive of policy’s directive set:", "rationale": "if", "steps": [ { @@ -331,7 +323,7 @@ "html": "

Execute § 5.5 Report a violation on violation.

" }, { - "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" } ] } @@ -350,11 +342,11 @@ "html": "

Let result be \"Allowed\".

" }, { - "html": "For each policy of navigation request’s policy container’s CSP list:", + "html": "For each policy of navigation request’s policy container’s CSP list:", "rationale": "for", "steps": [ { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "if", "steps": [ { @@ -370,7 +362,7 @@ "html": "

Execute § 5.5 Report a violation on violation.

" }, { - "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" } ] } @@ -381,11 +373,11 @@ "rationale": "for", "steps": [ { - "html": "For each policy of navigation request’s client’s global object’s CSP list:", + "html": "For each policy of navigation request’s client’s global object’s CSP list:", "rationale": "for", "steps": [ { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "let", "steps": [ { @@ -404,7 +396,7 @@ "html": "

Execute § 5.5 Report a violation on violation.

" }, { - "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" } ] } @@ -425,11 +417,11 @@ "html": "

Let result be \"Allowed\".

" }, { - "html": "For each policy of response CSP list:", + "html": "For each policy of response CSP list:", "rationale": "for", "steps": [ { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "if", "steps": [ { @@ -445,18 +437,18 @@ "html": "

Execute § 5.5 Report a violation on violation.

" }, { - "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" } ] } ] }, { - "html": "For each policy of navigation request’s policy container’s CSP list:", + "html": "For each policy of navigation request’s policy container’s CSP list:", "rationale": "for", "steps": [ { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "if", "steps": [ { @@ -472,7 +464,7 @@ "html": "

Execute § 5.5 Report a violation on violation.

" }, { - "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" } ] } @@ -491,11 +483,11 @@ "html": "

Let result be \"Allowed\".

" }, { - "html": "For each policy of global’s CSP list:", + "html": "For each policy of global’s CSP list:", "rationale": "for", "steps": [ { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "execute", "steps": [ { @@ -518,15 +510,15 @@ "html": "

Let result be \"Allowed\".

" }, { - "html": "For each policy of global’s CSP list:", + "html": "For each policy of global’s CSP list:", "rationale": "for", "steps": [ { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "if", "steps": [ { - "html": "

If directive’s webrtc pre-connect check returns \"Allowed\", continue.

" + "html": "

If directive’s webrtc pre-connect check returns \"Allowed\", continue.

" }, { "html": "

Otherwise, let violation be the result of executing § 2.4.1 Create a violation object for global, policy, and directive on global, policy, and directive’s name.

" @@ -538,7 +530,7 @@ "html": "

Execute § 5.5 Report a violation on violation.

" }, { - "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\", then\n set result to \"Blocked\".

" } ] } @@ -589,7 +581,7 @@ "html": "

Assert: parameterArgs’ [list/size=] is equal to [parameterStrings]' size.

" }, { - "html": "For each index of the range 0 to |parameterArgs]' [list/size=]:", + "html": "For each index of the range 0 to |parameterArgs]' [list/size=]:", "rationale": "let", "steps": [ { @@ -632,7 +624,7 @@ "html": "

Let global be realm’s global object.

" }, { - "html": "For each policy of global’s CSP list:", + "html": "For each policy of global’s CSP list:", "rationale": "let", "steps": [ { @@ -658,7 +650,7 @@ "html": "

Execute § 5.5 Report a violation on violation.

" }, { - "html": "

If policy’s disposition is \"enforce\", then set result to\n \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\", then set result to\n \"Blocked\".

" } ] } @@ -680,7 +672,7 @@ "html": "

Let result be \"Allowed\".

" }, { - "html": "For each policy of global’s CSP list:", + "html": "For each policy of global’s CSP list:", "rationale": "let", "steps": [ { @@ -703,7 +695,7 @@ "html": "

Execute § 5.5 Report a violation on violation.

" }, { - "html": "

If policy’s disposition is \"enforce\", then set result to\n \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\", then set result to\n \"Blocked\".

" } ] } @@ -715,11 +707,11 @@ ] }, { - "html": "Given a violation’s resource resource, this algorithm returns a string, to be used as the blocked URI field for violation reports.", + "html": "Given a violation’s resource resource, this algorithm returns a string, to be used as the blocked URI field for violation reports.", "rationale": "assert", "steps": [ { - "html": "

Assert: resource is a URL or a string.

" + "html": "

Assert: resource is a URL or a string.

" }, { "html": "

If resource is a URL, return the result of executing § 5.4 Strip URL for use in reports on resource.

" @@ -734,7 +726,7 @@ "rationale": "let", "steps": [ { - "html": "

Let body be a map with its keys initialized as\n follows:

\n
\n
\"document-uri\"\n
\n

The result of executing § 5.4 Strip URL for use in reports on violation’s url.

\n
\"referrer\"\n
\n

The result of executing § 5.4 Strip URL for use in reports on violation’s referrer.

\n
\"blocked-uri\"\n
\n

The result of executing § 5.2 Obtain the blockedURI of a violation’s resource on violation’s resource.

\n
\"effective-directive\"\n
\n

violation’s effective directive

\n
\"violated-directive\"\n
\n

violation’s effective directive

\n
\"original-policy\"\n
\n

The serialization of violation’s policy

\n
\"disposition\"\n
\n

The disposition of violation’s policy

\n
\"status-code\"\n
\n

violation’s status

\n
\"script-sample\"\n
\n

violation’s sample

\n \n
" + "html": "

Let body be a map with its keys initialized as\n follows:

\n
\n
\"document-uri\"\n
\n

The result of executing § 5.4 Strip URL for use in reports on violation’s url.

\n
\"referrer\"\n
\n

The result of executing § 5.4 Strip URL for use in reports on violation’s referrer.

\n
\"blocked-uri\"\n
\n

The result of executing § 5.2 Obtain the blockedURI of a violation’s resource on violation’s resource.

\n
\"effective-directive\"\n
\n

violation’s effective directive

\n
\"violated-directive\"\n
\n

violation’s effective directive

\n
\"original-policy\"\n
\n

The serialization of violation’s policy

\n
\"disposition\"\n
\n

The disposition of violation’s policy

\n
\"status-code\"\n
\n

violation’s status

\n
\"script-sample\"\n
\n

violation’s sample

\n \n
" }, { "html": "If violation’s source file is not null:", @@ -813,14 +805,14 @@ "html": "

If target implements EventTarget, fire an event named securitypolicyviolation that uses the SecurityPolicyViolationEvent interface at target with its attributes initialized as follows:

\n
\n
documentURI\n
\n

The result of executing § 5.4 Strip URL for use in reports on violation’s url.

\n
referrer\n
\n

The result of executing § 5.4 Strip URL for use in reports on violation’s referrer.

\n
blockedURI\n
\n

The result of executing § 5.2 Obtain the blockedURI of a violation’s resource on violation’s resource.

\n
effectiveDirective\n
\n

violation’s effective directive

\n
violatedDirective\n
\n

violation’s effective directive

\n
originalPolicy\n
\n

The serialization of violation’s policy

\n
disposition\n
\n

violation’s disposition

\n
sourceFile\n
\n

The result of executing § 5.4 Strip URL for use in reports on violation’s source file, if violation’s source file is not null, or null otherwise.

\n
statusCode\n
\n

violation’s status

\n
lineNumber\n
\n

violation’s line number

\n
columnNumber\n
\n

violation’s column number

\n
sample\n
\n

violation’s sample

\n
bubbles\n
\n

true

\n
composed\n
\n

true

\n
" }, { - "html": "If violation’s policy’s directive\n set contains a directive named \"report-uri\" directive:", + "html": "If violation’s policy’s directive\n set contains a directive named \"report-uri\" directive:", "rationale": "if", "steps": [ { - "html": "

If violation’s policy’s directive set contains a directive named\n \"report-to\", skip the remaining substeps.

" + "html": "

If violation’s policy’s directive set contains a directive named\n \"report-to\", skip the remaining substeps.

" }, { - "html": "For each token of directive’s value:", + "html": "For each token of directive’s value:", "rationale": "let", "steps": [ { @@ -840,7 +832,7 @@ ] }, { - "html": "If violation’s policy’s directive\n set contains a directive named \"report-to\" directive:", + "html": "If violation’s policy’s directive\n set contains a directive named \"report-to\" directive:", "rationale": "let", "steps": [ { @@ -1535,14 +1527,14 @@ "rationale": "for", "steps": [ { - "html": "For each policy of document’s global object’s csp list:", + "html": "For each policy of document’s global object’s csp list:", "rationale": "let", "steps": [ { "html": "

Let source list be null.

" }, { - "html": "

If a directive whose name is\n \"base-uri\" is present in policy’s directive\n set, set source list to that directive’s value.

" + "html": "

If a directive whose name is\n \"base-uri\" is present in policy’s directive\n set, set source list to that directive’s value.

" }, { "html": "

If source list is null, skip to the next policy.

" @@ -1561,7 +1553,7 @@ "html": "

Execute § 5.5 Report a violation on violation.

" }, { - "html": "

If policy’s disposition is \"enforce\",\n return \"Blocked\".

" + "html": "

If policy’s disposition is \"enforce\",\n return \"Blocked\".

" } ] } @@ -1577,7 +1569,7 @@ "rationale": "if", "steps": [ { - "html": "

If policy’s disposition is not \"enforce\", or context is not a WorkerGlobalScope, then abort this algorithm.

" + "html": "

If policy’s disposition is not \"enforce\", or context is not a WorkerGlobalScope, then abort this algorithm.

" }, { "html": "

Let sandboxing flag set be a new sandboxing flag set.

" @@ -1733,7 +1725,7 @@ "html": "

Let violates be \"Does Not Violate\".

" }, { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "let", "steps": [ { @@ -1760,7 +1752,7 @@ "html": "

If defaultDirective does not exist, return \"Does Not Violate\".

" }, { - "html": "For each directive of policy:", + "html": "For each directive of policy:", "rationale": "let", "steps": [ { @@ -1787,7 +1779,7 @@ "html": "

If nonce is the empty string, return \"Does Not Match\".

" }, { - "html": "For each expression of source list:", + "html": "For each expression of source list:", "rationale": "if", "steps": [ { @@ -1820,7 +1812,7 @@ "html": "

If integrity sources is \"no metadata\" or an empty set, return \"Does Not Match\".

" }, { - "html": "For each source of integrity sources:", + "html": "For each source of integrity sources:", "rationale": "if", "steps": [ { @@ -1847,7 +1839,7 @@ "html": "

If source list’s size is 1, and source list[0] is an ASCII\n case-insensitive match for the string \"'none'\", return \"Does Not Match\".

" }, { - "html": "For each expression of source list:", + "html": "For each expression of source list:", "rationale": "if", "steps": [ { @@ -2049,7 +2041,7 @@ ] }, { - "html": "For each piece A of path list A:", + "html": "For each piece A of path list A:", "rationale": "let", "steps": [ { @@ -2079,7 +2071,7 @@ "html": "

If element does not have an attribute named \"nonce\", return \"Not Nonceable\".

" }, { - "html": "If element is a script element, then for each attribute of element’s attribute list:", + "html": "If element is a script element, then for each attribute of element’s attribute list:", "rationale": "if", "steps": [ { @@ -2106,7 +2098,7 @@ "html": "

Let allow all inline be false.

" }, { - "html": "For each expression of list:", + "html": "For each expression of list:", "rationale": "if", "steps": [ { @@ -2137,7 +2129,7 @@ "rationale": "for", "steps": [ { - "html": "For each expression of list:", + "html": "For each expression of list:", "rationale": "if", "steps": [ { @@ -2151,7 +2143,7 @@ "html": "

Let unsafe-hashes flag be false.

" }, { - "html": "For each expression of list:", + "html": "For each expression of list:", "rationale": "if", "steps": [ { @@ -2167,7 +2159,7 @@ "html": "

Set source to the result of executing UTF-8 encode on the result of executing JavaScript string converting on source.

" }, { - "html": "For each expression of list:", + "html": "For each expression of list:", "rationale": "if", "steps": [ { @@ -2228,17 +2220,23 @@ "html": "

If request’s initiator is \"prefetch\" or \"prerender\",\n return default-src.

" }, { - "html": "

If request’s initiator is \"fetch\" or its destination is \"\", return connect-src.

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

Switch on request’s destination, and execute\n the associated steps:

\n
\n
\"manifest\"\n
\n \n
\"object\"\n
\"embed\"\n
\n \n
\"frame\"\n
\"iframe\"\n
\n \n
\"audio\"\n
\"track\"\n
\"video\"\n
\n \n
\"font\"\n
\n \n
\"image\"\n
\n \n
\"style\"\n
\n \n
\"script\"\n
\"xslt\"\n
\"audioworklet\"\n
\"paintworklet\"\n
\n \n
\"serviceworker\"\n
\"sharedworker\"\n
\"worker\"\n
\n \n
\"json\"\n
\"webidentity\"\n
\n \n
\"report\"\n
\n \n
", + "html": "

Switch on request’s destination, and execute\n the associated steps:

\n
\n
the empty string\n
\n \n
\"manifest\"\n
\n \n
\"object\"\n
\"embed\"\n
\n \n
\"frame\"\n
\"iframe\"\n
\n \n
\"audio\"\n
\"track\"\n
\"video\"\n
\n \n
\"font\"\n
\n \n
\"image\"\n
\n \n
\"style\"\n
\n \n
\"script\"\n
\"xslt\"\n
\"audioworklet\"\n
\"paintworklet\"\n
\n \n
\"serviceworker\"\n
\"sharedworker\"\n
\"worker\"\n
\n \n
\"json\"\n
\"webidentity\"\n
\n \n
\"report\"\n
\n \n
", "rationale": "return", "steps": [ { - "html": "

Return manifest-src.

" + "html": "

Return connect-src.

" } ], "additional": [ + { + "html": "", + "rationale": "return", + "steps": [ + { + "html": "

Return manifest-src.

" + } + ] + }, { "html": "", "rationale": "return", @@ -2510,7 +2508,7 @@ "html": "

Let directive fallback list be the result of executing § 6.8.3 Get fetch directive fallback list on effective directive name.

" }, { - "html": "For each fallback directive of directive fallback list:", + "html": "For each fallback directive of directive fallback list:", "rationale": "if", "steps": [ { diff --git a/tr/algorithms/IndexedDB-3.json b/tr/algorithms/IndexedDB-3.json index 47f8ba7fc005..30209cb4efd0 100644 --- a/tr/algorithms/IndexedDB-3.json +++ b/tr/algorithms/IndexedDB-3.json @@ -7,14 +7,14 @@ { "name": "create a sorted name list", "href": "https://www.w3.org/TR/IndexedDB-3/#create-a-sorted-name-list", - "html": "To create a sorted name list from a list names, run these steps:", + "html": "To create a sorted name list from a list names, run these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let sorted be names sorted in ascending order with the code unit less than algorithm.

" + "html": "

Let sorted be names sorted in ascending order with the code unit less than algorithm.

" }, { - "html": "

Return a new DOMStringList associated with sorted.

" + "html": "

Return a new DOMStringList associated with sorted.

" } ] }, @@ -25,10 +25,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let ta be the type of a.

" + "html": "

Let ta be the type of a.

" }, { - "html": "

Let tb be the type of b.

" + "html": "

Let tb be the type of b.

" }, { "html": "If ta does not equal tb, then run these steps:", @@ -56,7 +56,7 @@ "html": "

If ta is date, then return 1.

" }, { - "html": "

Assert: tb is date.

" + "html": "

Assert: tb is date.

" }, { "html": "

Return -1.

" @@ -64,10 +64,10 @@ ] }, { - "html": "

Let va be the value of a.

" + "html": "

Let va be the value of a.

" }, { - "html": "

Let vb be the value of b.

" + "html": "

Let vb be the value of b.

" }, { "html": "Switch on ta:", @@ -114,10 +114,10 @@ "rationale": "if", "steps": [ { - "html": "

If va is code unit less than vb, then return -1.

" + "html": "

If va is code unit less than vb, then return -1.

" }, { - "html": "

If vb is code unit less than va, then return 1.

" + "html": "

If vb is code unit less than va, then return 1.

" }, { "html": "

Return 0.

" @@ -130,10 +130,10 @@ "rationale": "if", "steps": [ { - "html": "

If va is byte less than vb, then return -1.

" + "html": "

If va is byte less than vb, then return -1.

" }, { - "html": "

If vb is byte less than va, then return 1.

" + "html": "

If vb is byte less than va, then return 1.

" }, { "html": "

Return 0.

" @@ -146,7 +146,7 @@ "rationale": "let", "steps": [ { - "html": "

Let length be the lesser of va’s size and vb’s size.

" + "html": "

Let length be the lesser of va’s size and vb’s size.

" }, { "html": "

Let i be 0.

" @@ -156,7 +156,7 @@ "rationale": "let", "steps": [ { - "html": "

Let c be the result of recursively comparing two keys with va[i] and vb[i].

" + "html": "

Let c be the result of recursively comparing two keys with va[i] and vb[i].

" }, { "html": "

If c is not 0, return c.

" @@ -167,10 +167,10 @@ ] }, { - "html": "

If va’s size is greater than vb’s size, then return 1.

" + "html": "

If va’s size is greater than vb’s size, then return 1.

" }, { - "html": "

If va’s size is less than vb’s size, then return -1.

" + "html": "

If va’s size is less than vb’s size, then return -1.

" }, { "html": "

Return 0.

" @@ -186,26 +186,26 @@ { "name": "transaction/lifetime", "href": "https://www.w3.org/TR/IndexedDB-3/#transaction-lifetime", - "html": "The lifetime of a transaction is as follows:", + "html": "The lifetime of a transaction is as follows:", "rationale": "/queue a( \\w+)? task/i", "steps": [ { - "html": "

A transaction is created with a scope and a mode. When a transaction is created its state is initially active.

" + "html": "

A transaction is created with a scope and a mode. When a transaction is created its state is initially active.

" }, { - "html": "

When an implementation is able to enforce the constraints for the\ntransaction’s scope and mode,\ndefined below, the implementation must queue a task to start the\ntransaction asynchronously.

\n

Once the transaction has been started the\nimplementation can begin executing the requests placed\nagainst the transaction. Requests must be executed in the order in\nwhich they were made against the transaction. Likewise, their\nresults must be returned in the order the requests were placed\nagainst a specific transaction. There is no guarantee about the\norder that results from requests in different transactions are\nreturned.

" + "html": "

When an implementation is able to enforce the constraints for the\ntransaction’s scope and mode,\ndefined below, the implementation must queue a task to start the\ntransaction asynchronously.

\n

Once the transaction has been started the\nimplementation can begin executing the requests placed\nagainst the transaction. Requests must be executed in the order in\nwhich they were made against the transaction. Likewise, their\nresults must be returned in the order the requests were placed\nagainst a specific transaction. There is no guarantee about the\norder that results from requests in different transactions are\nreturned.

" }, { - "html": "

When each request associated with a transaction is processed,\na success or error event will be\nfired. While the event is being dispatched, the transaction state is set to active, allowing\nadditional requests to be made against the transaction. Once the\nevent dispatch is complete, the transaction’s state is set to inactive again.

" + "html": "

When each request associated with a transaction is processed,\na success or error event will be\nfired. While the event is being dispatched, the transaction state is set to active, allowing\nadditional requests to be made against the transaction. Once the\nevent dispatch is complete, the transaction’s state is set to inactive again.

" }, { - "html": "

A transaction can be aborted at any time before it is finished, even if the\ntransaction isn’t currently active or hasn’t yet started.

\n

An explicit call to abort() will initiate an abort. An abort will also be initiated following a\nfailed request that is not handled by script.

\n

When a transaction is aborted the implementation must undo (roll\nback) any changes that were made to the database during that\ntransaction. This includes both changes to the contents of object stores as well as additions and removals of object\nstores and indexes.

" + "html": "

A transaction can be aborted at any time before it is finished, even if the\ntransaction isn’t currently active or hasn’t yet started.

\n

An explicit call to abort() will initiate an abort. An abort will also be initiated following a\nfailed request that is not handled by script.

\n

When a transaction is aborted the implementation must undo (roll\nback) any changes that were made to the database during that\ntransaction. This includes both changes to the contents of object stores as well as additions and removals of object\nstores and indexes.

" }, { - "html": "

The implementation must attempt to commit a transaction when all requests placed against the\ntransaction have completed and their returned results handled, no\nnew requests have been placed against the transaction, and the\ntransaction has not been aborted

\n

An explicit call to commit() will initiate a commit without waiting for request results to be\nhandled by script.

\n

When committing, the transaction state is set to committing. The implementation must atomically\nwrite any changes to the database made by requests placed\nagainst the transaction. That is, either all of the changes must\nbe written, or if an error occurs, such as a disk write error, the\nimplementation must not write any of the changes to the database,\nand the steps to abort a transaction will be followed.

" + "html": "

The implementation must attempt to commit a transaction when all requests placed against the\ntransaction have completed and their returned results handled, no\nnew requests have been placed against the transaction, and the\ntransaction has not been aborted

\n

An explicit call to commit() will initiate a commit without waiting for request results to be\nhandled by script.

\n

When committing, the transaction state is set to committing. The implementation must atomically\nwrite any changes to the database made by requests placed\nagainst the transaction. That is, either all of the changes must\nbe written, or if an error occurs, such as a disk write error, the\nimplementation must not write any of the changes to the database,\nand the steps to abort a transaction will be followed.

" }, { - "html": "

When a transaction is committed or aborted,\nits state is set to finished.

" + "html": "

When a transaction is committed or aborted,\nits state is set to finished.

" } ] }, @@ -216,17 +216,17 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If there are no transactions with cleanup\nevent loop matching the current event loop, return false.

" + "html": "

If there are no transactions with cleanup\nevent loop matching the current event loop, return false.

" }, { - "html": "For each transaction transaction with cleanup event loop matching the current event loop:", + "html": "For each transaction transaction with cleanup event loop matching the current event loop:", "rationale": "set", "steps": [ { - "html": "

Set transaction’s state to inactive.

" + "html": "

Set transaction’s state to inactive.

" }, { - "html": "

Clear transaction’s cleanup event loop.

" + "html": "

Clear transaction’s cleanup event loop.

" } ] }, @@ -242,39 +242,39 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If value is a key range, return value.

" + "html": "

If value is a key range, return value.

" }, { - "html": "

If value is undefined or is null, then throw a\n\"DataError\" DOMException if null disallowed flag is true, or return an unbounded key range otherwise.

" + "html": "

If value is undefined or is null, then throw a\n\"DataError\" DOMException if null disallowed flag is true, or return an unbounded key range otherwise.

" }, { - "html": "

Let key be the result of converting\na value to a key with value. Rethrow any exceptions.

" + "html": "

Let key be the result of converting\na value to a key with value. Rethrow any exceptions.

" }, { - "html": "

If key is invalid, throw a \"DataError\" DOMException.

" + "html": "

If key is invalid, throw a \"DataError\" DOMException.

" }, { - "html": "

Return a key range containing only key.

" + "html": "

Return a key range containing only key.

" } ] }, { "name": "generate a key", "href": "https://www.w3.org/TR/IndexedDB-3/#generate-a-key", - "html": "To generate a key for an object store store, run these steps:", + "html": "To generate a key for an object store store, run these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let generator be store’s key generator.

" + "html": "

Let generator be store’s key generator.

" }, { - "html": "

Let key be generator’s current number.

" + "html": "

Let key be generator’s current number.

" }, { "html": "

If key is greater than 253 (9007199254740992), then return failure.

" }, { - "html": "

Increase generator’s current number by 1.

" + "html": "

Increase generator’s current number by 1.

" }, { "html": "

Return key.

" @@ -284,14 +284,14 @@ { "name": "possibly update the key generator", "href": "https://www.w3.org/TR/IndexedDB-3/#possibly-update-the-key-generator", - "html": "To possibly update the key generator for an object store store with key,\n run these steps:", + "html": "To possibly update the key generator for an object store store with key,\n run these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If the type of key is not number, abort these steps.

" + "html": "

If the type of key is not number, abort these steps.

" }, { - "html": "

Let value be the value of key.

" + "html": "

Let value be the value of key.

" }, { "html": "

Set value to the minimum of value and 253 (9007199254740992).

" @@ -300,10 +300,10 @@ "html": "

Set value to the largest integer not greater than value.

" }, { - "html": "

Let generator be store’s key generator.

" + "html": "

Let generator be store’s key generator.

" }, { - "html": "

If value is greater than or equal to generator’s current number,\n then set generator’s current number to value + 1.

" + "html": "

If value is greater than or equal to generator’s current number,\n then set generator’s current number to value + 1.

" } ] }, @@ -314,10 +314,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this's done flag is false, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's done flag is false, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

Otherwise, return this's result, or undefined if the request resulted in an error.

" + "html": "

Otherwise, return this's result, or undefined if the request resulted in an error.

" } ] }, @@ -328,10 +328,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this's done flag is false, then throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's done flag is false, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

Otherwise, return this's error, or null if no error occurred.

" + "html": "

Otherwise, return this's error, or null if no error occurred.

" } ] }, @@ -342,25 +342,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let event be the result of creating an event using IDBVersionChangeEvent.

" + "html": "

Let event be the result of creating an event using IDBVersionChangeEvent.

" }, { - "html": "

Set event’s type attribute to e.

" + "html": "

Set event’s type attribute to e.

" }, { - "html": "

Set event’s bubbles and cancelable attributes to false.

" + "html": "

Set event’s bubbles and cancelable attributes to false.

" }, { - "html": "

Set event’s oldVersion attribute to oldVersion.

" + "html": "

Set event’s oldVersion attribute to oldVersion.

" }, { - "html": "

Set event’s newVersion attribute to newVersion.

" + "html": "

Set event’s newVersion attribute to newVersion.

" }, { "html": "

Let legacyOutputDidListenersThrowFlag be false.

" }, { - "html": "

Dispatch event at target with legacyOutputDidListenersThrowFlag.

" + "html": "

Dispatch event at target with legacyOutputDidListenersThrowFlag.

" }, { "html": "

Return legacyOutputDidListenersThrowFlag.

" @@ -374,26 +374,26 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If version is 0 (zero), throw a TypeError.

" + "html": "

If version is 0 (zero), throw a TypeError.

" }, { - "html": "

Let environment be this's relevant settings object.

" + "html": "

Let environment be this's relevant settings object.

" }, { - "html": "

Let storageKey be the result of running obtain a storage key given environment.\nIf failure is returned, then throw a \"SecurityError\" DOMException and abort these steps.

" + "html": "

Let storageKey be the result of running obtain a storage key given environment.\nIf failure is returned, then throw a \"SecurityError\" DOMException and abort these steps.

" }, { - "html": "

Let request be a new open request.

" + "html": "

Let request be a new open request.

" }, { - "html": "Run these steps in parallel:", + "html": "Run these steps in parallel:", "rationale": "let", "steps": [ { - "html": "

Let result be the result of opening a database connection, with storageKey, name, version if given and undefined\notherwise, and request.

" + "html": "

Let result be the result of opening a database connection, with storageKey, name, version if given and undefined\notherwise, and request.

" }, { - "html": "Queue a task to run these steps:", + "html": "Queue a task to run these steps:", "rationale": "if", "steps": [ { @@ -401,16 +401,16 @@ "rationale": "set", "steps": [ { - "html": "

Set request’s result to undefined.

" + "html": "

Set request’s result to undefined.

" }, { - "html": "

Set request’s error to result.

" + "html": "

Set request’s error to result.

" }, { - "html": "

Set request’s done flag to true.

" + "html": "

Set request’s done flag to true.

" }, { - "html": "

Fire an event named error at request with its bubbles and cancelable attributes initialized to true.

" + "html": "

Fire an event named error at request with its bubbles and cancelable attributes initialized to true.

" } ] }, @@ -419,13 +419,13 @@ "rationale": "set", "steps": [ { - "html": "

Set request’s result to result.

" + "html": "

Set request’s result to result.

" }, { - "html": "

Set request’s done flag to true.

" + "html": "

Set request’s done flag to true.

" }, { - "html": "

Fire an event named success at request.

" + "html": "

Fire an event named success at request.

" } ] } @@ -434,7 +434,7 @@ ] }, { - "html": "

Return a new IDBOpenDBRequest object for request.

" + "html": "

Return a new IDBOpenDBRequest object for request.

" } ] }, @@ -445,40 +445,40 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let environment be this's relevant settings object.

" + "html": "

Let environment be this's relevant settings object.

" }, { - "html": "

Let storageKey be the result of running obtain a storage key given environment.\nIf failure is returned, then throw a \"SecurityError\" DOMException and abort these steps.

" + "html": "

Let storageKey be the result of running obtain a storage key given environment.\nIf failure is returned, then throw a \"SecurityError\" DOMException and abort these steps.

" }, { - "html": "

Let request be a new open request.

" + "html": "

Let request be a new open request.

" }, { - "html": "Run these steps in parallel:", + "html": "Run these steps in parallel:", "rationale": "let", "steps": [ { - "html": "

Let result be the result of deleting a database, with storageKey, name, and request.

" + "html": "

Let result be the result of deleting a database, with storageKey, name, and request.

" }, { - "html": "

Set request’s processed flag to true.

" + "html": "

Set request’s processed flag to true.

" }, { - "html": "Queue a task to run these steps:", + "html": "Queue a task to run these steps:", "rationale": "if", "steps": [ { - "html": "

If result is an error,\nset request’s error to result,\nset request’s done flag to true,\nand fire an event named error at request with\nits bubbles and cancelable attributes initialized to true.

" + "html": "

If result is an error,\nset request’s error to result,\nset request’s done flag to true,\nand fire an event named error at request with\nits bubbles and cancelable attributes initialized to true.

" }, { - "html": "

Otherwise,\nset request’s result to undefined,\nset request’s done flag to true,\nand fire a version change event named success at request with result and\nnull.

" + "html": "

Otherwise,\nset request’s result to undefined,\nset request’s done flag to true,\nand fire a version change event named success at request with result and\nnull.

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

Return a new IDBOpenDBRequest object for request.

" + "html": "

Return a new IDBOpenDBRequest object for request.

" } ] }, @@ -489,44 +489,44 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let environment be this's relevant settings object.

" + "html": "

Let environment be this's relevant settings object.

" }, { - "html": "

Let storageKey be the result of running obtain a storage key given environment.\nIf failure is returned, then return a promise rejected with a \"SecurityError\" DOMException

" + "html": "

Let storageKey be the result of running obtain a storage key given environment.\nIf failure is returned, then return a promise rejected with a \"SecurityError\" DOMException

" }, { - "html": "

Let p be a new promise.

" + "html": "

Let p be a new promise.

" }, { - "html": "Run these steps in parallel:", + "html": "Run these steps in parallel:", "rationale": "let", "steps": [ { - "html": "

Let databases be the set of databases in storageKey.\nIf this cannot be determined for any reason, then reject p with\nan appropriate error (e.g. an \"UnknownError\" DOMException)\nand terminate these steps.

" + "html": "

Let databases be the set of databases in storageKey.\nIf this cannot be determined for any reason, then reject p with\nan appropriate error (e.g. an \"UnknownError\" DOMException)\nand terminate these steps.

" }, { - "html": "

Let result be a new list.

" + "html": "

Let result be a new list.

" }, { - "html": "For each db of databases:", + "html": "For each db of databases:", "rationale": "let", "steps": [ { - "html": "

Let info be a new IDBDatabaseInfo dictionary.

" + "html": "

Let info be a new IDBDatabaseInfo dictionary.

" }, { - "html": "

Set info’s name dictionary member to db’s name.

" + "html": "

Set info’s name dictionary member to db’s name.

" }, { - "html": "

Set info’s version dictionary member to db’s version.

" + "html": "

Set info’s version dictionary member to db’s version.

" }, { - "html": "

Append info to result.

" + "html": "

Append info to result.

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

Resolve p with result.

" + "html": "

Resolve p with result.

" } ] }, @@ -542,19 +542,19 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let a be the result of converting a\nvalue to a key with first. Rethrow any exceptions.

" + "html": "

Let a be the result of converting a\nvalue to a key with first. Rethrow any exceptions.

" }, { - "html": "

If a is invalid, throw a \"DataError\" DOMException.

" + "html": "

If a is invalid, throw a \"DataError\" DOMException.

" }, { - "html": "

Let b be the result of converting a\nvalue to a key with second. Rethrow any exceptions.

" + "html": "

Let b be the result of converting a\nvalue to a key with second. Rethrow any exceptions.

" }, { - "html": "

If b is invalid, throw a \"DataError\" DOMException.

" + "html": "

If b is invalid, throw a \"DataError\" DOMException.

" }, { - "html": "

Return the results of comparing two keys with a and b.

" + "html": "

Return the results of comparing two keys with a and b.

" } ] }, @@ -565,10 +565,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let names be a list of the names of the object stores in this's object store set.

" + "html": "

Let names be a list of the names of the object stores in this's object store set.

" }, { - "html": "

Return the result (a DOMStringList) of creating a sorted name list with names.

" + "html": "

Return the result (a DOMStringList) of creating a sorted name list with names.

" } ] }, @@ -579,34 +579,34 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let database be this's associated database.

" + "html": "

Let database be this's associated database.

" }, { - "html": "

Let transaction be database’s upgrade transaction if it is not null, or throw an \"InvalidStateError\" DOMException otherwise.

" + "html": "

Let transaction be database’s upgrade transaction if it is not null, or throw an \"InvalidStateError\" DOMException otherwise.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let keyPath be options’s keyPath member if it is not undefined or null, or null otherwise.

" + "html": "

Let keyPath be options’s keyPath member if it is not undefined or null, or null otherwise.

" }, { - "html": "

If keyPath is not null and is not a valid key\npath, throw a \"SyntaxError\" DOMException.

" + "html": "

If keyPath is not null and is not a valid key\npath, throw a \"SyntaxError\" DOMException.

" }, { - "html": "

If an object store named name already\nexists in database throw a \"ConstraintError\" DOMException.

" + "html": "

If an object store named name already\nexists in database throw a \"ConstraintError\" DOMException.

" }, { - "html": "

Let autoIncrement be options’s autoIncrement member.

" + "html": "

Let autoIncrement be options’s autoIncrement member.

" }, { - "html": "

If autoIncrement is true and keyPath is an empty string or any\nsequence (empty or otherwise), throw an\n\"InvalidAccessError\" DOMException.

" + "html": "

If autoIncrement is true and keyPath is an empty string or any\nsequence (empty or otherwise), throw an\n\"InvalidAccessError\" DOMException.

" }, { - "html": "

Let store be a new object store in database. Set the created object store's name to name. If autoIncrement is true, then the created object\nstore uses a key generator. If keyPath is\nnot null, set the created object store's key path to keyPath.

" + "html": "

Let store be a new object store in database. Set the created object store's name to name. If autoIncrement is true, then the created object\nstore uses a key generator. If keyPath is\nnot null, set the created object store's key path to keyPath.

" }, { - "html": "

Return a new object store handle associated with store and transaction.

" + "html": "

Return a new object store handle associated with store and transaction.

" } ] }, @@ -617,22 +617,22 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let database be this's associated database.

" + "html": "

Let database be this's associated database.

" }, { - "html": "

Let transaction be database’s upgrade transaction if it is not null, or throw an \"InvalidStateError\" DOMException otherwise.

" + "html": "

Let transaction be database’s upgrade transaction if it is not null, or throw an \"InvalidStateError\" DOMException otherwise.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let store be the object store named name in database,\nor throw a \"NotFoundError\" DOMException if none.

" + "html": "

Let store be the object store named name in database,\nor throw a \"NotFoundError\" DOMException if none.

" }, { - "html": "

Remove store from this's object store set.

" + "html": "

Remove store from this's object store set.

" }, { - "html": "

If there is an object store handle associated with store and transaction, remove all entries from its index set.

" + "html": "

If there is an object store handle associated with store and transaction, remove all entries from its index set.

" }, { "html": "

Destroy store.

" @@ -646,31 +646,31 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If a live upgrade transaction is associated with the connection, throw an \"InvalidStateError\" DOMException.

" + "html": "

If a live upgrade transaction is associated with the connection, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If this's close pending flag is true, then throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If this's close pending flag is true, then throw an\n\"InvalidStateError\" DOMException.

" }, { "html": "

Let scope be the set of unique strings in storeNames if it is a\nsequence, or a set containing one string equal to storeNames otherwise.

" }, { - "html": "

If any string in scope is not the name of an object\nstore in the connected database, throw a\n\"NotFoundError\" DOMException.

" + "html": "

If any string in scope is not the name of an object\nstore in the connected database, throw a\n\"NotFoundError\" DOMException.

" }, { - "html": "

If scope is empty, throw an \"InvalidAccessError\" DOMException.

" + "html": "

If scope is empty, throw an \"InvalidAccessError\" DOMException.

" }, { - "html": "

If mode is not \"readonly\" or \"readwrite\", throw a TypeError.

" + "html": "

If mode is not \"readonly\" or \"readwrite\", throw a TypeError.

" }, { - "html": "

Let transaction be a newly created transaction with this connection, mode, optionsdurability member, and the set of object stores named in scope.

" + "html": "

Let transaction be a newly created transaction with this connection, mode, optionsdurability member, and the set of object stores named in scope.

" }, { - "html": "

Set transaction’s cleanup event loop to the\ncurrent event loop.

" + "html": "

Set transaction’s cleanup event loop to the\ncurrent event loop.

" }, { - "html": "

Return an IDBTransaction object representing transaction.

" + "html": "

Return an IDBTransaction object representing transaction.

" } ] }, @@ -681,44 +681,44 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Run close a database connection with this connection.

" + "html": "

Run close a database connection with this connection.

" } ] }, { "name": "IDBObjectStore name setter", - "html": "The name setter steps are:", + "html": "The name setter steps are:", "rationale": ".algorithm", "steps": [ { - "html": "

Let name be the given value.

" + "html": "

Let name be the given value.

" }, { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction is not an upgrade transaction, throw an \"InvalidStateError\" DOMException.

" + "html": "

If transaction is not an upgrade transaction, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active, throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active, throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If store’s name is equal to name,\nterminate these steps.

" + "html": "

If store’s name is equal to name,\nterminate these steps.

" }, { - "html": "

If an object store named name already exists in store’s database, throw a\n\"ConstraintError\" DOMException.

" + "html": "

If an object store named name already exists in store’s database, throw a\n\"ConstraintError\" DOMException.

" }, { - "html": "

Set store’s name to name.

" + "html": "

Set store’s name to name.

" }, { - "html": "

Set this's name to name.

" + "html": "

Set this's name to name.

" } ] }, @@ -729,10 +729,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let names be a list of the names of the indexes in this's index set.

" + "html": "

Let names be a list of the names of the indexes in this's index set.

" }, { - "html": "

Return the result (a DOMStringList) of creating a sorted name list with names.

" + "html": "

Return the result (a DOMStringList) of creating a sorted name list with names.

" } ] }, @@ -743,35 +743,35 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be handle’s transaction.

" + "html": "

Let transaction be handle’s transaction.

" }, { - "html": "

Let store be handle’s object store.

" + "html": "

Let store be handle’s object store.

" }, { - "html": "

If store has been deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If transaction is a read-only transaction, throw a \"ReadOnlyError\" DOMException.

" + "html": "

If transaction is a read-only transaction, throw a \"ReadOnlyError\" DOMException.

" }, { - "html": "

If store uses in-line keys and key was given, throw a \"DataError\" DOMException.

" + "html": "

If store uses in-line keys and key was given, throw a \"DataError\" DOMException.

" }, { - "html": "

If store uses out-of-line keys and has no key\ngenerator and key was not given, throw a\n\"DataError\" DOMException.

" + "html": "

If store uses out-of-line keys and has no key\ngenerator and key was not given, throw a\n\"DataError\" DOMException.

" }, { "html": "If key was given, then:", "rationale": "let", "steps": [ { - "html": "

Let r be the result of converting a\nvalue to a key with key. Rethrow any exceptions.

" + "html": "

Let r be the result of converting a\nvalue to a key with key. Rethrow any exceptions.

" }, { - "html": "

If r is invalid, throw a \"DataError\" DOMException.

" + "html": "

If r is invalid, throw a \"DataError\" DOMException.

" }, { "html": "

Let key be r.

" @@ -779,20 +779,20 @@ ] }, { - "html": "

Let targetRealm be a user-agent defined Realm.

" + "html": "

Let targetRealm be a user-agent defined Realm.

" }, { - "html": "

Let clone be a clone of value in targetRealm during transaction.\nRethrow any exceptions.

" + "html": "

Let clone be a clone of value in targetRealm during transaction.\nRethrow any exceptions.

" }, { - "html": "If store uses in-line keys, then:", + "html": "If store uses in-line keys, then:", "rationale": "let", "steps": [ { - "html": "

Let kpk be the result of extracting a\nkey from a value using a key path with clone and store’s key path. Rethrow any\nexceptions.

" + "html": "

Let kpk be the result of extracting a\nkey from a value using a key path with clone and store’s key path. Rethrow any\nexceptions.

" }, { - "html": "

If kpk is invalid, throw a \"DataError\" DOMException.

" + "html": "

If kpk is invalid, throw a \"DataError\" DOMException.

" }, { "html": "

If kpk is not failure, let key be kpk.

" @@ -802,20 +802,20 @@ "rationale": "if", "steps": [ { - "html": "

If store does not have a key generator, throw a \"DataError\" DOMException.

" + "html": "

If store does not have a key generator, throw a \"DataError\" DOMException.

" }, { - "html": "

Otherwise, if check that a key could be injected into a value with clone and store’s key path return\nfalse, throw a \"DataError\" DOMException.

" + "html": "

Otherwise, if check that a key could be injected into a value with clone and store’s key path return\nfalse, throw a \"DataError\" DOMException.

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

Let operation be an algorithm to run store a record into an object store with store, clone, key, and no-overwrite flag.

" + "html": "

Let operation be an algorithm to run store a record into an object store with store, clone, key, and no-overwrite flag.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with handle and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with handle and operation.

" } ] }, @@ -826,28 +826,28 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If transaction is a read-only transaction, throw a \"ReadOnlyError\" DOMException.

" + "html": "

If transaction is a read-only transaction, throw a \"ReadOnlyError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run delete records from an object store with store and range.

" + "html": "

Let operation be an algorithm to run delete records from an object store with store and range.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -858,25 +858,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If transaction is a read-only transaction, throw a \"ReadOnlyError\" DOMException.

" + "html": "

If transaction is a read-only transaction, throw a \"ReadOnlyError\" DOMException.

" }, { - "html": "

Let operation be an algorithm to run clear an object store with store.

" + "html": "

Let operation be an algorithm to run clear an object store with store.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -887,25 +887,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run retrieve a value from an object store with the current Realm record, store, and range.

" + "html": "

Let operation be an algorithm to run retrieve a value from an object store with the current Realm record, store, and range.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -916,25 +916,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run retrieve a key from an object store with store and range.

" + "html": "

Let operation be an algorithm to run retrieve a key from an object store with store and range.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -945,25 +945,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run retrieve multiple values from an object store with the current Realm record, store, range, and count if given.

" + "html": "

Let operation be an algorithm to run retrieve multiple values from an object store with the current Realm record, store, range, and count if given.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -974,25 +974,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run retrieve multiple keys from an object store with store, range, and count if given.

" + "html": "

Let operation be an algorithm to run retrieve multiple keys from an object store with store, range, and count if given.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -1003,25 +1003,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run count the records in a range with store and range.

" + "html": "

Let operation be an algorithm to run count the records in a range with store and range.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -1032,31 +1032,31 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let cursor be a new cursor with its transaction set to transaction,\nundefined position, direction set to direction, got value flag set to false,\nundefined key and value, source set to store, range set to range, and key only flag set to false.

" + "html": "

Let cursor be a new cursor with its transaction set to transaction,\nundefined position, direction set to direction, got value flag set to false,\nundefined key and value, source set to store, range set to range, and key only flag set to false.

" }, { - "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record and cursor.

" + "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record and cursor.

" }, { - "html": "

Let request be the result of running asynchronously execute a request with this and operation.

" + "html": "

Let request be the result of running asynchronously execute a request with this and operation.

" }, { - "html": "

Set cursor’s request to request.

" + "html": "

Set cursor’s request to request.

" }, { "html": "

Return request.

" @@ -1070,31 +1070,31 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let cursor be a new cursor with its transaction set to transaction,\nundefined position, direction set to direction, got value flag set to false,\nundefined key and value, source set to store, range set to range, and key only flag set to true.

" + "html": "

Let cursor be a new cursor with its transaction set to transaction,\nundefined position, direction set to direction, got value flag set to false,\nundefined key and value, source set to store, range set to range, and key only flag set to true.

" }, { - "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record and cursor.

" + "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record and cursor.

" }, { - "html": "

Let request be the result of running asynchronously execute a request with this and operation.

" + "html": "

Let request be the result of running asynchronously execute a request with this and operation.

" }, { - "html": "

Set cursor’s request to request.

" + "html": "

Set cursor’s request to request.

" }, { "html": "

Return request.

" @@ -1108,43 +1108,43 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If transaction is not an upgrade transaction, throw an \"InvalidStateError\" DOMException.

" + "html": "

If transaction is not an upgrade transaction, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If an index named name already exists in store, throw a\n\"ConstraintError\" DOMException.

" + "html": "

If an index named name already exists in store, throw a\n\"ConstraintError\" DOMException.

" }, { - "html": "

If keyPath is not a valid key path, throw a \"SyntaxError\" DOMException.

" + "html": "

If keyPath is not a valid key path, throw a \"SyntaxError\" DOMException.

" }, { - "html": "

Let unique be options’s unique member.

" + "html": "

Let unique be options’s unique member.

" }, { - "html": "

Let multiEntry be options’s multiEntry member.

" + "html": "

Let multiEntry be options’s multiEntry member.

" }, { - "html": "

If keyPath is a sequence and multiEntry is\ntrue, throw an \"InvalidAccessError\" DOMException.

" + "html": "

If keyPath is a sequence and multiEntry is\ntrue, throw an \"InvalidAccessError\" DOMException.

" }, { - "html": "

Let index be a new index in store.\nSet index’s name to name, key path to keyPath, unique flag to unique, and multiEntry flag to multiEntry.

" + "html": "

Let index be a new index in store.\nSet index’s name to name, key path to keyPath, unique flag to unique, and multiEntry flag to multiEntry.

" }, { - "html": "

Add index to this's index set.

" + "html": "

Add index to this's index set.

" }, { - "html": "

Return a new index handle associated with index and this.

" + "html": "

Return a new index handle associated with index and this.

" } ] }, @@ -1155,22 +1155,22 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is finished,\nthen throw an \"InvalidStateError\" DOMException.

" + "html": "

If transaction’s state is finished,\nthen throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

Let index be the index named name in this's index set if one exists, or throw a \"NotFoundError\" DOMException otherwise.

" + "html": "

Let index be the index named name in this's index set if one exists, or throw a \"NotFoundError\" DOMException otherwise.

" }, { - "html": "

Return an index handle associated with index and this.

" + "html": "

Return an index handle associated with index and this.

" } ] }, @@ -1181,25 +1181,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let store be this's object store.

" + "html": "

Let store be this's object store.

" }, { - "html": "

If transaction is not an upgrade transaction, throw an \"InvalidStateError\" DOMException.

" + "html": "

If transaction is not an upgrade transaction, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let index be the index named name in store if one exists, or throw a \"NotFoundError\" DOMException otherwise.

" + "html": "

Let index be the index named name in store if one exists, or throw a \"NotFoundError\" DOMException otherwise.

" }, { - "html": "

Remove index from this's index set.

" + "html": "

Remove index from this's index set.

" }, { "html": "

Destroy index.

" @@ -1208,38 +1208,38 @@ }, { "name": "IDBIndex name setter", - "html": "The name setter steps are:", + "html": "The name setter steps are:", "rationale": ".algorithm", "steps": [ { - "html": "

Let name be the given value.

" + "html": "

Let name be the given value.

" }, { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let index be this's index.

" + "html": "

Let index be this's index.

" }, { - "html": "

If transaction is not an upgrade transaction, throw an \"InvalidStateError\" DOMException.

" + "html": "

If transaction is not an upgrade transaction, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If index’s name is equal to name, terminate these steps.

" + "html": "

If index’s name is equal to name, terminate these steps.

" }, { - "html": "

If an index named name already exists in index’s object\nstore, throw a \"ConstraintError\" DOMException.

" + "html": "

If an index named name already exists in index’s object\nstore, throw a \"ConstraintError\" DOMException.

" }, { - "html": "

Set index’s name to name.

" + "html": "

Set index’s name to name.

" }, { - "html": "

Set this's name to name.

" + "html": "

Set this's name to name.

" } ] }, @@ -1250,25 +1250,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let index be this's index.

" + "html": "

Let index be this's index.

" }, { - "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run retrieve a referenced value from an index with the current Realm record, index, and range.

" + "html": "

Let operation be an algorithm to run retrieve a referenced value from an index with the current Realm record, index, and range.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -1279,25 +1279,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let index be this's index.

" + "html": "

Let index be this's index.

" }, { - "html": "

If index or index’s object store has been deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If index or index’s object store has been deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query and true. Rethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run retrieve a value from an index with index and range.

" + "html": "

Let operation be an algorithm to run retrieve a value from an index with index and range.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -1308,25 +1308,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let index be this's index.

" + "html": "

Let index be this's index.

" }, { - "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run retrieve multiple referenced values from an index with the current Realm record, index, range, and count if given.

" + "html": "

Let operation be an algorithm to run retrieve multiple referenced values from an index with the current Realm record, index, range, and count if given.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -1337,25 +1337,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let index be this's index.

" + "html": "

Let index be this's index.

" }, { - "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run retrieve multiple values from an index with index, range, and count if given.

" + "html": "

Let operation be an algorithm to run retrieve multiple values from an index with index, range, and count if given.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -1366,25 +1366,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let index be this's index.

" + "html": "

Let index be this's index.

" }, { - "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let operation be an algorithm to run count the records in a range with index and range.

" + "html": "

Let operation be an algorithm to run count the records in a range with index and range.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -1395,31 +1395,31 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let index be this's index.

" + "html": "

Let index be this's index.

" }, { - "html": "

If index or index’s object store has been deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If index or index’s object store has been deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let cursor be a new cursor with its transaction set to transaction,\nundefined position, direction set to direction, got value flag set to false,\nundefined key and value, source set to index, range set to range, and key only flag set to false.

" + "html": "

Let cursor be a new cursor with its transaction set to transaction,\nundefined position, direction set to direction, got value flag set to false,\nundefined key and value, source set to index, range set to range, and key only flag set to false.

" }, { - "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record and cursor.

" + "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record and cursor.

" }, { - "html": "

Let request be the result of running asynchronously execute a request with this and operation.

" + "html": "

Let request be the result of running asynchronously execute a request with this and operation.

" }, { - "html": "

Set cursor’s request to request.

" + "html": "

Set cursor’s request to request.

" }, { "html": "

Return request.

" @@ -1433,31 +1433,31 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

Let index be this's index.

" + "html": "

Let index be this's index.

" }, { - "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If index or index’s object store has\nbeen deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" + "html": "

Let range be the result of converting a value to a key range with query.\nRethrow any exceptions.

" }, { - "html": "

Let cursor be a new cursor with its transaction set to transaction,\nundefined position, direction set to direction, got value flag set to false,\nundefined key and value, source set to index, range set to range, and key only flag set to true.

" + "html": "

Let cursor be a new cursor with its transaction set to transaction,\nundefined position, direction set to direction, got value flag set to false,\nundefined key and value, source set to index, range set to range, and key only flag set to true.

" }, { - "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record and cursor.

" + "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record and cursor.

" }, { - "html": "

Let request be the result of running asynchronously execute a request with this and operation.

" + "html": "

Let request be the result of running asynchronously execute a request with this and operation.

" }, { - "html": "

Set cursor’s request to request.

" + "html": "

Set cursor’s request to request.

" }, { "html": "

Return request.

" @@ -1471,13 +1471,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let key be the result of converting\na value to a key with value. Rethrow any exceptions.

" + "html": "

Let key be the result of converting\na value to a key with value. Rethrow any exceptions.

" }, { - "html": "

If key is invalid, throw a \"DataError\" DOMException.

" + "html": "

If key is invalid, throw a \"DataError\" DOMException.

" }, { - "html": "

Create and return a new key range containing only key.

" + "html": "

Create and return a new key range containing only key.

" } ] }, @@ -1488,13 +1488,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let lowerKey be the result of converting a\nvalue to a key with lower. Rethrow any exceptions.

" + "html": "

Let lowerKey be the result of converting a\nvalue to a key with lower. Rethrow any exceptions.

" }, { - "html": "

If lowerKey is invalid, throw a \"DataError\" DOMException.

" + "html": "

If lowerKey is invalid, throw a \"DataError\" DOMException.

" }, { - "html": "

Create and return a new key range with lower bound set to lowerKey, lower open flag set to open, upper bound set to null, and upper open flag set to true.

" + "html": "

Create and return a new key range with lower bound set to lowerKey, lower open flag set to open, upper bound set to null, and upper open flag set to true.

" } ] }, @@ -1505,13 +1505,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let upperKey be the result of converting a\nvalue to a key with upper. Rethrow any exceptions.

" + "html": "

Let upperKey be the result of converting a\nvalue to a key with upper. Rethrow any exceptions.

" }, { - "html": "

If upperKey is invalid, throw a \"DataError\" DOMException.

" + "html": "

If upperKey is invalid, throw a \"DataError\" DOMException.

" }, { - "html": "

Create and return a new key range with lower bound set to null, lower open flag set to true, upper bound set to upperKey, and upper open flag set to open.

" + "html": "

Create and return a new key range with lower bound set to null, lower open flag set to true, upper bound set to upperKey, and upper open flag set to open.

" } ] }, @@ -1522,22 +1522,22 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let lowerKey be the result of converting a\nvalue to a key with lower. Rethrow any exceptions.

" + "html": "

Let lowerKey be the result of converting a\nvalue to a key with lower. Rethrow any exceptions.

" }, { - "html": "

If lowerKey is invalid, throw a \"DataError\" DOMException.

" + "html": "

If lowerKey is invalid, throw a \"DataError\" DOMException.

" }, { - "html": "

Let upperKey be the result of converting a\nvalue to a key with upper. Rethrow any exceptions.

" + "html": "

Let upperKey be the result of converting a\nvalue to a key with upper. Rethrow any exceptions.

" }, { - "html": "

If upperKey is invalid, throw a \"DataError\" DOMException.

" + "html": "

If upperKey is invalid, throw a \"DataError\" DOMException.

" }, { - "html": "

If lowerKey is greater than upperKey, throw a\n\"DataError\" DOMException.

" + "html": "

If lowerKey is greater than upperKey, throw a\n\"DataError\" DOMException.

" }, { - "html": "

Create and return a new key range with lower bound set to lowerKey, lower open flag set to lowerOpen, upper bound set to upperKey and upper open\nflag set to upperOpen.

" + "html": "

Create and return a new key range with lower bound set to lowerKey, lower open flag set to lowerOpen, upper bound set to upperKey and upper open\nflag set to upperOpen.

" } ] }, @@ -1548,13 +1548,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let k be the result of converting a\nvalue to a key with key. Rethrow any exceptions.

" + "html": "

Let k be the result of converting a\nvalue to a key with key. Rethrow any exceptions.

" }, { - "html": "

If k is invalid, throw a \"DataError\" DOMException.

" + "html": "

If k is invalid, throw a \"DataError\" DOMException.

" }, { - "html": "

Return true if k is in this range, and false otherwise.

" + "html": "

Return true if k is in this range, and false otherwise.

" } ] }, @@ -1565,37 +1565,37 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If count is 0 (zero), throw a TypeError.

" + "html": "

If count is 0 (zero), throw a TypeError.

" }, { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If this's source or effective object\nstore has been deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's source or effective object\nstore has been deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

Set this's got value flag to false.

" + "html": "

Set this's got value flag to false.

" }, { - "html": "

Let request be this's request.

" + "html": "

Let request be this's request.

" }, { - "html": "

Set request’s processed flag to false.

" + "html": "

Set request’s processed flag to false.

" }, { - "html": "

Set request’s done flag to false.

" + "html": "

Set request’s done flag to false.

" }, { - "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record, this, and count.

" + "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record, this, and count.

" }, { - "html": "

Run asynchronously execute a request with this's source, operation, and request.

" + "html": "

Run asynchronously execute a request with this's source, operation, and request.

" } ] }, @@ -1606,55 +1606,55 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If this's source or effective object store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If this's source or effective object store has been deleted, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" }, { "html": "If key is given, then:", "rationale": "let", "steps": [ { - "html": "

Let r be the result of converting a\nvalue to a key with key. Rethrow any exceptions.

" + "html": "

Let r be the result of converting a\nvalue to a key with key. Rethrow any exceptions.

" }, { - "html": "

If r is invalid, throw a \"DataError\" DOMException.

" + "html": "

If r is invalid, throw a \"DataError\" DOMException.

" }, { "html": "

Let key be r.

" }, { - "html": "

If key is less than or equal to this's position and this's direction is\n\"next\" or \"nextunique\", then throw a \"DataError\" DOMException.

" + "html": "

If key is less than or equal to this's position and this's direction is\n\"next\" or \"nextunique\", then throw a \"DataError\" DOMException.

" }, { - "html": "

If key is greater than or equal to this's position and this's direction is\n\"prev\" or \"prevunique\", then throw a \"DataError\" DOMException.

" + "html": "

If key is greater than or equal to this's position and this's direction is\n\"prev\" or \"prevunique\", then throw a \"DataError\" DOMException.

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

Set this's got value flag to false.

" + "html": "

Set this's got value flag to false.

" }, { - "html": "

Let request be this's request.

" + "html": "

Let request be this's request.

" }, { - "html": "

Set request’s processed flag to false.

" + "html": "

Set request’s processed flag to false.

" }, { - "html": "

Set request’s done flag to false.

" + "html": "

Set request’s done flag to false.

" }, { - "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record, this, and key (if given).

" + "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record, this, and key (if given).

" }, { - "html": "

Run asynchronously execute a request with this's source, operation, and request.

" + "html": "

Run asynchronously execute a request with this's source, operation, and request.

" } ] }, @@ -1665,70 +1665,70 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If this's source or effective object\nstore has been deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's source or effective object\nstore has been deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If this's source is not an index throw an \"InvalidAccessError\" DOMException.

" + "html": "

If this's source is not an index throw an \"InvalidAccessError\" DOMException.

" }, { - "html": "

If this's direction is not \"next\" or \"prev\", throw an \"InvalidAccessError\" DOMException.

" + "html": "

If this's direction is not \"next\" or \"prev\", throw an \"InvalidAccessError\" DOMException.

" }, { - "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

Let r be the result of converting a value to\na key with key. Rethrow any exceptions.

" + "html": "

Let r be the result of converting a value to\na key with key. Rethrow any exceptions.

" }, { - "html": "

If r is invalid, throw a \"DataError\" DOMException.

" + "html": "

If r is invalid, throw a \"DataError\" DOMException.

" }, { "html": "

Let key be r.

" }, { - "html": "

Let r be the result of converting a value\n to a key with primaryKey. Rethrow any exceptions.

" + "html": "

Let r be the result of converting a value\n to a key with primaryKey. Rethrow any exceptions.

" }, { - "html": "

If r is invalid, throw a \"DataError\" DOMException.

" + "html": "

If r is invalid, throw a \"DataError\" DOMException.

" }, { "html": "

Let primaryKey be r.

" }, { - "html": "

If key is less than this's position and this's direction is \"next\", throw a \"DataError\" DOMException.

" + "html": "

If key is less than this's position and this's direction is \"next\", throw a \"DataError\" DOMException.

" }, { - "html": "

If key is greater than this's position and this's direction is \"prev\", throw a \"DataError\" DOMException.

" + "html": "

If key is greater than this's position and this's direction is \"prev\", throw a \"DataError\" DOMException.

" }, { - "html": "

If key is equal to this's position and primaryKey is less than or equal to this's object store position and this's direction is\n\"next\", throw a \"DataError\" DOMException.

" + "html": "

If key is equal to this's position and primaryKey is less than or equal to this's object store position and this's direction is\n\"next\", throw a \"DataError\" DOMException.

" }, { - "html": "

If key is equal to this's position and primaryKey is greater than or equal to this's object store position and this's direction is \"prev\", throw a\n\"DataError\" DOMException.

" + "html": "

If key is equal to this's position and primaryKey is greater than or equal to this's object store position and this's direction is \"prev\", throw a\n\"DataError\" DOMException.

" }, { - "html": "

Set this's got value flag to false.

" + "html": "

Set this's got value flag to false.

" }, { - "html": "

Let request be this's request.

" + "html": "

Let request be this's request.

" }, { - "html": "

Set request’s processed flag to false.

" + "html": "

Set request’s processed flag to false.

" }, { - "html": "

Set request’s done flag to false.

" + "html": "

Set request’s done flag to false.

" }, { - "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record, this, key, and primaryKey.

" + "html": "

Let operation be an algorithm to run iterate a cursor with the current Realm record, this, key, and primaryKey.

" }, { - "html": "

Run asynchronously execute a request with this's source, operation, and request.

" + "html": "

Run asynchronously execute a request with this's source, operation, and request.

" } ] }, @@ -1739,46 +1739,46 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If transaction is a read-only transaction, throw a\n\"ReadOnlyError\" DOMException.

" + "html": "

If transaction is a read-only transaction, throw a\n\"ReadOnlyError\" DOMException.

" }, { - "html": "

If this's source or effective object\nstore has been deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's source or effective object\nstore has been deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If this's key only flag is true, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If this's key only flag is true, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

Let targetRealm be a user-agent defined Realm.

" + "html": "

Let targetRealm be a user-agent defined Realm.

" }, { - "html": "

Let clone be a clone of value in targetRealm during transaction.\nRethrow any exceptions.

" + "html": "

Let clone be a clone of value in targetRealm during transaction.\nRethrow any exceptions.

" }, { - "html": "If this's effective object store uses in-line\nkeys, then:", + "html": "If this's effective object store uses in-line\nkeys, then:", "rationale": "let", "steps": [ { - "html": "

Let kpk be the result of extracting a key from a value using a key path with clone and the key\npath of this's effective object store.\nRethrow any exceptions.

" + "html": "

Let kpk be the result of extracting a key from a value using a key path with clone and the key\npath of this's effective object store.\nRethrow any exceptions.

" }, { - "html": "

If kpk is failure, invalid, or not equal to this's effective key, throw a\n\"DataError\" DOMException.

" + "html": "

If kpk is failure, invalid, or not equal to this's effective key, throw a\n\"DataError\" DOMException.

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

Let operation be an algorithm to run store a record into an object store with this's effective object store, clone, this's effective key, and false.

" + "html": "

Let operation be an algorithm to run store a record into an object store with this's effective object store, clone, this's effective key, and false.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -1789,28 +1789,28 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be this's transaction.

" + "html": "

Let transaction be this's transaction.

" }, { - "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" + "html": "

If transaction’s state is not active,\nthen throw a \"TransactionInactiveError\" DOMException.

" }, { - "html": "

If transaction is a read-only transaction, throw a\n\"ReadOnlyError\" DOMException.

" + "html": "

If transaction is a read-only transaction, throw a\n\"ReadOnlyError\" DOMException.

" }, { - "html": "

If this's source or effective object\nstore has been deleted, throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's source or effective object\nstore has been deleted, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's got value flag is false, indicating that\nthe cursor is being iterated or has iterated past its end, throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If this's key only flag is true, throw an\n\"InvalidStateError\" DOMException.

" + "html": "

If this's key only flag is true, throw an\n\"InvalidStateError\" DOMException.

" }, { - "html": "

Let operation be an algorithm to run delete records from an object store with this's effective object store and this's effective key.

" + "html": "

Let operation be an algorithm to run delete records from an object store with this's effective object store and this's effective key.

" }, { - "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" + "html": "

Return the result (an IDBRequest) of running asynchronously execute a request with this and operation.

" } ] }, @@ -1821,10 +1821,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let names be a list of the names of the object stores in this's scope.

" + "html": "

Let names be a list of the names of the object stores in this's scope.

" }, { - "html": "

Return the result (a DOMStringList) of creating a sorted name list with names.

" + "html": "

Return the result (a DOMStringList) of creating a sorted name list with names.

" } ] }, @@ -1835,13 +1835,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this's state is finished,\nthen throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's state is finished,\nthen throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

Let store be the object store named name in this's scope, or throw a\n\"NotFoundError\" DOMException if none.

" + "html": "

Let store be the object store named name in this's scope, or throw a\n\"NotFoundError\" DOMException if none.

" }, { - "html": "

Return an object store handle associated with store and this.

" + "html": "

Return an object store handle associated with store and this.

" } ] }, @@ -1852,10 +1852,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this's state is committing or finished,\nthen throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's state is committing or finished,\nthen throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

Set this's state to inactive and run abort a transaction with this and null.

" + "html": "

Set this's state to inactive and run abort a transaction with this and null.

" } ] }, @@ -1866,21 +1866,21 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this's state is not active,\nthen throw an \"InvalidStateError\" DOMException.

" + "html": "

If this's state is not active,\nthen throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

Run commit a transaction with this.

" + "html": "

Run commit a transaction with this.

" } ] }, { "name": "open a database connection", "href": "https://www.w3.org/TR/IndexedDB-3/#open-a-database-connection", - "html": "To open a database connection with storageKey which requested the database to be opened, a database name, a database version, and a request, run these steps:", + "html": "To open a database connection with storageKey which requested the database to be opened, a database name, a database version, and a request, run these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let queue be the connection queue for storageKey and name.

" + "html": "

Let queue be the connection queue for storageKey and name.

" }, { "html": "

Add request to queue.

" @@ -1889,50 +1889,50 @@ "html": "

Wait until all previous requests in queue have been processed.

" }, { - "html": "

Let db be the database named name in storageKey, or null otherwise.

" + "html": "

Let db be the database named name in storageKey, or null otherwise.

" }, { - "html": "

If version is undefined, let version be 1 if db is null, or db’s version otherwise.

" + "html": "

If version is undefined, let version be 1 if db is null, or db’s version otherwise.

" }, { - "html": "

If db is null, let db be a new database with name name, version 0 (zero), and with\nno object stores. If this fails for any reason, return an\nappropriate error (e.g. a \"QuotaExceededError\" or\n\"UnknownError\" DOMException).

" + "html": "

If db is null, let db be a new database with name name, version 0 (zero), and with\nno object stores. If this fails for any reason, return an\nappropriate error (e.g. a \"QuotaExceededError\" or\n\"UnknownError\" DOMException).

" }, { - "html": "

If db’s version is greater than version,\nreturn a newly created \"VersionError\" DOMException and abort these steps.

" + "html": "

If db’s version is greater than version,\nreturn a newly created \"VersionError\" DOMException and abort these steps.

" }, { - "html": "

Let connection be a new connection to db.

" + "html": "

Let connection be a new connection to db.

" }, { - "html": "

Set connection’s version to version.

" + "html": "

Set connection’s version to version.

" }, { - "html": "If db’s version is less than version, then:", + "html": "If db’s version is less than version, then:", "rationale": "let", "steps": [ { - "html": "

Let openConnections be the set of all connections,\nexcept connection, associated with db.

" + "html": "

Let openConnections be the set of all connections,\nexcept connection, associated with db.

" }, { - "html": "

For each entry of openConnections that does not have its close pending flag set to true, queue a task to fire a\nversion change event named versionchange at entry with db’s version and version.

" + "html": "

For each entry of openConnections that does not have its close pending flag set to true, queue a task to fire a\nversion change event named versionchange at entry with db’s version and version.

" }, { "html": "

Wait for all of the events to be fired.

" }, { - "html": "

If any of the connections in openConnections are still\nnot closed, queue a task to fire a version change\nevent named blocked at request with db’s version and version.

" + "html": "

If any of the connections in openConnections are still\nnot closed, queue a task to fire a version change\nevent named blocked at request with db’s version and version.

" }, { - "html": "

Wait until all connections in openConnections are closed.

" + "html": "

Wait until all connections in openConnections are closed.

" }, { - "html": "

Run upgrade a database using connection, version and request.

" + "html": "

Run upgrade a database using connection, version and request.

" }, { - "html": "

If connection was closed,\nreturn a newly created \"AbortError\" DOMException and abort these steps.

" + "html": "

If connection was closed,\nreturn a newly created \"AbortError\" DOMException and abort these steps.

" }, { - "html": "

If the upgrade transaction was aborted, run the steps\nto close a database connection with connection,\nreturn a newly created \"AbortError\" DOMException and abort these steps.

" + "html": "

If the upgrade transaction was aborted, run the steps\nto close a database connection with connection,\nreturn a newly created \"AbortError\" DOMException and abort these steps.

" } ] }, @@ -1948,27 +1948,27 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Set connection’s close pending flag to true.

" + "html": "

Set connection’s close pending flag to true.

" }, { - "html": "

If the forced flag is true, then for each transaction created using connection run abort a\ntransaction with transaction and newly created \"AbortError\" DOMException.

" + "html": "

If the forced flag is true, then for each transaction created using connection run abort a\ntransaction with transaction and newly created \"AbortError\" DOMException.

" }, { - "html": "

Wait for all transactions created using connection to complete.\nOnce they are complete, connection is closed.

" + "html": "

Wait for all transactions created using connection to complete.\nOnce they are complete, connection is closed.

" }, { - "html": "

If the forced flag is true, then fire an event named close at connection.

" + "html": "

If the forced flag is true, then fire an event named close at connection.

" } ] }, { "name": "delete a database", "href": "https://www.w3.org/TR/IndexedDB-3/#delete-a-database", - "html": "To delete a database with the storageKey that\nrequested the database to be deleted, a database name, and a request, run these steps:", + "html": "To delete a database with the storageKey that\nrequested the database to be deleted, a database name, and a request, run these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let queue be the connection queue for storageKey and name.

" + "html": "

Let queue be the connection queue for storageKey and name.

" }, { "html": "

Add request to queue.

" @@ -1977,28 +1977,28 @@ "html": "

Wait until all previous requests in queue have been processed.

" }, { - "html": "

Let db be the database named name in storageKey, if one exists. Otherwise, return 0 (zero).

" + "html": "

Let db be the database named name in storageKey, if one exists. Otherwise, return 0 (zero).

" }, { - "html": "

Let openConnections be the set of all connections associated with db.

" + "html": "

Let openConnections be the set of all connections associated with db.

" }, { - "html": "

For each entry of openConnections that does not have its close pending flag set to true, queue a task to fire a version\nchange event named versionchange at entry with db’s version and null.

" + "html": "

For each entry of openConnections that does not have its close pending flag set to true, queue a task to fire a version\nchange event named versionchange at entry with db’s version and null.

" }, { "html": "

Wait for all of the events to be fired.

" }, { - "html": "

If any of the connections in openConnections are still not\nclosed, queue a task to fire a version change event named blocked at request with db’s version and null.

" + "html": "

If any of the connections in openConnections are still not\nclosed, queue a task to fire a version change event named blocked at request with db’s version and null.

" }, { - "html": "

Wait until all connections in openConnections are closed.

" + "html": "

Wait until all connections in openConnections are closed.

" }, { - "html": "

Let version be db’s version.

" + "html": "

Let version be db’s version.

" }, { - "html": "

Delete db. If this fails for any reason, return an appropriate\nerror (e.g. \"QuotaExceededError\" or \"UnknownError\" DOMException).

" + "html": "

Delete db. If this fails for any reason, return an appropriate\nerror (e.g. \"QuotaExceededError\" or \"UnknownError\" DOMException).

" }, { "html": "

Return version.

" @@ -2012,39 +2012,39 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Set transaction’s state to committing.

" + "html": "

Set transaction’s state to committing.

" }, { - "html": "Run the following steps in parallel:", + "html": "Run the following steps in parallel:", "rationale": "wait", "steps": [ { - "html": "

Wait until every item in transaction’s request list is processed.

" + "html": "

Wait until every item in transaction’s request list is processed.

" }, { - "html": "

If transaction’s state is no longer committing,\nthen terminate these steps.

" + "html": "

If transaction’s state is no longer committing,\nthen terminate these steps.

" }, { - "html": "

Attempt to write any outstanding changes made by transaction to the database, considering transaction’s durability hint.

" + "html": "

Attempt to write any outstanding changes made by transaction to the database, considering transaction’s durability hint.

" }, { - "html": "

If an error occurs while writing the changes to the database,\nthen run abort a transaction with transaction and an\nappropriate type for the error, for example \"QuotaExceededError\" or\n\"UnknownError\" DOMException, and terminate these steps.

" + "html": "

If an error occurs while writing the changes to the database,\nthen run abort a transaction with transaction and an\nappropriate type for the error, for example \"QuotaExceededError\" or\n\"UnknownError\" DOMException, and terminate these steps.

" }, { - "html": "Queue a task to run these steps:", + "html": "Queue a task to run these steps:", "rationale": "if", "steps": [ { - "html": "

If transaction is an upgrade transaction, then set transaction’s connection's associated database's upgrade transaction to null.

" + "html": "

If transaction is an upgrade transaction, then set transaction’s connection's associated database's upgrade transaction to null.

" }, { - "html": "

Set transaction’s state to finished.

" + "html": "

Set transaction’s state to finished.

" }, { - "html": "

Fire an event named complete at transaction.

" + "html": "

Fire an event named complete at transaction.

" }, { - "html": "

If transaction is an upgrade transaction, then\nlet request be the request associated with transaction and set request’s transaction to null.

" + "html": "

If transaction is an upgrade transaction, then\nlet request be the request associated with transaction and set request’s transaction to null.

" } ] } @@ -2059,63 +2059,63 @@ "rationale": ".algorithm", "steps": [ { - "html": "

All the changes made to the database by the transaction are reverted. For upgrade transactions this includes changes\nto the set of object stores and indexes, as well as the\nchange to the version. Any object stores and indexes which were created during the transaction are now\nconsidered deleted for the purposes of other algorithms.

" + "html": "

All the changes made to the database by the transaction are reverted. For upgrade transactions this includes changes\nto the set of object stores and indexes, as well as the\nchange to the version. Any object stores and indexes which were created during the transaction are now\nconsidered deleted for the purposes of other algorithms.

" }, { - "html": "

If transaction is an upgrade transaction, run the steps\nto abort an upgrade transaction with transaction.

" + "html": "

If transaction is an upgrade transaction, run the steps\nto abort an upgrade transaction with transaction.

" }, { - "html": "

Set transaction’s state to finished.

" + "html": "

Set transaction’s state to finished.

" }, { - "html": "

If error is not null, set transaction’s error to error.

" + "html": "

If error is not null, set transaction’s error to error.

" }, { - "html": "For each request of transaction’s request list,\nabort the steps to asynchronously execute a request for request,\nset request’s processed flag to true,\nand queue a task to run these steps:", + "html": "For each request of transaction’s request list,\nabort the steps to asynchronously execute a request for request,\nset request’s processed flag to true,\nand queue a task to run these steps:", "rationale": "set", "steps": [ { - "html": "

Set request’s done flag to true.

" + "html": "

Set request’s done flag to true.

" }, { - "html": "

Set request’s result to undefined.

" + "html": "

Set request’s result to undefined.

" }, { - "html": "

Set request’s error to a newly created \"AbortError\" DOMException.

" + "html": "

Set request’s error to a newly created \"AbortError\" DOMException.

" }, { - "html": "

Fire an event named error at request with its bubbles and cancelable attributes initialized to true.

" + "html": "

Fire an event named error at request with its bubbles and cancelable attributes initialized to true.

" } ] }, { - "html": "Queue a task to run these steps:", + "html": "Queue a task to run these steps:", "rationale": "if", "steps": [ { - "html": "

If transaction is an upgrade transaction, then set transaction’s connection's associated database's upgrade transaction to null.

" + "html": "

If transaction is an upgrade transaction, then set transaction’s connection's associated database's upgrade transaction to null.

" }, { - "html": "

Fire an event named abort at transaction with its bubbles attribute initialized to true.

" + "html": "

Fire an event named abort at transaction with its bubbles attribute initialized to true.

" }, { - "html": "If transaction is an upgrade transaction, then:", + "html": "If transaction is an upgrade transaction, then:", "rationale": "let", "steps": [ { - "html": "

Let request be the open request associated with transaction.

" + "html": "

Let request be the open request associated with transaction.

" }, { - "html": "

Set request’s transaction to null.

" + "html": "

Set request’s transaction to null.

" }, { - "html": "

Set request’s result to undefined.

" + "html": "

Set request’s result to undefined.

" }, { - "html": "

Set request’s processed flag to false.

" + "html": "

Set request’s processed flag to false.

" }, { - "html": "

Set request’s done flag to false.

" + "html": "

Set request’s done flag to false.

" } ] } @@ -2130,58 +2130,58 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let transaction be the transaction associated with source.

" + "html": "

Let transaction be the transaction associated with source.

" }, { - "html": "

Assert: transaction’s state is active.

" + "html": "

Assert: transaction’s state is active.

" }, { - "html": "

If request was not given, let request be a new request with source as source.

" + "html": "

If request was not given, let request be a new request with source as source.

" }, { - "html": "

Add request to the end of transaction’s request list.

" + "html": "

Add request to the end of transaction’s request list.

" }, { - "html": "Run these steps in parallel:", + "html": "Run these steps in parallel:", "rationale": "wait", "steps": [ { - "html": "

Wait until request is the first item in transaction’s request list that is not processed.

" + "html": "

Wait until request is the first item in transaction’s request list that is not processed.

" }, { "html": "

Let result be the result of performing operation.

" }, { - "html": "

If result is an error and transaction’s state is committing,\nthen run abort a transaction with transaction and result,\nand terminate these steps.

" + "html": "

If result is an error and transaction’s state is committing,\nthen run abort a transaction with transaction and result,\nand terminate these steps.

" }, { "html": "

If result is an error,\nthen revert all changes made by operation.

" }, { - "html": "

Set request’s processed flag to true.

" + "html": "

Set request’s processed flag to true.

" }, { - "html": "Queue a task to run these steps:", + "html": "Queue a task to run these steps:", "rationale": "remove", "steps": [ { - "html": "

Remove request from transaction’s request list.

" + "html": "

Remove request from transaction’s request list.

" }, { - "html": "

Set request’s done flag to true.

" + "html": "

Set request’s done flag to true.

" }, { "html": "If result is an error, then:", "rationale": "set", "steps": [ { - "html": "

Set request’s result to undefined.

" + "html": "

Set request’s result to undefined.

" }, { - "html": "

Set request’s error to result.

" + "html": "

Set request’s error to result.

" }, { - "html": "

Fire an error event at request.

" + "html": "

Fire an error event at request.

" } ] }, @@ -2190,13 +2190,13 @@ "rationale": "set", "steps": [ { - "html": "

Set request’s result to result.

" + "html": "

Set request’s result to result.

" }, { - "html": "

Set request’s error to undefined.

" + "html": "

Set request’s error to undefined.

" }, { - "html": "

Fire a success event at request.

" + "html": "

Fire a success event at request.

" } ] } @@ -2212,65 +2212,65 @@ { "name": "upgrade a database", "href": "https://www.w3.org/TR/IndexedDB-3/#upgrade-a-database", - "html": "To upgrade a database with connection (a connection), a new version, and a request, run these steps:", + "html": "To upgrade a database with connection (a connection), a new version, and a request, run these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let db be connection’s database.

" + "html": "

Let db be connection’s database.

" }, { - "html": "

Let transaction be a new upgrade transaction with connection used as connection.

" + "html": "

Let transaction be a new upgrade transaction with connection used as connection.

" }, { - "html": "

Set transaction’s scope to connection’s object store set.

" + "html": "

Set transaction’s scope to connection’s object store set.

" }, { - "html": "

Set db’s upgrade transaction to transaction.

" + "html": "

Set db’s upgrade transaction to transaction.

" }, { - "html": "

Set transaction’s state to inactive.

" + "html": "

Set transaction’s state to inactive.

" }, { "html": "

Start transaction.

" }, { - "html": "

Let old version be db’s version.

" + "html": "

Let old version be db’s version.

" }, { - "html": "

Set db’s version to version. This change is\nconsidered part of the transaction, and so if the\ntransaction is aborted, this change is reverted.

" + "html": "

Set db’s version to version. This change is\nconsidered part of the transaction, and so if the\ntransaction is aborted, this change is reverted.

" }, { - "html": "

Set request’s processed flag to true.

" + "html": "

Set request’s processed flag to true.

" }, { - "html": "Queue a task to run these steps:", + "html": "Queue a task to run these steps:", "rationale": "set", "steps": [ { - "html": "

Set request’s result to connection.

" + "html": "

Set request’s result to connection.

" }, { - "html": "

Set request’s transaction to transaction.

" + "html": "

Set request’s transaction to transaction.

" }, { - "html": "

Set request’s done flag to true.

" + "html": "

Set request’s done flag to true.

" }, { - "html": "

Set transaction’s state to active.

" + "html": "

Set transaction’s state to active.

" }, { - "html": "

Let didThrow be the result of firing a version change event named upgradeneeded at request with old\nversion and version.

" + "html": "

Let didThrow be the result of firing a version change event named upgradeneeded at request with old\nversion and version.

" }, { - "html": "

Set transaction’s state to inactive.

" + "html": "

Set transaction’s state to inactive.

" }, { - "html": "

If didThrow is true, run abort a transaction with transaction and a newly created \"AbortError\" DOMException.

" + "html": "

If didThrow is true, run abort a transaction with transaction and a newly created \"AbortError\" DOMException.

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

Wait for transaction to finish.

" + "html": "

Wait for transaction to finish.

" } ] }, @@ -2281,35 +2281,35 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let connection be transaction’s connection.

" + "html": "

Let connection be transaction’s connection.

" }, { - "html": "

Let database be connection’s database.

" + "html": "

Let database be connection’s database.

" }, { - "html": "

Set connection’s version to database’s version if database previously existed, or 0 (zero)\nif database was newly created.

" + "html": "

Set connection’s version to database’s version if database previously existed, or 0 (zero)\nif database was newly created.

" }, { - "html": "

Set connection’s object store set to the set of object stores in database if database previously\nexisted, or the empty set if database was newly created.

" + "html": "

Set connection’s object store set to the set of object stores in database if database previously\nexisted, or the empty set if database was newly created.

" }, { - "html": "For each object store handle handle associated with transaction, including those for object stores that\nwere created or deleted during transaction:", + "html": "For each object store handle handle associated with transaction, including those for object stores that\nwere created or deleted during transaction:", "rationale": "if", "steps": [ { - "html": "

If handle’s object store was not\nnewly created during transaction, set handle’s name to its object store's name.

" + "html": "

If handle’s object store was not\nnewly created during transaction, set handle’s name to its object store's name.

" }, { - "html": "

Set handle’s index set to the set of indexes that\nreference its object store.

" + "html": "

Set handle’s index set to the set of indexes that\nreference its object store.

" } ] }, { - "html": "For each index handle handle associated with transaction,\nincluding those for indexes that were created or deleted\nduring transaction:", + "html": "For each index handle handle associated with transaction,\nincluding those for indexes that were created or deleted\nduring transaction:", "rationale": "if", "steps": [ { - "html": "

If handle’s index was not newly created\nduring transaction, set handle’s name to\nits index's name.

" + "html": "

If handle’s index was not newly created\nduring transaction, set handle’s name to\nits index's name.

" } ] } @@ -2322,38 +2322,38 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let event be the result of creating an event using Event.

" + "html": "

Let event be the result of creating an event using Event.

" }, { - "html": "

Set event’s type attribute to \"success\".

" + "html": "

Set event’s type attribute to \"success\".

" }, { - "html": "

Set event’s bubbles and cancelable attributes to false.

" + "html": "

Set event’s bubbles and cancelable attributes to false.

" }, { - "html": "

Let transaction be request’s transaction.

" + "html": "

Let transaction be request’s transaction.

" }, { "html": "

Let legacyOutputDidListenersThrowFlag be initially false.

" }, { - "html": "

If transaction’s state is inactive,\nthen set transaction’s state to active.

" + "html": "

If transaction’s state is inactive,\nthen set transaction’s state to active.

" }, { - "html": "

Dispatch event at request with legacyOutputDidListenersThrowFlag.

" + "html": "

Dispatch event at request with legacyOutputDidListenersThrowFlag.

" }, { - "html": "If transaction’s state is active,\nthen:", + "html": "If transaction’s state is active,\nthen:", "rationale": "set", "steps": [ { - "html": "

Set transaction’s state to inactive.

" + "html": "

Set transaction’s state to inactive.

" }, { - "html": "

If legacyOutputDidListenersThrowFlag is true,\nthen run abort a transaction with transaction and a newly created \"AbortError\" DOMException.

" + "html": "

If legacyOutputDidListenersThrowFlag is true,\nthen run abort a transaction with transaction and a newly created \"AbortError\" DOMException.

" }, { - "html": "

If transaction’s request list is empty,\nthen run commit a transaction with transaction.

" + "html": "

If transaction’s request list is empty,\nthen run commit a transaction with transaction.

" } ] } @@ -2366,41 +2366,41 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let event be the result of creating an event using Event.

" + "html": "

Let event be the result of creating an event using Event.

" }, { - "html": "

Set event’s type attribute to \"error\".

" + "html": "

Set event’s type attribute to \"error\".

" }, { - "html": "

Set event’s bubbles and cancelable attributes to true.

" + "html": "

Set event’s bubbles and cancelable attributes to true.

" }, { - "html": "

Let transaction be request’s transaction.

" + "html": "

Let transaction be request’s transaction.

" }, { "html": "

Let legacyOutputDidListenersThrowFlag be initially false.

" }, { - "html": "

If transaction’s state is inactive,\nthen set transaction’s state to active.

" + "html": "

If transaction’s state is inactive,\nthen set transaction’s state to active.

" }, { - "html": "

Dispatch event at request with legacyOutputDidListenersThrowFlag.

" + "html": "

Dispatch event at request with legacyOutputDidListenersThrowFlag.

" }, { - "html": "If transaction’s state is active,\nthen:", + "html": "If transaction’s state is active,\nthen:", "rationale": "set", "steps": [ { - "html": "

Set transaction’s state to inactive.

" + "html": "

Set transaction’s state to inactive.

" }, { - "html": "

If legacyOutputDidListenersThrowFlag is true,\nthen run abort a transaction with transaction and a newly created \"AbortError\" DOMException and terminate these steps.\nThis is done even if event’s canceled flag is false.

" + "html": "

If legacyOutputDidListenersThrowFlag is true,\nthen run abort a transaction with transaction and a newly created \"AbortError\" DOMException and terminate these steps.\nThis is done even if event’s canceled flag is false.

" }, { - "html": "

If event’s canceled flag is false,\nthen run abort a transaction using transaction and request's error, and\nterminate these steps.

" + "html": "

If event’s canceled flag is false,\nthen run abort a transaction using transaction and request's error, and\nterminate these steps.

" }, { - "html": "

If transaction’s request list is empty,\nthen run commit a transaction with transaction.

" + "html": "

If transaction’s request list is empty,\nthen run commit a transaction with transaction.

" } ] } @@ -2413,19 +2413,19 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Assert: transaction’s state is active.

" + "html": "

Assert: transaction’s state is active.

" }, { - "html": "

Set transaction’s state to inactive.

" + "html": "

Set transaction’s state to inactive.

" }, { - "html": "

Let serialized be ? StructuredSerializeForStorage(value).

" + "html": "

Let serialized be ? StructuredSerializeForStorage(value).

" }, { - "html": "

Let clone be ? StructuredDeserialize(serialized, targetRealm).

" + "html": "

Let clone be ? StructuredDeserialize(serialized, targetRealm).

" }, { - "html": "

Set transaction’s state to active.

" + "html": "

Set transaction’s state to active.

" }, { "html": "

Return clone.

" @@ -2439,7 +2439,7 @@ "rationale": ".algorithm", "steps": [ { - "html": "If store uses a key generator, then:", + "html": "If store uses a key generator, then:", "rationale": "if", "steps": [ { @@ -2447,51 +2447,51 @@ "rationale": "let", "steps": [ { - "html": "

Let key be the result of generating a key for store.

" + "html": "

Let key be the result of generating a key for store.

" }, { - "html": "

If key is failure, then this operation failed with a\n\"ConstraintError\" DOMException. Abort this\nalgorithm without taking any further steps.

" + "html": "

If key is failure, then this operation failed with a\n\"ConstraintError\" DOMException. Abort this\nalgorithm without taking any further steps.

" }, { - "html": "

If store also uses in-line keys, then run inject a key into a value using a key path with value, key and store’s key\npath.

" + "html": "

If store also uses in-line keys, then run inject a key into a value using a key path with value, key and store’s key\npath.

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

Otherwise, run possibly update the key generator for store with key.

" + "html": "

Otherwise, run possibly update the key generator for store with key.

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

If the no-overwrite flag was given to these steps and is true, and\na record already exists in store with its key equal to key, then this operation failed with a \"ConstraintError\" DOMException.\nAbort this algorithm without taking any further steps.

" + "html": "

If the no-overwrite flag was given to these steps and is true, and\na record already exists in store with its key equal to key, then this operation failed with a \"ConstraintError\" DOMException.\nAbort this algorithm without taking any further steps.

" }, { - "html": "

If a record already exists in store with its key equal\nto key, then remove the record from store using delete records from an object store.

" + "html": "

If a record already exists in store with its key equal\nto key, then remove the record from store using delete records from an object store.

" }, { - "html": "

Store a record in store containing key as its key and ! StructuredSerializeForStorage(value)\nas its value. The record is stored in the object store’s list of records such that the list is sorted\naccording to the key of the records in ascending order.

" + "html": "

Store a record in store containing key as its key and ! StructuredSerializeForStorage(value)\nas its value. The record is stored in the object store’s list of records such that the list is sorted\naccording to the key of the records in ascending order.

" }, { - "html": "For each index which references store:", + "html": "For each index which references store:", "rationale": "let", "steps": [ { - "html": "

Let index key be the result of extracting a key from a value using a key path with value, index’s key path, and index’s multiEntry flag.

" + "html": "

Let index key be the result of extracting a key from a value using a key path with value, index’s key path, and index’s multiEntry flag.

" }, { "html": "

If index key is an exception, or invalid, or failure, take no\nfurther actions for index, and continue these steps\nfor the next index.

" }, { - "html": "

If index’s multiEntry flag is false, or if index key is not an array key, and if index already contains a record with key equal to index\nkey, and index’s unique flag is true, then this\noperation failed with a \"ConstraintError\" DOMException. Abort this\nalgorithm without taking any further steps.

" + "html": "

If index’s multiEntry flag is false, or if index key is not an array key, and if index already contains a record with key equal to index\nkey, and index’s unique flag is true, then this\noperation failed with a \"ConstraintError\" DOMException. Abort this\nalgorithm without taking any further steps.

" }, { - "html": "

If index’s multiEntry flag is true and index key is\nan array key, and if index already contains a record with key equal to any of the subkeys of index key, and index’s unique\nflag is true, then this operation failed with a\n\"ConstraintError\" DOMException. Abort this algorithm without taking any\nfurther steps.

" + "html": "

If index’s multiEntry flag is true and index key is\nan array key, and if index already contains a record with key equal to any of the subkeys of index key, and index’s unique\nflag is true, then this operation failed with a\n\"ConstraintError\" DOMException. Abort this algorithm without taking any\nfurther steps.

" }, { - "html": "

If index’s multiEntry flag is false, or if index key is not an array key then store a record in index containing index key as its key and key as its value. The\nrecord is stored in index’s list of records such that the list is sorted primarily on the records keys,\nand secondarily on the records values, in ascending order.

" + "html": "

If index’s multiEntry flag is false, or if index key is not an array key then store a record in index containing index key as its key and key as its value. The\nrecord is stored in index’s list of records such that the list is sorted primarily on the records keys,\nand secondarily on the records values, in ascending order.

" }, { - "html": "

If index’s multiEntry flag is true and index key is\nan array key, then for each subkey of the subkeys of index key store a record in index containing subkey as its key and key as its value. The\nrecords are stored in index’s list of\nrecords such that the list is sorted primarily on the\nrecords keys, and secondarily on the records values, in ascending order.

" + "html": "

If index’s multiEntry flag is true and index key is\nan array key, then for each subkey of the subkeys of index key store a record in index containing subkey as its key and key as its value. The\nrecords are stored in index’s list of\nrecords such that the list is sorted primarily on the\nrecords keys, and secondarily on the records values, in ascending order.

" } ] }, @@ -2503,47 +2503,47 @@ { "name": "retrieve a value from an object store", "href": "https://www.w3.org/TR/IndexedDB-3/#retrieve-a-value-from-an-object-store", - "html": "To retrieve a value from an object store with targetRealm, store and range, run these steps:", + "html": "To retrieve a value from an object store with targetRealm, store and range, run these steps.\nThey return undefined, an ECMAScript value, or an error (a DOMException):", "rationale": ".algorithm", "steps": [ { - "html": "

Let record be the first record in store’s list of records whose key is in range, if\nany.

" + "html": "

Let record be the first record in store’s list of records whose key is in range, if\nany.

" }, { "html": "

If record was not found, return undefined.

" }, { - "html": "

Let serialized be of record’s value.

" + "html": "

Let serialized be record’s value. If an error occurs while reading the value from the\nunderlying storage, return a newly created \"NotReadableError\" DOMException.

" }, { - "html": "

Return ! StructuredDeserialize(serialized, targetRealm).

" + "html": "

Return ! StructuredDeserialize(serialized, targetRealm).

" } ] }, { "name": "retrieve multiple values from an object store", "href": "https://www.w3.org/TR/IndexedDB-3/#retrieve-multiple-values-from-an-object-store", - "html": "To retrieve multiple values from an object\nstore with targetRealm, store, range and optional count, run these steps:", + "html": "To retrieve multiple values from an object\nstore with targetRealm, store, range and optional count, run these steps.\nThey return a sequence<any> or an error (a DOMException):", "rationale": ".algorithm", "steps": [ { "html": "

If count is not given or is 0 (zero), let count be infinity.

" }, { - "html": "

Let records be a list containing the first count records in store’s list of records whose key is in range.

" + "html": "

Let records be a list containing the first count records in store’s list of records whose key is in range.

" }, { - "html": "

Let list be an empty list.

" + "html": "

Let list be an empty list.

" }, { - "html": "For each record of records:", + "html": "For each record of records:", "rationale": "let", "steps": [ { - "html": "

Let serialized be record’s value.

" + "html": "

Let serialized be record’s value. If an error occurs while reading the value from the\nunderlying storage, return a newly created \"NotReadableError\" DOMException.

" }, { - "html": "

Let entry be ! StructuredDeserialize(serialized, targetRealm).

" + "html": "

Let entry be ! StructuredDeserialize(serialized, targetRealm).

" }, { "html": "

Append entry to list.

" @@ -2551,7 +2551,7 @@ ] }, { - "html": "

Return list converted to a sequence<any>.

" + "html": "

Return list converted to a sequence<any>.

" } ] }, @@ -2562,13 +2562,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let record be the first record in store’s list of records whose key is in range, if\nany.

" + "html": "

Let record be the first record in store’s list of records whose key is in range, if\nany.

" }, { "html": "

If record was not found, return undefined.

" }, { - "html": "

Return the result of converting a\nkey to a value with record’s key.

" + "html": "

Return the result of converting a\nkey to a value with record’s key.

" } ] }, @@ -2582,17 +2582,17 @@ "html": "

If count is not given or is 0 (zero), let count be infinity.

" }, { - "html": "

Let records be a list containing the first count records in store’s list of records whose key is in range.

" + "html": "

Let records be a list containing the first count records in store’s list of records whose key is in range.

" }, { - "html": "

Let list be an empty list.

" + "html": "

Let list be an empty list.

" }, { - "html": "For each record of records:", + "html": "For each record of records:", "rationale": "let", "steps": [ { - "html": "

Let entry be the result of converting a\nkey to a value with record’s key.

" + "html": "

Let entry be the result of converting a\nkey to a value with record’s key.

" }, { "html": "

Append entry to list.

" @@ -2600,7 +2600,7 @@ ] }, { - "html": "

Return list converted to a sequence<any>.

" + "html": "

Return list converted to a sequence<any>.

" } ] }, @@ -2611,16 +2611,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let record be the first record in index’s list of\nrecords whose key is in range, if any.

" + "html": "

Let record be the first record in index’s list of\nrecords whose key is in range, if any.

" }, { "html": "

If record was not found, return undefined.

" }, { - "html": "

Let serialized be record’s referenced value.

" + "html": "

Let serialized be record’s referenced value.

" }, { - "html": "

Return ! StructuredDeserialize(serialized, targetRealm).

" + "html": "

Return ! StructuredDeserialize(serialized, targetRealm).

" } ] }, @@ -2634,20 +2634,20 @@ "html": "

If count is not given or is 0 (zero), let count be infinity.

" }, { - "html": "

Let records be a list containing the first count records in index’s list of records whose key is in range.

" + "html": "

Let records be a list containing the first count records in index’s list of records whose key is in range.

" }, { - "html": "

Let list be an empty list.

" + "html": "

Let list be an empty list.

" }, { - "html": "For each record of records:", + "html": "For each record of records:", "rationale": "let", "steps": [ { - "html": "

Let serialized be record’s referenced value.

" + "html": "

Let serialized be record’s referenced value.

" }, { - "html": "

Let entry be ! StructuredDeserialize(serialized, targetRealm).

" + "html": "

Let entry be ! StructuredDeserialize(serialized, targetRealm).

" }, { "html": "

Append entry to list.

" @@ -2655,7 +2655,7 @@ ] }, { - "html": "

Return list converted to a sequence<any>.

" + "html": "

Return list converted to a sequence<any>.

" } ] }, @@ -2666,13 +2666,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let record be the first record in index’s list of\nrecords whose key is in range, if any.

" + "html": "

Let record be the first record in index’s list of\nrecords whose key is in range, if any.

" }, { "html": "

If record was not found, return undefined.

" }, { - "html": "

Return the result of converting a\n key to a value with record’s value.

" + "html": "

Return the result of converting a\n key to a value with record’s value.

" } ] }, @@ -2686,17 +2686,17 @@ "html": "

If count is not given or is 0 (zero), let count be infinity.

" }, { - "html": "

Let records be a list containing the first count records in index’s list of records whose key is in range.

" + "html": "

Let records be a list containing the first count records in index’s list of records whose key is in range.

" }, { - "html": "

Let list be an empty list.

" + "html": "

Let list be an empty list.

" }, { - "html": "For each record of records:", + "html": "For each record of records:", "rationale": "let", "steps": [ { - "html": "

Let entry be the result of converting a\nkey to a value with record’s value.

" + "html": "

Let entry be the result of converting a\nkey to a value with record’s value.

" }, { "html": "

Append entry to list.

" @@ -2704,7 +2704,7 @@ ] }, { - "html": "

Return list converted to a sequence<any>.

" + "html": "

Return list converted to a sequence<any>.

" } ] }, @@ -2715,10 +2715,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Remove all records, if any, from store’s list\nof records with key in range.

" + "html": "

Remove all records, if any, from store’s list\nof records with key in range.

" }, { - "html": "

For each index which references store, remove every record from index’s list of records whose value is in range, if any such records exist.

" + "html": "

For each index which references store, remove every record from index’s list of records whose value is in range, if any such records exist.

" }, { "html": "

Return undefined.

" @@ -2732,7 +2732,7 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let count be the number of records, if any, in source’s list of\nrecords with key in range.

" + "html": "

Let count be the number of records, if any, in source’s list of\nrecords with key in range.

" }, { "html": "

Return count.

" @@ -2749,7 +2749,7 @@ "html": "

Remove all records from store.

" }, { - "html": "

In all indexes which reference store, remove all records.

" + "html": "

In all indexes which reference store, remove all records.

" }, { "html": "

Return undefined.

" @@ -2763,25 +2763,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let source be cursor’s source.

" + "html": "

Let source be cursor’s source.

" }, { - "html": "

Let direction be cursor’s direction.

" + "html": "

Let direction be cursor’s direction.

" }, { - "html": "

Assert: if primaryKey is given, source is an index and direction is \"next\" or \"prev\".

" + "html": "

Assert: if primaryKey is given, source is an index and direction is \"next\" or \"prev\".

" }, { - "html": "

Let records be the list of records in source.

" + "html": "

Let records be the list of records in source.

" }, { - "html": "

Let range be cursor’s range.

" + "html": "

Let range be cursor’s range.

" }, { - "html": "

Let position be cursor’s position.

" + "html": "

Let position be cursor’s position.

" }, { - "html": "

Let object store position be cursor’s object store position.

" + "html": "

Let object store position be cursor’s object store position.

" }, { "html": "

If count is not given, let count be 1.

" @@ -2799,19 +2799,19 @@ "steps": [ { "case": "\"next\"", - "html": "

Let found record be the first record in records which\n satisfy all of the following requirements:

\n " + "html": "

Let found record be the first record in records which\n satisfy all of the following requirements:

\n " }, { "case": "\"nextunique\"", - "html": "

Let found record be the first record in records which\n satisfy all of the following requirements:

\n " + "html": "

Let found record be the first record in records which\n satisfy all of the following requirements:

\n " }, { "case": "\"prev\"", - "html": "

Let found record be the last record in records which\n satisfy all of the following requirements:

\n " + "html": "

Let found record be the last record in records which\n satisfy all of the following requirements:

\n " }, { "case": "\"prevunique\"", - "html": "

Let temp record be the last record in records which satisfy all of the following requirements:

\n \n

If temp record is defined, let found record be the\n first record in records whose key is equal to temp record’s key.

" + "html": "

Let temp record be the last record in records which satisfy all of the following requirements:

\n \n

If temp record is defined, let found record be the\n first record in records whose key is equal to temp record’s key.

" } ] } @@ -2822,13 +2822,13 @@ "rationale": "set", "steps": [ { - "html": "

Set cursor’s key to undefined.

" + "html": "

Set cursor’s key to undefined.

" }, { - "html": "

If source is an index, set cursor’s object store position to undefined.

" + "html": "

If source is an index, set cursor’s object store position to undefined.

" }, { - "html": "

If cursor’s key only flag is false, set cursor’s value to undefined.

" + "html": "

If cursor’s key only flag is false, set cursor’s value to undefined.

" }, { "html": "

Return null.

" @@ -2839,7 +2839,7 @@ "html": "

Let position be found record’s key.

" }, { - "html": "

If source is an index, let object store\nposition be found record’s value.

" + "html": "

If source is an index, let object store\nposition be found record’s value.

" }, { "html": "

Decrease count by 1.

" @@ -2847,28 +2847,28 @@ ] }, { - "html": "

Set cursor’s position to position.

" + "html": "

Set cursor’s position to position.

" }, { - "html": "

If source is an index, set cursor’s object\nstore position to object store position.

" + "html": "

If source is an index, set cursor’s object\nstore position to object store position.

" }, { - "html": "

Set cursor’s key to found record’s key.

" + "html": "

Set cursor’s key to found record’s key.

" }, { - "html": "If cursor’s key only flag is false, then:", + "html": "If cursor’s key only flag is false, then:", "rationale": "let", "steps": [ { - "html": "

Let serialized be found record’s referenced value.

" + "html": "

Let serialized be found record’s referenced value.

" }, { - "html": "

Set cursor’s value to ! StructuredDeserialize(serialized, targetRealm)

" + "html": "

Set cursor’s value to ! StructuredDeserialize(serialized, targetRealm)

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

Set cursor’s got value flag to true.

" + "html": "

Set cursor’s got value flag to true.

" }, { "html": "

Return cursor.

" @@ -2878,17 +2878,17 @@ { "name": "extract a key from a value using a key path", "href": "https://www.w3.org/TR/IndexedDB-3/#extract-a-key-from-a-value-using-a-key-path", - "html": "To extract a key from a value using a key path with value, keyPath and an optional multiEntry flag, run the\nfollowing steps. The result of these steps is a key, invalid, or\nfailure, or the steps may throw an exception.", + "html": "To extract a key from a value using a key path with value, keyPath and an optional multiEntry flag, run the\nfollowing steps. The result of these steps is a key, invalid, or\nfailure, or the steps may throw an exception.", "rationale": ".algorithm", "steps": [ { - "html": "

Let r be the result of evaluating a key\npath on a value with value and keyPath. Rethrow any\nexceptions.

" + "html": "

Let r be the result of evaluating a key\npath on a value with value and keyPath. Rethrow any\nexceptions.

" }, { "html": "

If r is failure, return failure.

" }, { - "html": "

Let key be the result of converting a value\nto a key with r if the multiEntry flag is false, and the\nresult of converting a value to a multiEntry\nkey with r otherwise. Rethrow any exceptions.

" + "html": "

Let key be the result of converting a value\nto a key with r if the multiEntry flag is false, and the\nresult of converting a value to a multiEntry\nkey with r otherwise. Rethrow any exceptions.

" }, { "html": "

If key is invalid, return invalid.

" @@ -2905,36 +2905,36 @@ "rationale": ".algorithm", "steps": [ { - "html": "If keyPath is a list of strings, then:", + "html": "If keyPath is a list of strings, then:", "rationale": "let", "steps": [ { - "html": "

Let result be a new Array object created as if by the\nexpression [].

" + "html": "

Let result be a new Array object created as if by the\nexpression [].

" }, { "html": "

Let i be 0.

" }, { - "html": "For each item of keyPath:", + "html": "For each item of keyPath:", "rationale": "let", "steps": [ { - "html": "

Let key be the result of recursively evaluating a key path on a value with item and value.

" + "html": "

Let key be the result of recursively evaluating a key path on a value with item and value.

" }, { - "html": "

Assert: key is not an abrupt completion.

" + "html": "

Assert: key is not an abrupt completion.

" }, { "html": "

If key is failure, abort the overall algorithm and return\nfailure.

" }, { - "html": "

Let p be ! ToString(i).

" + "html": "

Let p be ! ToString(i).

" }, { - "html": "

Let status be CreateDataProperty(result, p, key).

" + "html": "

Let status be CreateDataProperty(result, p, key).

" }, { - "html": "

Assert: status is true.

" + "html": "

Assert: status is true.

" }, { "html": "

Increase i by 1.

" @@ -2950,10 +2950,10 @@ "html": "

If keyPath is the empty string, return value and skip the\nremaining steps.

" }, { - "html": "

Let identifiers be the result of strictly splitting keyPath on U+002E FULL STOP characters (.).

" + "html": "

Let identifiers be the result of strictly splitting keyPath on U+002E FULL STOP characters (.).

" }, { - "html": "For each identifier of identifiers, jump to the appropriate step below:", + "html": "For each identifier of identifiers, jump to the appropriate step below:", "rationale": ".switch", "steps": [ { @@ -2965,23 +2965,23 @@ }, { "case": "If value is an Array and identifier is \"length\"", - "html": "

Let value be ! ToLength(! Get(value, \"length\")).

" + "html": "

Let value be ! ToLength(! Get(value, \"length\")).

" }, { "case": "If value is a Blob and identifier is \"size\"", - "html": "

Let value be a Number equal to value’s size.

" + "html": "

Let value be a Number equal to value’s size.

" }, { "case": "If value is a Blob and identifier is \"type\"", - "html": "

Let value be a String equal to value’s type.

" + "html": "

Let value be a String equal to value’s type.

" }, { "case": "If value is a File and identifier is \"name\"", - "html": "

Let value be a String equal to value’s name.

" + "html": "

Let value be a String equal to value’s name.

" }, { "case": "If value is a File and identifier is \"lastModified\"", - "html": "

Let value be a Number equal to value’s lastModified.

" + "html": "

Let value be a Number equal to value’s lastModified.

" }, { "case": "Otherwise", @@ -2989,16 +2989,16 @@ "rationale": "if", "steps": [ { - "html": "

If Type(value) is not Object, return failure.

" + "html": "

If Type(value) is not Object, return failure.

" }, { - "html": "

Let hop be ! HasOwnProperty(value, identifier).

" + "html": "

Let hop be ! HasOwnProperty(value, identifier).

" }, { "html": "

If hop is false, return failure.

" }, { - "html": "

Let value be ! Get(value, identifier).

" + "html": "

Let value be ! Get(value, identifier).

" }, { "html": "

If value is undefined, return failure.

" @@ -3010,7 +3010,7 @@ ] }, { - "html": "

Assert: value is not an abrupt completion.

" + "html": "

Assert: value is not an abrupt completion.

" }, { "html": "

Return value.

" @@ -3024,34 +3024,34 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let identifiers be the result of strictly splitting keyPath on U+002E FULL STOP characters (.).

" + "html": "

Let identifiers be the result of strictly splitting keyPath on U+002E FULL STOP characters (.).

" }, { - "html": "

Assert: identifiers is not empty.

" + "html": "

Assert: identifiers is not empty.

" }, { - "html": "

Remove the last item of identifiers.

" + "html": "

Remove the last item of identifiers.

" }, { - "html": "For each remaining identifier of identifiers, if any:", + "html": "For each remaining identifier of identifiers, if any:", "rationale": "if", "steps": [ { - "html": "

If value is not an Object or an Array, return false.

" + "html": "

If value is not an Object or an Array, return false.

" }, { - "html": "

Let hop be ! HasOwnProperty(value, identifier).

" + "html": "

Let hop be ! HasOwnProperty(value, identifier).

" }, { "html": "

If hop is false, return true.

" }, { - "html": "

Let value be ! Get(value, identifier).

" + "html": "

Let value be ! Get(value, identifier).

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

Return true if value is an Object or an Array, or false otherwise.

" + "html": "

Return true if value is an Object or an Array, or false otherwise.

" } ] }, @@ -3062,55 +3062,55 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let identifiers be the result of strictly splitting keyPath on U+002E FULL STOP characters (.).

" + "html": "

Let identifiers be the result of strictly splitting keyPath on U+002E FULL STOP characters (.).

" }, { - "html": "

Assert: identifiers is not empty.

" + "html": "

Assert: identifiers is not empty.

" }, { - "html": "

Let last be the last item of identifiers and remove it from\nthe list.

" + "html": "

Let last be the last item of identifiers and remove it from\nthe list.

" }, { - "html": "For each remaining identifier of identifiers:", + "html": "For each remaining identifier of identifiers:", "rationale": "assert", "steps": [ { - "html": "

Assert: value is an Object or an Array.

" + "html": "

Assert: value is an Object or an Array.

" }, { - "html": "

Let hop be ! HasOwnProperty(value, identifier).

" + "html": "

Let hop be ! HasOwnProperty(value, identifier).

" }, { "html": "If hop is false, then:", "rationale": "let", "steps": [ { - "html": "

Let o be a new Object created as if by the\nexpression ({}).

" + "html": "

Let o be a new Object created as if by the\nexpression ({}).

" }, { - "html": "

Let status be CreateDataProperty(value, identifier, o).

" + "html": "

Let status be CreateDataProperty(value, identifier, o).

" }, { - "html": "

Assert: status is true.

" + "html": "

Assert: status is true.

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

Let value be ! Get(value, identifier).

" + "html": "

Let value be ! Get(value, identifier).

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

Assert: value is an Object or an Array.

" + "html": "

Assert: value is an Object or an Array.

" }, { - "html": "

Let keyValue be the result of converting a\nkey to a value with key.

" + "html": "

Let keyValue be the result of converting a\nkey to a value with key.

" }, { - "html": "

Let status be CreateDataProperty(value, last, keyValue).

" + "html": "

Let status be CreateDataProperty(value, last, keyValue).

" }, { - "html": "

Assert: status is true.

" + "html": "

Assert: status is true.

" } ] }, @@ -3121,10 +3121,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let type be key’s type.

" + "html": "

Let type be key’s type.

" }, { - "html": "

Let value be key’s value.

" + "html": "

Let value be key’s value.

" }, { "html": "Switch on type:", @@ -3150,7 +3150,7 @@ "html": "

Let date be the result of executing the ECMAScript Date\n constructor with the single argument value.

" }, { - "html": "

Assert: date is not an abrupt completion.

" + "html": "

Assert: date is not an abrupt completion.

" }, { "html": "

Return date.

" @@ -3163,13 +3163,13 @@ "rationale": "let", "steps": [ { - "html": "

Let len be value’s length.

" + "html": "

Let len be value’s length.

" }, { "html": "

Let buffer be the result of executing the ECMAScript\n ArrayBuffer constructor with len.

" }, { - "html": "

Assert: buffer is not an abrupt completion.

" + "html": "

Assert: buffer is not an abrupt completion.

" }, { "html": "

Set the entries in buffer’s\n [[ArrayBufferData]] internal slot to the entries\n in value.

" @@ -3188,10 +3188,10 @@ "html": "

Let array be the result of executing the ECMAScript Array\n constructor with no arguments.

" }, { - "html": "

Assert: array is not an abrupt completion.

" + "html": "

Assert: array is not an abrupt completion.

" }, { - "html": "

Let len be value’s size.

" + "html": "

Let len be value’s size.

" }, { "html": "

Let index be 0.

" @@ -3201,13 +3201,13 @@ "rationale": "let", "steps": [ { - "html": "

Let entry be the result of converting a key to a value with value[index].

" + "html": "

Let entry be the result of converting a key to a value with value[index].

" }, { - "html": "

Let status be CreateDataProperty(array, index, entry).

" + "html": "

Let status be CreateDataProperty(array, index, entry).

" }, { - "html": "

Assert: status is true.

" + "html": "

Assert: status is true.

" }, { "html": "

Increase index by 1.

" @@ -3228,14 +3228,14 @@ { "name": "convert a value to a key", "href": "https://www.w3.org/TR/IndexedDB-3/#convert-a-value-to-a-key", - "html": "To convert a value to a key with an ECMAScript value input, and an optional set seen, run the following steps.\nThe result of these steps is a key or invalid, or the\nsteps may throw an exception.", + "html": "To convert a value to a key with an ECMAScript value input, and an optional set seen, run the following steps.\nThe result of these steps is a key or invalid, or the\nsteps may throw an exception.", "rationale": ".algorithm", "steps": [ { - "html": "

If seen was not given, then let seen be a new empty set.

" + "html": "

If seen was not given, then let seen be a new empty set.

" }, { - "html": "

If seen contains input, then return invalid.

" + "html": "

If seen contains input, then return invalid.

" }, { "html": "Jump to the appropriate step below:", @@ -3253,7 +3253,7 @@ "html": "

If input is NaN then return invalid.

" }, { - "html": "

Otherwise, return a new key with type number and value input.

" + "html": "

Otherwise, return a new key with type number and value input.

" } ] }, @@ -3269,7 +3269,7 @@ "html": "

If ms is NaN then return invalid.

" }, { - "html": "

Otherwise, return a new key with type date and value ms.

" + "html": "

Otherwise, return a new key with type date and value ms.

" } ] }, @@ -3279,7 +3279,7 @@ "rationale": "return", "steps": [ { - "html": "

Return a new key with type string and value input.

" + "html": "

Return a new key with type string and value input.

" } ] }, @@ -3289,10 +3289,10 @@ "rationale": "let", "steps": [ { - "html": "

Let bytes be the result of getting a copy of the bytes held by the buffer source input. Rethrow any exceptions.

" + "html": "

Let bytes be the result of getting a copy of the bytes held by the buffer source input. Rethrow any exceptions.

" }, { - "html": "

Return a new key with type binary and value bytes.

" + "html": "

Return a new key with type binary and value bytes.

" } ] }, @@ -3302,10 +3302,10 @@ "rationale": "let", "steps": [ { - "html": "

Let len be ? ToLength( ? Get(input,\n \"length\")).

" + "html": "

Let len be ? ToLength( ? Get(input,\n \"length\")).

" }, { - "html": "

Append input to seen.

" + "html": "

Append input to seen.

" }, { "html": "

Let keys be a new empty list.

" @@ -3318,25 +3318,25 @@ "rationale": "let", "steps": [ { - "html": "

Let hop be ? HasOwnProperty(input, index).

" + "html": "

Let hop be ? HasOwnProperty(input, index).

" }, { "html": "

If hop is false, return invalid.

" }, { - "html": "

Let entry be ? Get(input, index).

" + "html": "

Let entry be ? Get(input, index).

" }, { - "html": "

Let key be the result of converting a value to a key with arguments entry and seen.

" + "html": "

Let key be the result of converting a value to a key with arguments entry and seen.

" }, { - "html": "

ReturnIfAbrupt(key).

" + "html": "

ReturnIfAbrupt(key).

" }, { "html": "

If key is invalid abort these steps and return\n invalid.

" }, { - "html": "

Append key to keys.

" + "html": "

Append key to keys.

" }, { "html": "

Increase index by 1.

" @@ -3344,7 +3344,7 @@ ] }, { - "html": "

Return a new array key with value keys.

" + "html": "

Return a new array key with value keys.

" } ] }, @@ -3361,21 +3361,21 @@ { "name": "convert a value to a multiEntry key", "href": "https://www.w3.org/TR/IndexedDB-3/#convert-a-value-to-a-multientry-key", - "html": "To convert a value to a multiEntry key with an ECMAScript value input, run the following steps.\nThe result of these steps is a key or invalid, or the\nsteps may throw an exception.", + "html": "To convert a value to a multiEntry key with an ECMAScript value input, run the following steps.\nThe result of these steps is a key or invalid, or the\nsteps may throw an exception.", "rationale": ".algorithm", "steps": [ { - "html": "If input is an Array exotic object, then:", + "html": "If input is an Array exotic object, then:", "rationale": "let", "steps": [ { - "html": "

Let len be ? ToLength( ? Get(input, \"length\")).

" + "html": "

Let len be ? ToLength( ? Get(input, \"length\")).

" }, { - "html": "

Let seen be a new set containing only input.

" + "html": "

Let seen be a new set containing only input.

" }, { - "html": "

Let keys be a new empty list.

" + "html": "

Let keys be a new empty list.

" }, { "html": "

Let index be 0.

" @@ -3385,17 +3385,17 @@ "rationale": "let", "steps": [ { - "html": "

Let entry be Get(input, index).

" + "html": "

Let entry be Get(input, index).

" }, { - "html": "If entry is not an abrupt completion, then:", + "html": "If entry is not an abrupt completion, then:", "rationale": "let", "steps": [ { - "html": "

Let key be the result of converting a value to a key with arguments entry and seen.

" + "html": "

Let key be the result of converting a value to a key with arguments entry and seen.

" }, { - "html": "

If key is not invalid or an abrupt completion,\n and there is no item in keys equal to key,\n then append key to keys.

" + "html": "

If key is not invalid or an abrupt completion,\n and there is no item in keys equal to key,\n then append key to keys.

" } ] }, @@ -3405,12 +3405,12 @@ ] }, { - "html": "

Return a new array key with value set to keys.

" + "html": "

Return a new array key with value set to keys.

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

Otherwise, return the result of converting a\nvalue to a key with argument input.\nRethrow any exceptions.

" + "html": "

Otherwise, return the result of converting a\nvalue to a key with argument input.\nRethrow any exceptions.

" } ] } diff --git a/tr/dfns/CSP3.json b/tr/dfns/CSP3.json index 03fc819c5e48..d737f5d4d0f9 100644 --- a/tr/dfns/CSP3.json +++ b/tr/dfns/CSP3.json @@ -299,25 +299,6 @@ }, "definedIn": "prose" }, - { - "id": "abstract-opdef-parse-a-serialized-csp-list", - "href": "https://www.w3.org/TR/CSP3/#abstract-opdef-parse-a-serialized-csp-list", - "linkingText": [ - "parse a serialized CSP list" - ], - "localLinkingText": [], - "type": "abstract-op", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "parse-serialized-policy-list", - "href": "https://www.w3.org/TR/CSP3/#parse-serialized-policy-list", - "title": "Parse a serialized CSP list", - "number": "2.2.2" - }, - "definedIn": "prose" - }, { "id": "parse-response-csp", "href": "https://www.w3.org/TR/CSP3/#parse-response-csp", @@ -333,7 +314,7 @@ "id": "parse-response-csp", "href": "https://www.w3.org/TR/CSP3/#parse-response-csp", "title": "Parse response’s Content Security Policies", - "number": "2.2.3" + "number": "2.2.2" }, "definedIn": "heading" }, diff --git a/tr/headings/CSP3.json b/tr/headings/CSP3.json index 2f08c2fb4f97..2fec14ad9ce2 100644 --- a/tr/headings/CSP3.json +++ b/tr/headings/CSP3.json @@ -85,19 +85,12 @@ "title": "Parse a serialized CSP", "number": "2.2.1" }, - { - "id": "parse-serialized-policy-list", - "href": "https://www.w3.org/TR/CSP3/#parse-serialized-policy-list", - "level": 4, - "title": "Parse a serialized CSP list", - "number": "2.2.2" - }, { "id": "parse-response-csp", "href": "https://www.w3.org/TR/CSP3/#parse-response-csp", "level": 4, "title": "Parse response’s Content Security Policies", - "number": "2.2.3" + "number": "2.2.2" }, { "id": "framework-directives", diff --git a/tr/headings/vc-data-model-2.0.json b/tr/headings/vc-data-model-2.0.json index a0f2d98d6c4c..098734116a8a 100644 --- a/tr/headings/vc-data-model-2.0.json +++ b/tr/headings/vc-data-model-2.0.json @@ -115,26 +115,26 @@ "number": "4.4" }, { - "id": "sd-jwt-claim-lYIf6J9YkniuAHpkXOuxDPUYJLbk39jj_mbLqgu2A0I", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-lYIf6J9YkniuAHpkXOuxDPUYJLbk39jj_mbLqgu2A0I", + "id": "sd-jwt-claim-2rwDfHkqJY10fACvPj7-6Jw_E8yJ5Rk9SyKKYN1lp9w", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-2rwDfHkqJY10fACvPj7-6Jw_E8yJ5Rk9SyKKYN1lp9w", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-t-7VPQ8jqAMa4FqXz43iCXWdD_xf2YFBmJJStWWM3rU", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-t-7VPQ8jqAMa4FqXz43iCXWdD_xf2YFBmJJStWWM3rU", + "id": "sd-jwt-claim-LAwnG-pAnqe3OwR2ttI8_ilcYght_455V4_7Y2W47KY", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-LAwnG-pAnqe3OwR2ttI8_ilcYght_455V4_7Y2W47KY", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-co6A0B-MhqqPVdP5j1dhWYiRG2Swo_2JdEffv5ly1Ik", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-co6A0B-MhqqPVdP5j1dhWYiRG2Swo_2JdEffv5ly1Ik", + "id": "sd-jwt-claim-Da3TTOwaPvKqkOm4eXp2FyCnJ60QsgaIRXpFIdnHx94", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Da3TTOwaPvKqkOm4eXp2FyCnJ60QsgaIRXpFIdnHx94", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-ZKzDsi-jlcAdZXvGuiaSF7IKTHBr2KCCjPTFTJRWEHA", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ZKzDsi-jlcAdZXvGuiaSF7IKTHBr2KCCjPTFTJRWEHA", + "id": "sd-jwt-claim-q9WLObSQwjjZpFjfQurO92Rr7AyIrXe0t0Zzv-iyOuc", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-q9WLObSQwjjZpFjfQurO92Rr7AyIrXe0t0Zzv-iyOuc", "level": 3, "title": "Claim: type" }, @@ -146,26 +146,26 @@ "number": "4.5" }, { - "id": "sd-jwt-claim-M1_GKkkYtCXlkUPKTcTxYY5RD6yGMaN8J5azpZwnkMQ", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-M1_GKkkYtCXlkUPKTcTxYY5RD6yGMaN8J5azpZwnkMQ", + "id": "sd-jwt-claim-ss7gmcutXHek3wd08wVpqp4pkImjnEgnvhImEZq9lqs", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ss7gmcutXHek3wd08wVpqp4pkImjnEgnvhImEZq9lqs", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-D2deRCwP5jNb9QXzn6op2Ckr1-fLPNIEHGJSjOwk6Og", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-D2deRCwP5jNb9QXzn6op2Ckr1-fLPNIEHGJSjOwk6Og", + "id": "sd-jwt-claim-vzVaqDTT1Wa_og1lfpyW9zbtIX0OOMRcA7MV4LCsC5c", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-vzVaqDTT1Wa_og1lfpyW9zbtIX0OOMRcA7MV4LCsC5c", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-pw5lmYI2BFcg-V6NYq6eX10kBltpoc8ka28yFWjB51M", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pw5lmYI2BFcg-V6NYq6eX10kBltpoc8ka28yFWjB51M", + "id": "sd-jwt-claim-j18iCPOHG96zqNEdVkHL4OzOAVMrgSTJXAc5vjwXysM", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-j18iCPOHG96zqNEdVkHL4OzOAVMrgSTJXAc5vjwXysM", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-rAkEYqI-TGcUKLQAIvv1S4rOeTWlGHCCuGrNjtAG3Ho", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-rAkEYqI-TGcUKLQAIvv1S4rOeTWlGHCCuGrNjtAG3Ho", + "id": "sd-jwt-claim--KoudjOWnrcLixrIeKlqheacLRoKUdQ3UGu83ENuGVQ", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim--KoudjOWnrcLixrIeKlqheacLRoKUdQ3UGu83ENuGVQ", "level": 3, "title": "Claim: type" }, @@ -177,32 +177,32 @@ "number": "4.6" }, { - "id": "sd-jwt-claim-Mkqc-8fRAEblYDwvixj2nvy-mC8LmJDMtthuZM2zcjQ", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Mkqc-8fRAEblYDwvixj2nvy-mC8LmJDMtthuZM2zcjQ", + "id": "sd-jwt-claim-5Pv7qSBiLRKGijNTMVE4x4bfRvnqCvpzoM5do402x1U", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-5Pv7qSBiLRKGijNTMVE4x4bfRvnqCvpzoM5do402x1U", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-DjmJID4MtAAgE7zhwSMLKZmMfzFXKlayG1ja0QuISrc", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-DjmJID4MtAAgE7zhwSMLKZmMfzFXKlayG1ja0QuISrc", + "id": "sd-jwt-claim-Hf1ZJfyVmZk6C50lCHeGF-dLAZb_L9Oe6GK65WUrIvQ", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Hf1ZJfyVmZk6C50lCHeGF-dLAZb_L9Oe6GK65WUrIvQ", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-hg-OYdTFwZWIXgM_HWOOothEN21OtB_eant-P26g72Q", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-hg-OYdTFwZWIXgM_HWOOothEN21OtB_eant-P26g72Q", + "id": "sd-jwt-claim-2fOVgCdNeMUJzp-np_PPWSGfJZ-3aeggKUaqW_t4tk4", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-2fOVgCdNeMUJzp-np_PPWSGfJZ-3aeggKUaqW_t4tk4", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-Inu5yIBh6wkSwjGMis5EjYbTxWRzyCd7nlswZXdap8Q", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Inu5yIBh6wkSwjGMis5EjYbTxWRzyCd7nlswZXdap8Q", + "id": "sd-jwt-claim-HVN2MVOHhyBxpzwkl92kb1eVd9ky8pDkih6y01FRn5Q", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-HVN2MVOHhyBxpzwkl92kb1eVd9ky8pDkih6y01FRn5Q", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-CGLwf4hvpCINJaIsl_SvK1--RwLLCiNp-iqBapnQNSE", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-CGLwf4hvpCINJaIsl_SvK1--RwLLCiNp-iqBapnQNSE", + "id": "sd-jwt-claim-44gkQyTLsOC8zpHl9kHYoweUv03CtzBlrAhM7smJkP8", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-44gkQyTLsOC8zpHl9kHYoweUv03CtzBlrAhM7smJkP8", "level": 3, "title": "Claim: type" }, @@ -214,56 +214,56 @@ "number": "4.7" }, { - "id": "sd-jwt-claim-7nIEmVnFyDHeVzWbqW62NhESPdmfqgz2BXEAHQtz8HY", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-7nIEmVnFyDHeVzWbqW62NhESPdmfqgz2BXEAHQtz8HY", + "id": "sd-jwt-claim-8AuaOWEOK71eWcG6b3yGofhmGVIuk3hi09cCwEXpjJ8", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-8AuaOWEOK71eWcG6b3yGofhmGVIuk3hi09cCwEXpjJ8", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-zwA6iSmQNZnV2M9wz3uEi2QZZ9z-0nHoPKCTFLs2thk", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-zwA6iSmQNZnV2M9wz3uEi2QZZ9z-0nHoPKCTFLs2thk", + "id": "sd-jwt-claim-YiOEEwhNaIwGt9xqK1zPQIia3SynHZgOPzQa0UVq_YA", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-YiOEEwhNaIwGt9xqK1zPQIia3SynHZgOPzQa0UVq_YA", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-CAVL38zhMKRnUpyFcEGqu8IyvVOUQtTA6UisVRC7jF8", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-CAVL38zhMKRnUpyFcEGqu8IyvVOUQtTA6UisVRC7jF8", + "id": "sd-jwt-claim-Xhoga1WNyIEkkBkKIvdmmLsvXhtWqrL4dCmBi3RH8cQ", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Xhoga1WNyIEkkBkKIvdmmLsvXhtWqrL4dCmBi3RH8cQ", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-mKP4GocLTeM-O5DZHj0tOr90nv8UGRShT2yLnfZZ_nI", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mKP4GocLTeM-O5DZHj0tOr90nv8UGRShT2yLnfZZ_nI", + "id": "sd-jwt-claim-tN-wEbZsMNiIW1Aq_jhtmhL34X1jwfOGuTQtJ_gay28", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-tN-wEbZsMNiIW1Aq_jhtmhL34X1jwfOGuTQtJ_gay28", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-N-f1uVgZQKV4Le-7x1qTAfRdLcLg46D0bS5uMvhQJp0", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-N-f1uVgZQKV4Le-7x1qTAfRdLcLg46D0bS5uMvhQJp0", + "id": "sd-jwt-claim-Fb-pzovyAwnfkno5GhhB3bvpOpkjOCel7VPrRN-RcmU", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Fb-pzovyAwnfkno5GhhB3bvpOpkjOCel7VPrRN-RcmU", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-lyrdnHptGZ9vaMCId8pQQ_cI3WMpcpjH3nZQ0Y-QbGo", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-lyrdnHptGZ9vaMCId8pQQ_cI3WMpcpjH3nZQ0Y-QbGo", + "id": "sd-jwt-claim-MgeftS4_1Kl70Xu1TK65YcxT14xJr0BAlgE88eAVSeg", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-MgeftS4_1Kl70Xu1TK65YcxT14xJr0BAlgE88eAVSeg", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-Rgn33AhH8kLGaI1IhZkykI1vUbop1QciMBsexmwrU6c", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Rgn33AhH8kLGaI1IhZkykI1vUbop1QciMBsexmwrU6c", + "id": "sd-jwt-claim-mon0WivbN7CClt0FKpvynxnwi4er70JO63ygY0S1FBU", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mon0WivbN7CClt0FKpvynxnwi4er70JO63ygY0S1FBU", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-ptfkGI6bjzpsVnl0OX-L1MgSK_Pb8q1fBfUS9eTtxyI", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ptfkGI6bjzpsVnl0OX-L1MgSK_Pb8q1fBfUS9eTtxyI", + "id": "sd-jwt-claim-Qp43ucGzk4SVVYChpIuvIhejjnNpRzLJdxj_T0p86Aw", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Qp43ucGzk4SVVYChpIuvIhejjnNpRzLJdxj_T0p86Aw", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-iOFjwMQej4muZ67gSOV1ht4xsB2FbfI1UkmcO44L-gU", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-iOFjwMQej4muZ67gSOV1ht4xsB2FbfI1UkmcO44L-gU", + "id": "sd-jwt-claim-l5KsYuzO7KwMT_Q6kDo90HIOpFTeqX2pHCojwd3dG7Q", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-l5KsYuzO7KwMT_Q6kDo90HIOpFTeqX2pHCojwd3dG7Q", "level": 3, "title": "Claim: type" }, @@ -275,26 +275,26 @@ "number": "4.8" }, { - "id": "sd-jwt-claim-1bl-j2EHU89vSUfNKoDiKBz9GENhGU09AMo_pJVgl54", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-1bl-j2EHU89vSUfNKoDiKBz9GENhGU09AMo_pJVgl54", + "id": "sd-jwt-claim-Aqe2pjzUWOoFER5nchZbPq3WcIui-kM2y4g3HGF19tQ", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Aqe2pjzUWOoFER5nchZbPq3WcIui-kM2y4g3HGF19tQ", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-BwA4OcLF9h5hENx2E78Dnwg03BpLsQSwQ93JWCgU2RQ", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-BwA4OcLF9h5hENx2E78Dnwg03BpLsQSwQ93JWCgU2RQ", + "id": "sd-jwt-claim-DXv-CaVSTxsvw7Jl63bwRcmirYWOnDlqNM2_-eef5b8", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-DXv-CaVSTxsvw7Jl63bwRcmirYWOnDlqNM2_-eef5b8", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-9xiOfXgEF-f4KUwM2mc0wQZpbeL5JDXfrgcoKwnwqyM", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-9xiOfXgEF-f4KUwM2mc0wQZpbeL5JDXfrgcoKwnwqyM", + "id": "sd-jwt-claim-mUUb-m9QDqAK9SHX2ZlswZ5yaeKZIJeYfasuKDbSWf8", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mUUb-m9QDqAK9SHX2ZlswZ5yaeKZIJeYfasuKDbSWf8", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-4GEnuyu8qmnV_uLU4mCCTxzSkytZdpzlGOWUAY_8st4", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4GEnuyu8qmnV_uLU4mCCTxzSkytZdpzlGOWUAY_8st4", + "id": "sd-jwt-claim-o_HV-C9_raowyo9An3SomCCg-sHs34UwcjdF3Jo1DUY", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-o_HV-C9_raowyo9An3SomCCg-sHs34UwcjdF3Jo1DUY", "level": 3, "title": "Claim: type" }, @@ -306,26 +306,26 @@ "number": "4.9" }, { - "id": "sd-jwt-claim-n8CiK6gHwbeG-VswqEw02-kmLA8a3ODwWRpeL2nQuKI", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-n8CiK6gHwbeG-VswqEw02-kmLA8a3ODwWRpeL2nQuKI", + "id": "sd-jwt-claim-3K0gzqIc7T8shfl4ozsnP6TM18gP5tMYH_wbumQH180", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-3K0gzqIc7T8shfl4ozsnP6TM18gP5tMYH_wbumQH180", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-yIGdad0aQMCCNf6JKeOCzl5mt_6ODssKKJs-jkrPLxE", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-yIGdad0aQMCCNf6JKeOCzl5mt_6ODssKKJs-jkrPLxE", + "id": "sd-jwt-claim-9ukhVVX87H-7aSaYyrkZV7mbTe96fUNshCYhEaky-WU", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-9ukhVVX87H-7aSaYyrkZV7mbTe96fUNshCYhEaky-WU", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-guvNOIkpvReYS9Bt7vtgfk4tAJYaSmGUTKGqNHC5w0Q", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-guvNOIkpvReYS9Bt7vtgfk4tAJYaSmGUTKGqNHC5w0Q", + "id": "sd-jwt-claim-IUvMDQgDx27hkoxbV_pWlvyGSethkr1LlIXfKsdHiQo", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-IUvMDQgDx27hkoxbV_pWlvyGSethkr1LlIXfKsdHiQo", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-sgBI9P1tWojMy3vSH7eeZ0tyjXf2Rh1S41lMIYJaCTQ", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-sgBI9P1tWojMy3vSH7eeZ0tyjXf2Rh1S41lMIYJaCTQ", + "id": "sd-jwt-claim-iI0fXEttu9kugqdEV-OpufmOrKxh8Qii0iDaxrfHe3c", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-iI0fXEttu9kugqdEV-OpufmOrKxh8Qii0iDaxrfHe3c", "level": 3, "title": "Claim: type" }, @@ -403,20 +403,20 @@ "number": "5.2" }, { - "id": "sd-jwt-claim-r7k9AFlBoXWvXuwZxEhyKCobcKsCOLtDjALyh-ReVRI", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-r7k9AFlBoXWvXuwZxEhyKCobcKsCOLtDjALyh-ReVRI", + "id": "sd-jwt-claim-Cj3JPJPzAfErN_-9vdKgZDIe7nVbQU6O769Gky_VIis", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Cj3JPJPzAfErN_-9vdKgZDIe7nVbQU6O769Gky_VIis", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-vbkiNyRCCbs9-r2bl2Wvca57_I2feZ_vIkaeTBBRibY", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-vbkiNyRCCbs9-r2bl2Wvca57_I2feZ_vIkaeTBBRibY", + "id": "sd-jwt-claim-Kfhi8xl6WJ6_c2WMt7Evpm44S_yh7DZeEcYEWi7SMAw", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Kfhi8xl6WJ6_c2WMt7Evpm44S_yh7DZeEcYEWi7SMAw", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-771gBOijEgDTqsdTA33rqVGKsCQDLs3QclShKgTYNIk", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-771gBOijEgDTqsdTA33rqVGKsCQDLs3QclShKgTYNIk", + "id": "sd-jwt-claim-bpoq5ZtX2653nJqAAZwliQRx5K2fVASSGqK-B8S1tBE", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-bpoq5ZtX2653nJqAAZwliQRx5K2fVASSGqK-B8S1tBE", "level": 3, "title": "Claim: id" }, @@ -654,20 +654,20 @@ "number": "8.10" }, { - "id": "sd-jwt-claim-PyuuwcviPJjcawO1d7DlwH-Ai2_p-OAMpyCVLfD0wxY", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-PyuuwcviPJjcawO1d7DlwH-Ai2_p-OAMpyCVLfD0wxY", + "id": "sd-jwt-claim-f_1oHyB1Twtm29w-MAObaSfLH6YFuJ206DBNm5AHyYI", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-f_1oHyB1Twtm29w-MAObaSfLH6YFuJ206DBNm5AHyYI", "level": 3, "title": "Claim: id" }, { - "id": "sd-jwt-claim-rhcz8rNY31o6Pi9sjNXboZzL4PgaBLVGI-44UULqdB0", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-rhcz8rNY31o6Pi9sjNXboZzL4PgaBLVGI-44UULqdB0", + "id": "sd-jwt-claim-IJyKi2KnJ6pHaKyMauv7f2DnMHYo1b4mWyyalDjgzII", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-IJyKi2KnJ6pHaKyMauv7f2DnMHYo1b4mWyyalDjgzII", "level": 3, "title": "Claim: type" }, { - "id": "sd-jwt-claim-47ccI82YsvYACUi7JnuNzLTBA5MBQ4iR0xkkUwLQPzg", - "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-47ccI82YsvYACUi7JnuNzLTBA5MBQ4iR0xkkUwLQPzg", + "id": "sd-jwt-claim-YHcfFPpsCT80ouFvCtltliuXh11ZF5Ynxk9HoHnEJa0", + "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-YHcfFPpsCT80ouFvCtltliuXh11ZF5Ynxk9HoHnEJa0", "level": 3, "title": "Claim: type" }, diff --git a/tr/ids/CSP3.json b/tr/ids/CSP3.json index 5f2e91feabf4..26bb7dd541df 100644 --- a/tr/ids/CSP3.json +++ b/tr/ids/CSP3.json @@ -140,11 +140,14 @@ "https://www.w3.org/TR/CSP3/#infopaneltitle-for-abstract-opdef-parse-a-serialized-csp", "https://www.w3.org/TR/CSP3/#infopanel-for-abstract-opdef-parse-a-serialized-csp", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-abstract-opdef-parse-a-serialized-csp", + "https://www.w3.org/TR/CSP3/#ref-for-byte-sequence", "https://www.w3.org/TR/CSP3/#ref-for-string", "https://www.w3.org/TR/CSP3/#ref-for-policy-source%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition", "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set", + "https://www.w3.org/TR/CSP3/#ref-for-byte-sequence%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-isomorphic-decode", "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-policy-source%E2%91%A1", @@ -167,29 +170,6 @@ "https://www.w3.org/TR/CSP3/#ref-for-directive-value", "https://www.w3.org/TR/CSP3/#ref-for-set-append", "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A2", - "https://www.w3.org/TR/CSP3/#parse-serialized-policy-list", - "https://www.w3.org/TR/CSP3/#abstract-opdef-parse-a-serialized-csp-list", - "https://www.w3.org/TR/CSP3/#infopanel-for-abstract-opdef-parse-a-serialized-csp-list", - "https://www.w3.org/TR/CSP3/#infopaneltitle-for-abstract-opdef-parse-a-serialized-csp-list", - "https://www.w3.org/TR/CSP3/#infopanel-for-abstract-opdef-parse-a-serialized-csp-list", - "https://www.w3.org/TR/CSP3/#infopaneltitle-for-abstract-opdef-parse-a-serialized-csp-list", - "https://www.w3.org/TR/CSP3/#ref-for-byte-sequence", - "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-policy-source%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-list%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A4", - "https://www.w3.org/TR/CSP3/#ref-for-byte-sequence%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-isomorphic-decode", - "https://www.w3.org/TR/CSP3/#ref-for-list%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-split-on-commas", - "https://www.w3.org/TR/CSP3/#ref-for-abstract-opdef-parse-a-serialized-csp", - "https://www.w3.org/TR/CSP3/#ref-for-policy-source%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-iteration-continue%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-list-append", "https://www.w3.org/TR/CSP3/#parse-response-csp", "https://www.w3.org/TR/CSP3/#ref-for-parse-response-csp", "https://www.w3.org/TR/CSP3/#infopanel-for-parse-response-csp", @@ -202,17 +182,24 @@ "https://www.w3.org/TR/CSP3/#infopanel-for-abstract-opdef-parse-a-responses-content-security-policies", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-abstract-opdef-parse-a-responses-content-security-policies", "https://www.w3.org/TR/CSP3/#ref-for-concept-response", - "https://www.w3.org/TR/CSP3/#ref-for-abstract-opdef-parse-a-serialized-csp-list", + "https://www.w3.org/TR/CSP3/#ref-for-list%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A4", + "https://www.w3.org/TR/CSP3/#ref-for-list%E2%91%A1", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-extract-header-list-values", "https://www.w3.org/TR/CSP3/#ref-for-concept-response-header-list", - "https://www.w3.org/TR/CSP3/#ref-for-policy-source%E2%91%A4", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-abstract-opdef-parse-a-serialized-csp-list%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-abstract-opdef-parse-a-serialized-csp-list", + "https://www.w3.org/TR/CSP3/#ref-for-policy-source%E2%91%A2", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A1", + "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A3", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-extract-header-list-values%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-concept-response-header-list%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-policy-source%E2%91%A5", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A4", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1", + "https://www.w3.org/TR/CSP3/#ref-for-abstract-opdef-parse-a-serialized-csp-list%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-policy-source%E2%91%A3", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A2", + "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A4", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-policy-self-origin", "https://www.w3.org/TR/CSP3/#ref-for-concept-response-url", "https://www.w3.org/TR/CSP3/#ref-for-concept-url-origin", @@ -226,7 +213,7 @@ "https://www.w3.org/TR/CSP3/#infopaneltitle-for-directives", "https://www.w3.org/TR/CSP3/#infopanel-for-directives", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-directives", - "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A4", + "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A2", "https://www.w3.org/TR/CSP3/#directive-name", "https://www.w3.org/TR/CSP3/#infopanel-for-directive-name", @@ -239,10 +226,10 @@ "https://www.w3.org/TR/CSP3/#infopanel-for-directive-value", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-directive-value", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A1", + "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-directive-value%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-ordered-set%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A2", + "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-directive-value%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-list-is-empty", "https://www.w3.org/TR/CSP3/#serialized-directive", @@ -347,8 +334,8 @@ "https://www.w3.org/TR/CSP3/#infopanel-for-source-lists", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-source-lists", "https://www.w3.org/TR/CSP3/#ref-for-ordered-set%E2%91%A2", + "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A4", "https://www.w3.org/TR/CSP3/#source-expression", "https://www.w3.org/TR/CSP3/#infopanel-for-source-expression", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-source-expression", @@ -570,7 +557,7 @@ "https://www.w3.org/TR/CSP3/#infopaneltitle-for-violation-disposition", "https://www.w3.org/TR/CSP3/#infopanel-for-violation-disposition", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-violation-disposition", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A5", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-violation%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/CSP3/#violation-effective-directive", @@ -615,7 +602,7 @@ "https://www.w3.org/TR/CSP3/#create-violation-for-global", "https://www.w3.org/TR/CSP3/#ref-for-global-object%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A5", + "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-violation%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-violation%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-violation-global-object%E2%91%A0", @@ -661,7 +648,7 @@ "https://www.w3.org/TR/CSP3/#example-b2d2c295", "https://www.w3.org/TR/CSP3/#ref-for-header-content-security-policy%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-section-3.2%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-abstract-opdef-parse-a-serialized-csp%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-abstract-opdef-parse-a-serialized-csp", "https://www.w3.org/TR/CSP3/#ref-for-enforced", "https://www.w3.org/TR/CSP3/#ref-for-serialized-csp%E2%91%A2", "https://www.w3.org/TR/CSP3/#cspro-header", @@ -674,7 +661,7 @@ "https://www.w3.org/TR/CSP3/#example-5899b4f0", "https://www.w3.org/TR/CSP3/#ref-for-header-content-security-policy-report-only", "https://www.w3.org/TR/CSP3/#ref-for-section-3.2%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-abstract-opdef-parse-a-serialized-csp%E2%91%A1", + "https://www.w3.org/TR/CSP3/#ref-for-abstract-opdef-parse-a-serialized-csp%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-monitored", "https://www.w3.org/TR/CSP3/#ref-for-serialized-csp%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-header-content-security-policy-report-only%E2%91%A0", @@ -722,8 +709,8 @@ "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-policy-container%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A6", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A3", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A4", "https://www.w3.org/TR/CSP3/#should-block-request", "https://www.w3.org/TR/CSP3/#ref-for-should-block-request%E2%91%A1", "https://www.w3.org/TR/CSP3/#infopanel-for-should-block-request", @@ -735,8 +722,8 @@ "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-policy-container%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A7", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A4", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A5", "https://www.w3.org/TR/CSP3/#should-block-response", "https://www.w3.org/TR/CSP3/#ref-for-should-block-response%E2%91%A1", "https://www.w3.org/TR/CSP3/#infopanel-for-should-block-response", @@ -749,10 +736,10 @@ "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-policy-container%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list%E2%91%A4", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A5", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-directive-post-request-check%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A8", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A6", "https://www.w3.org/TR/CSP3/#html-integration", "https://www.w3.org/TR/CSP3/#ref-for-policy-container", "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list%E2%91%A5", @@ -815,10 +802,10 @@ "https://www.w3.org/TR/CSP3/#infopanel-for-run-document-csp-initialization", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-run-document-csp-initialization", "https://www.w3.org/TR/CSP3/#ref-for-document%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A6", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-concept-document-policy-container", "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list%E2%91%A6", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A7", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-directive-initialization", "https://www.w3.org/TR/CSP3/#get-csp-of-object", "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A0", @@ -839,12 +826,12 @@ "https://www.w3.org/TR/CSP3/#infopanel-for-should-block-inline", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-should-block-inline", "https://www.w3.org/TR/CSP3/#ref-for-element%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A8", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/CSP3/#ref-for-document%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-global-object%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A5", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-directive-inline-check", "https://www.w3.org/TR/CSP3/#ref-for-current-settings-object", "https://www.w3.org/TR/CSP3/#ref-for-concept-settings-object-global%E2%91%A0", @@ -854,7 +841,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-list-contain%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-report-sample%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-violation-sample%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A7", "https://www.w3.org/TR/CSP3/#should-block-navigation-request", "https://www.w3.org/TR/CSP3/#ref-for-should-block-navigation-request%E2%91%A2", "https://www.w3.org/TR/CSP3/#infopanel-for-should-block-navigation-request", @@ -862,31 +849,31 @@ "https://www.w3.org/TR/CSP3/#infopanel-for-should-block-navigation-request", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-should-block-navigation-request", "https://www.w3.org/TR/CSP3/#ref-for-concept-request%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-policy-container%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-directive-pre-navigation-check", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-client%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-concept-settings-object-global%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-violation-resource%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-url%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-current-url%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-concept-url-scheme", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-client%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-concept-settings-object-global%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-directive-inline-check%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-current-url%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-client%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-concept-settings-object-global%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-violation-resource%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-url%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/CSP3/#should-block-navigation-response", "https://www.w3.org/TR/CSP3/#ref-for-should-block-navigation-response%E2%91%A1", "https://www.w3.org/TR/CSP3/#infopanel-for-should-block-navigation-response", @@ -897,27 +884,27 @@ "https://www.w3.org/TR/CSP3/#ref-for-concept-response%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-csp-list%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-navigable%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-frame-ancestors", "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-directive-navigation-response-check", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-violation-resource%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-concept-response-url%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-policy-container%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-policy-container-csp-list%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-frame-ancestors%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-directive-navigation-response-check%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-client%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-concept-settings-object-global%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-violation-resource%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-url%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/CSP3/#run-global-object-csp-initialization", "https://www.w3.org/TR/CSP3/#ref-for-run-global-object-csp-initialization%E2%91%A1", "https://www.w3.org/TR/CSP3/#infopanel-for-run-global-object-csp-initialization", @@ -925,22 +912,22 @@ "https://www.w3.org/TR/CSP3/#infopanel-for-run-global-object-csp-initialization", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-run-global-object-csp-initialization", "https://www.w3.org/TR/CSP3/#ref-for-global-object%E2%91%A8", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A4", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-directive-initialization%E2%91%A0", "https://www.w3.org/TR/CSP3/#webrtc-integration", "https://www.w3.org/TR/CSP3/#ref-for-dfn-administratively-prohibited", "https://www.w3.org/TR/CSP3/#should-block-rtc-connection", "https://www.w3.org/TR/CSP3/#ref-for-global-object%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A5", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-directive-webrtc-pre-connect-check", - "https://www.w3.org/TR/CSP3/#ref-for-iteration-continue%E2%91%A2", + "https://www.w3.org/TR/CSP3/#ref-for-iteration-continue%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-violation-resource%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/CSP3/#ecma-integration", "https://www.w3.org/TR/CSP3/#ref-for-sec-hostensurecancompilestrings", "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A6", @@ -955,7 +942,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-trustedscript", "https://www.w3.org/TR/CSP3/#ref-for-trustedscript-data", "https://www.w3.org/TR/CSP3/#ref-for-list-size", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-the-range", "https://www.w3.org/TR/CSP3/#ref-for-implements%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-trustedscript%E2%91%A0", @@ -968,7 +955,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-exceptiondef-evalerror", "https://www.w3.org/TR/CSP3/#ref-for-exceptiondef-evalerror%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-concept-realm-global", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A6", @@ -984,7 +971,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-list-contain%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-report-sample%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-violation-sample%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/CSP3/#wasm-integration", "https://www.w3.org/TR/CSP3/#ref-for-host-ensure-can-compile-wasm-bytes", "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A8", @@ -997,7 +984,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-realm%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-exceptiondef-compileerror", "https://www.w3.org/TR/CSP3/#ref-for-concept-realm-global%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A8", @@ -1013,7 +1000,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-ascii-case-insensitive%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-wasm-unsafe-eval", "https://www.w3.org/TR/CSP3/#ref-for-violation-resource%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-exceptiondef-compileerror%E2%91%A0", "https://www.w3.org/TR/CSP3/#reporting", "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A1%E2%91%A4", @@ -1228,9 +1215,9 @@ "https://www.w3.org/TR/CSP3/#obtain-violation-blocked-uri", "https://www.w3.org/TR/CSP3/#ref-for-dom-securitypolicyviolationevent-blockeduri", "https://www.w3.org/TR/CSP3/#ref-for-violation-resource%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A6", + "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-concept-url", - "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A7", + "https://www.w3.org/TR/CSP3/#ref-for-string%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-concept-url%E2%91%A0", "https://www.w3.org/TR/CSP3/#deprecated-serialize-violation", "https://www.w3.org/TR/CSP3/#ref-for-violation%E2%91%A1%E2%91%A0", @@ -1243,7 +1230,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-violation-effective-directive%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-serialized-csp%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-violation-policy%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-violation-policy%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-violation-status%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-violation-sample%E2%91%A3", @@ -1320,14 +1307,14 @@ "https://www.w3.org/TR/CSP3/#ref-for-dom-securitypolicyviolationevent-effectivedirective%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-dom-securitypolicyviolationevent-violateddirective%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-violation-policy%E2%91%A5", - "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A6", + "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-report-uri%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-violation-policy%E2%91%A6", - "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A7", + "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-report-to%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-directive-value%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-concept-url-parser", "https://www.w3.org/TR/CSP3/#ref-for-violation-url%E2%91%A1", @@ -1354,7 +1341,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-concept-request-mode", "https://www.w3.org/TR/CSP3/#ref-for-concept-fetch", "https://www.w3.org/TR/CSP3/#ref-for-violation-policy%E2%91%A7", - "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A8", + "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-report-to%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-cspviolationreportbody", @@ -1948,19 +1935,19 @@ "https://www.w3.org/TR/CSP3/#ref-for-document%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-the-base-element%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-attr-base-href%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-global-object%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-global-object-csp-list%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/CSP3/#ref-for-policy-directive-set%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-directive-value%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-policy-self-origin%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-global-object%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-base-uri", "https://www.w3.org/TR/CSP3/#ref-for-violation-resource%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-an-iframe-srcdoc-document", "https://www.w3.org/TR/CSP3/#directive-sandbox", "https://www.w3.org/TR/CSP3/#sandbox", @@ -1987,7 +1974,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-document%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-global-object%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-workerglobalscope%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-sandboxing-flag-set", "https://www.w3.org/TR/CSP3/#ref-for-parse-a-sandboxing-directive", @@ -2068,7 +2055,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-frame-ancestors%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-policy-disposition%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-x-frame-options%E2%91%A2", "https://www.w3.org/TR/CSP3/#directives-reporting", "https://www.w3.org/TR/CSP3/#ref-for-violation%E2%91%A1%E2%91%A2", @@ -2145,7 +2132,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-initiator%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-directive-pre-request-check%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/CSP3/#does-resource-hint-violate-policy", "https://www.w3.org/TR/CSP3/#ref-for-concept-request%E2%91%A4%E2%91%A4", @@ -2153,13 +2140,13 @@ "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-directives%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/CSP3/#ref-for-directive-pre-request-check%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/CSP3/#match-nonce-to-source-list", "https://www.w3.org/TR/CSP3/#ref-for-concept-request%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-nonce-metadata%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-source-lists%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-nonce-source%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-string-is", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-base64-value%E2%91%A3", @@ -2169,7 +2156,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-source-lists%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-source-expression%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-hash-source%E2%91%A3", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-source-expression%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-hash-algorithm%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-ascii-case-insensitive%E2%91%A5", @@ -2204,7 +2191,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-list-is-empty%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-list-size%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-ascii-case-insensitive%E2%91%A6", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-match-url-to-source-expression%E2%91%A0", "https://www.w3.org/TR/CSP3/#match-url-to-source-expression", "https://www.w3.org/TR/CSP3/#ref-for-match-url-to-source-expression%E2%91%A1", @@ -2326,7 +2313,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-concept-url-path%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-path-part-match%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-strictly-split%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-string-percent-decode", "https://www.w3.org/TR/CSP3/#ref-for-string-percent-decode%E2%91%A0", "https://www.w3.org/TR/CSP3/#matching-elements", @@ -2334,7 +2321,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-element%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-nonce-source%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-script%E2%91%A5", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-concept-element-attribute", "https://www.w3.org/TR/CSP3/#ref-for-ascii-case-insensitive%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-ascii-case-insensitive%E2%91%A0%E2%91%A7", @@ -2353,7 +2340,7 @@ "https://www.w3.org/TR/CSP3/#ref-for-grammardef-keyword-source%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-unsafe-inline%E2%91%A0", "https://www.w3.org/TR/CSP3/#ref-for-source-lists%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-nonce-source%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-hash-source%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-keyword-source%E2%91%A2", @@ -2372,20 +2359,20 @@ "https://www.w3.org/TR/CSP3/#match-element-to-source-list", "https://www.w3.org/TR/CSP3/#ref-for-element%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/CSP3/#ref-for-source-lists%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-nonce-source%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-attr-nonce", "https://www.w3.org/TR/CSP3/#ref-for-string-is%E2%91%A1", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-base64-value%E2%91%A5", "https://www.w3.org/TR/CSP3/#ref-for-script%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-the-style-element%E2%91%A0", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/CSP3/#ref-for-ascii-case-insensitive%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-keyword-source%E2%91%A4", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-unsafe-hashes", "https://www.w3.org/TR/CSP3/#ref-for-utf-8-encode", "https://www.w3.org/TR/CSP3/#ref-for-javascript-string-convert", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-hash-source%E2%91%A6", "https://www.w3.org/TR/CSP3/#ref-for-grammardef-hash-algorithm%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-ascii-case-insensitive%E2%91%A1%E2%91%A0", @@ -2417,9 +2404,7 @@ "https://www.w3.org/TR/CSP3/#infopanel-for-request-effective-directive", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-request-effective-directive", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-initiator%E2%91%A1", - "https://www.w3.org/TR/CSP3/#ref-for-concept-request-initiator%E2%91%A2", "https://www.w3.org/TR/CSP3/#ref-for-concept-request-destination%E2%91%A5", - "https://www.w3.org/TR/CSP3/#ref-for-concept-request-destination%E2%91%A6", "https://www.w3.org/TR/CSP3/#effective-directive-for-inline-check", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/CSP3/#ref-for-request-effective-directive", @@ -2432,7 +2417,7 @@ "https://www.w3.org/TR/CSP3/#should-directive-execute", "https://www.w3.org/TR/CSP3/#ref-for-fetch-directives%E2%91%A3", "https://www.w3.org/TR/CSP3/#ref-for-content-security-policy-object%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/CSP3/#ref-for-list-iterate%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/CSP3/#ref-for-directive-name%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/CSP3/#security-considerations", "https://www.w3.org/TR/CSP3/#security-nonces", @@ -2582,6 +2567,11 @@ "https://www.w3.org/TR/CSP3/#index", "https://www.w3.org/TR/CSP3/#index-defined-here", "https://www.w3.org/TR/CSP3/#index-defined-elsewhere", + "https://www.w3.org/TR/CSP3/#6d126909", + "https://www.w3.org/TR/CSP3/#infopanel-for-6d126909", + "https://www.w3.org/TR/CSP3/#infopaneltitle-for-6d126909", + "https://www.w3.org/TR/CSP3/#infopanel-for-6d126909", + "https://www.w3.org/TR/CSP3/#infopaneltitle-for-6d126909", "https://www.w3.org/TR/CSP3/#3eef835e", "https://www.w3.org/TR/CSP3/#infopanel-for-3eef835e", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-3eef835e", @@ -3197,11 +3187,6 @@ "https://www.w3.org/TR/CSP3/#infopaneltitle-for-29964c8b", "https://www.w3.org/TR/CSP3/#infopanel-for-29964c8b", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-29964c8b", - "https://www.w3.org/TR/CSP3/#53275e46", - "https://www.w3.org/TR/CSP3/#infopanel-for-53275e46", - "https://www.w3.org/TR/CSP3/#infopaneltitle-for-53275e46", - "https://www.w3.org/TR/CSP3/#infopanel-for-53275e46", - "https://www.w3.org/TR/CSP3/#infopaneltitle-for-53275e46", "https://www.w3.org/TR/CSP3/#a3b18719", "https://www.w3.org/TR/CSP3/#infopanel-for-a3b18719", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-a3b18719", @@ -3327,11 +3312,6 @@ "https://www.w3.org/TR/CSP3/#infopaneltitle-for-23cac254", "https://www.w3.org/TR/CSP3/#infopanel-for-23cac254", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-23cac254", - "https://www.w3.org/TR/CSP3/#b29084c6", - "https://www.w3.org/TR/CSP3/#infopanel-for-b29084c6", - "https://www.w3.org/TR/CSP3/#infopaneltitle-for-b29084c6", - "https://www.w3.org/TR/CSP3/#infopanel-for-b29084c6", - "https://www.w3.org/TR/CSP3/#infopaneltitle-for-b29084c6", "https://www.w3.org/TR/CSP3/#54627f47", "https://www.w3.org/TR/CSP3/#infopanel-for-54627f47", "https://www.w3.org/TR/CSP3/#infopaneltitle-for-54627f47", @@ -3659,6 +3639,7 @@ "https://www.w3.org/TR/CSP3/#infopaneltitle-for-f48ea995", "https://www.w3.org/TR/CSP3/#references", "https://www.w3.org/TR/CSP3/#normative", + "https://www.w3.org/TR/CSP3/#biblio-csp3", "https://www.w3.org/TR/CSP3/#biblio-css-cascade-5", "https://www.w3.org/TR/CSP3/#biblio-cssom", "https://www.w3.org/TR/CSP3/#biblio-dom", diff --git a/tr/ids/IndexedDB-3.json b/tr/ids/IndexedDB-3.json index 9f31ccc9889a..ae4f08a0ac38 100644 --- a/tr/ids/IndexedDB-3.json +++ b/tr/ids/IndexedDB-3.json @@ -7,6 +7,7 @@ "https://www.w3.org/TR/IndexedDB-3/#toc-nav", "https://www.w3.org/TR/IndexedDB-3/#toc-jump", "https://www.w3.org/TR/IndexedDB-3/#toc-toggle", + "https://www.w3.org/TR/IndexedDB-3/#toc-theme-toggle", "https://www.w3.org/TR/IndexedDB-3/#title", "https://www.w3.org/TR/IndexedDB-3/#w3c-state", "https://www.w3.org/TR/IndexedDB-3/#abstract", @@ -942,6 +943,7 @@ "https://www.w3.org/TR/IndexedDB-3/#ref-for-invalidaccesserror", "https://www.w3.org/TR/IndexedDB-3/#ref-for-invalidstateerror", "https://www.w3.org/TR/IndexedDB-3/#ref-for-notfounderror", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-notreadableerror", "https://www.w3.org/TR/IndexedDB-3/#ref-for-quotaexceedederror", "https://www.w3.org/TR/IndexedDB-3/#ref-for-syntaxerror", "https://www.w3.org/TR/IndexedDB-3/#ref-for-readonlyerror", @@ -3837,14 +3839,21 @@ "https://www.w3.org/TR/IndexedDB-3/#ref-for-array-key%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/IndexedDB-3/#object-store-retrieval-operation", "https://www.w3.org/TR/IndexedDB-3/#retrieve-a-value-from-an-object-store", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/IndexedDB-3/#ref-for-object-store-record%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/IndexedDB-3/#ref-for-object-store-list-of-records%E2%91%A0", "https://www.w3.org/TR/IndexedDB-3/#ref-for-key%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/IndexedDB-3/#ref-for-in%E2%91%A1", "https://www.w3.org/TR/IndexedDB-3/#ref-for-value%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-dfn-create-exception%E2%91%A7", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-notreadableerror%E2%91%A0", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/IndexedDB-3/#ref-for-sec-algorithm-conventions%E2%91%A3", "https://www.w3.org/TR/IndexedDB-3/#ref-for-structureddeserialize%E2%91%A1", "https://www.w3.org/TR/IndexedDB-3/#retrieve-multiple-values-from-an-object-store", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-sequence%E2%91%A5", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-any%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/IndexedDB-3/#ref-for-list%E2%91%A5", "https://www.w3.org/TR/IndexedDB-3/#ref-for-object-store-record%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/IndexedDB-3/#ref-for-object-store-list-of-records%E2%91%A1", @@ -3853,10 +3862,13 @@ "https://www.w3.org/TR/IndexedDB-3/#ref-for-list%E2%91%A6", "https://www.w3.org/TR/IndexedDB-3/#ref-for-list-iterate%E2%91%A3", "https://www.w3.org/TR/IndexedDB-3/#ref-for-value%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-dfn-create-exception%E2%91%A8", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-notreadableerror%E2%91%A1", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/IndexedDB-3/#ref-for-sec-algorithm-conventions%E2%91%A4", "https://www.w3.org/TR/IndexedDB-3/#ref-for-structureddeserialize%E2%91%A2", - "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-sequence%E2%91%A5", - "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-any%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-sequence%E2%91%A6", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-any%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/IndexedDB-3/#retrieve-a-key-from-an-object-store", "https://www.w3.org/TR/IndexedDB-3/#ref-for-object-store-record%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/IndexedDB-3/#ref-for-object-store-list-of-records%E2%91%A2", @@ -3871,8 +3883,8 @@ "https://www.w3.org/TR/IndexedDB-3/#ref-for-list%E2%91%A7", "https://www.w3.org/TR/IndexedDB-3/#ref-for-list-iterate%E2%91%A4", "https://www.w3.org/TR/IndexedDB-3/#ref-for-convert-a-key-to-a-value%E2%91%A4", - "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-sequence%E2%91%A6", - "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-any%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-sequence%E2%91%A7", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-any%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/IndexedDB-3/#index-retrieval-operation", "https://www.w3.org/TR/IndexedDB-3/#retrieve-a-referenced-value-from-an-index", "https://www.w3.org/TR/IndexedDB-3/#ref-for-object-store-record%E2%91%A7%E2%91%A2", @@ -3892,8 +3904,8 @@ "https://www.w3.org/TR/IndexedDB-3/#ref-for-index-referenced-value%E2%91%A4", "https://www.w3.org/TR/IndexedDB-3/#ref-for-sec-algorithm-conventions%E2%91%A6", "https://www.w3.org/TR/IndexedDB-3/#ref-for-structureddeserialize%E2%91%A4", - "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-sequence%E2%91%A7", - "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-any%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-sequence%E2%91%A8", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-any%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/IndexedDB-3/#ref-for-index-values", "https://www.w3.org/TR/IndexedDB-3/#ref-for-index-records%E2%91%A1", "https://www.w3.org/TR/IndexedDB-3/#ref-for-object-store-record%E2%91%A7%E2%91%A4", @@ -3913,8 +3925,8 @@ "https://www.w3.org/TR/IndexedDB-3/#ref-for-list%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/IndexedDB-3/#ref-for-list-iterate%E2%91%A6", "https://www.w3.org/TR/IndexedDB-3/#ref-for-convert-a-key-to-a-value%E2%91%A6", - "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-sequence%E2%91%A8", - "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-any%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-sequence%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-any%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/IndexedDB-3/#object-store-deletion-operation", "https://www.w3.org/TR/IndexedDB-3/#delete-records-from-an-object-store", "https://www.w3.org/TR/IndexedDB-3/#ref-for-object-store-list-of-records%E2%91%A4", @@ -4205,6 +4217,7 @@ "https://www.w3.org/TR/IndexedDB-3/#ref-for-dom-idbtransaction-durability%E2%91%A2", "https://www.w3.org/TR/IndexedDB-3/#ref-for-transaction-live%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/IndexedDB-3/#ref-for-upgrade-a-database%E2%91%A3", + "https://www.w3.org/TR/IndexedDB-3/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/IndexedDB-3/#acknowledgements", "https://www.w3.org/TR/IndexedDB-3/#w3c-conformance", "https://www.w3.org/TR/IndexedDB-3/#w3c-conventions", @@ -4246,7 +4259,7 @@ "https://www.w3.org/TR/IndexedDB-3/#8f7667e0", "https://www.w3.org/TR/IndexedDB-3/#a5f015e3", "https://www.w3.org/TR/IndexedDB-3/#d609dea6", - "https://www.w3.org/TR/IndexedDB-3/#895ed988", + "https://www.w3.org/TR/IndexedDB-3/#62d5a433", "https://www.w3.org/TR/IndexedDB-3/#06137087", "https://www.w3.org/TR/IndexedDB-3/#c4df1374", "https://www.w3.org/TR/IndexedDB-3/#119fb4df", @@ -4305,6 +4318,7 @@ "https://www.w3.org/TR/IndexedDB-3/#797018a7", "https://www.w3.org/TR/IndexedDB-3/#c807e273", "https://www.w3.org/TR/IndexedDB-3/#9eda9b58", + "https://www.w3.org/TR/IndexedDB-3/#0be3911e", "https://www.w3.org/TR/IndexedDB-3/#bdbd19d1", "https://www.w3.org/TR/IndexedDB-3/#5e129c74", "https://www.w3.org/TR/IndexedDB-3/#93d2e29e", @@ -4350,5666 +4364,6 @@ "https://www.w3.org/TR/IndexedDB-3/#biblio-charmod-norm", "https://www.w3.org/TR/IndexedDB-3/#biblio-cookies", "https://www.w3.org/TR/IndexedDB-3/#biblio-webstorage", - "https://www.w3.org/TR/IndexedDB-3/#idl-index", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-36333997", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-36333997", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-47574099", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-47574099", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-80726755", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-80726755", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-85394472", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-85394472", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-129bdae8", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-129bdae8", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-44a7708c", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-44a7708c", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-2bc0cdf4", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-2bc0cdf4", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-0c0ceb78", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-0c0ceb78", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-8c407366", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-8c407366", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-2e9f6464", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-2e9f6464", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-8abfc3b6", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-8abfc3b6", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-1372f92a", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-1372f92a", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-26b82890", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-26b82890", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-5fd23811", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-5fd23811", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-a7257e38", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-a7257e38", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-fefe0433", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-fefe0433", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-9d09d04c", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-9d09d04c", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-b5eaabb9", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-b5eaabb9", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-5456c8a8", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-5456c8a8", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-f426b2a9", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-f426b2a9", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-d2c61922", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-d2c61922", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-8c8cc336", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-8c8cc336", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-abf85593", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-abf85593", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-020eb03c", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-020eb03c", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-5f9c7266", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-5f9c7266", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-a6e67972", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-a6e67972", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-7716447b", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-7716447b", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-9032aa9e", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-9032aa9e", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-17acf60b", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-17acf60b", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-4a854a91", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-4a854a91", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-c6bfef29", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-c6bfef29", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-8c491ba9", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-8c491ba9", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-614f2b27", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-614f2b27", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-8f7667e0", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-8f7667e0", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-a5f015e3", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-a5f015e3", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-d609dea6", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-d609dea6", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-895ed988", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-895ed988", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-06137087", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-06137087", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-c4df1374", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-c4df1374", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-119fb4df", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-119fb4df", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-7e1d7596", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-7e1d7596", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-c5019b63", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-c5019b63", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-9784d14c", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-9784d14c", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-3935e4b5", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-3935e4b5", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-49d6d0a2", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-49d6d0a2", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-18fe3a3b", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-18fe3a3b", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-f0951476", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-f0951476", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-56d576c8", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-56d576c8", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-0800bdf4", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-0800bdf4", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-f534ab0c", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-f534ab0c", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-5f6d392d", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-5f6d392d", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-0d0390b4", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-0d0390b4", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cc2ecc32", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cc2ecc32", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-9d386f55", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-9d386f55", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-03675365", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-03675365", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-c6d19e56", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-c6d19e56", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-a72449dd", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-a72449dd", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-086e3aff", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-086e3aff", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-9a517a7d", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-9a517a7d", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-9c4c1e66", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-9c4c1e66", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-0a422d04", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-0a422d04", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-53275e46", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-53275e46", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-a3b18719", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-a3b18719", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-77b4c09a", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-77b4c09a", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-f5354b9d", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-f5354b9d", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-6e4c081e", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-6e4c081e", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-3de9e659", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-3de9e659", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-4135591f", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-4135591f", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-ae8def21", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-ae8def21", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-16d07e10", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-16d07e10", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-5afbefcd", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-5afbefcd", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-649608b9", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-649608b9", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-15e48c39", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-15e48c39", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-0204d188", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-0204d188", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-5ecc2082", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-5ecc2082", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-7a3dbdb1", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-7a3dbdb1", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-0698d556", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-0698d556", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-c9858f6e", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-c9858f6e", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-6148dd37", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-6148dd37", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-7f6a70d1", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-7f6a70d1", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-d25dfb2c", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-d25dfb2c", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-2f8afbfe", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-2f8afbfe", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-48c6127a", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-48c6127a", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dca2de17", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dca2de17", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-8855a9aa", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-8855a9aa", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-d54f5897", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-d54f5897", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-24fec0b4", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-24fec0b4", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-c01cbda0", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-c01cbda0", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-889e932f", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-889e932f", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-37afd48d", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-37afd48d", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-797018a7", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-797018a7", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-c807e273", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-c807e273", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-9eda9b58", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-9eda9b58", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-bdbd19d1", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-bdbd19d1", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-5e129c74", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-5e129c74", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-93d2e29e", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-93d2e29e", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-a5c91173", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-a5c91173", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-c3e881ef", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-c3e881ef", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-be2d2b4c", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-be2d2b4c", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-d6b0abab", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-d6b0abab", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-82ca3efc", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-82ca3efc", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-95d7775a", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-95d7775a", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-81dd847b", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-81dd847b", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-ea70ff86", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-ea70ff86", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dacde8b5", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dacde8b5", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-d0b4a948", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-d0b4a948", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-6c6b1005", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-6c6b1005", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-5372cca8", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-5372cca8", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-b05bf85d", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-b05bf85d", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-f4813f78", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-f4813f78", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-6a73c310", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-6a73c310", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-92d13070", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-92d13070", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-7787d359", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-7787d359", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-b262501e", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-b262501e", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-3b90bdcd", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-3b90bdcd", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-9cce47fd", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-9cce47fd", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-3b5f2424", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-3b5f2424", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-4013a022", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-4013a022", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-b4cfa5ce", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-b4cfa5ce", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-5f90bbfb", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-5f90bbfb", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-11e0b87f", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-11e0b87f", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-e97a9688", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-e97a9688", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-f14b47b8", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-f14b47b8", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-create-a-sorted-name-list", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-create-a-sorted-name-list", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-database", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-database", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-database-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-database-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-database-version", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-database-version", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-database-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-database-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-connection", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-connection", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-connection-version", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-connection-version", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-connection-object-store-set", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-connection-object-store-set", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-eventdef-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-eventdef-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-out-of-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-out-of-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-object-store-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-object-store-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-value", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-value", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-type", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-type", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-value", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-value", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-array-key", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-array-key", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-subkeys", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-subkeys", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-compare-two-keys", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-compare-two-keys", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-greater-than", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-greater-than", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-less-than", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-less-than", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-equal-to", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-equal-to", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-valid-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-valid-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-identifier", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-identifier", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-concept", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-concept", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-records", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-records", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-values", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-values", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-keys", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-keys", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-handle", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-handle", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-handle-object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-handle-object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-index-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-index-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-connection", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-connection", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-durability-hint", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-durability-hint", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-cleanup-event-loop", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-cleanup-event-loop", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-error", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-error", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-lifetime", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-lifetime", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cleanup-indexed-database-transactions", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cleanup-indexed-database-transactions", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-eventdef-idbtransaction-complete", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-eventdef-idbtransaction-complete", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-eventdef-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-eventdef-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request-processed", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request-processed", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request-source", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request-source", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request-result", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request-result", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request-error", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request-error", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request-placed", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request-placed", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-connection-queue", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-connection-queue", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-range", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-range", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-containing-only", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-containing-only", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-in", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-in", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-generator", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-generator", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-generate-a-key", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-generate-a-key", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-possibly-update-the-key-generator", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-possibly-update-the-key-generator", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-enumdef-idbrequestreadystate", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-enumdef-idbrequestreadystate", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbrequestreadystate-pending", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbrequestreadystate-pending", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbrequestreadystate-done", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbrequestreadystate-done", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbrequest-source", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbrequest-source", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbrequest-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbrequest-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbrequest-readystate", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbrequest-readystate", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbrequest-onsuccess", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbrequest-onsuccess", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbrequest-onerror", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbrequest-onerror", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbopendbrequest-onblocked", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbopendbrequest-onblocked", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbopendbrequest-onupgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbopendbrequest-onupgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbversionchangeevent", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbversionchangeevent", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dictdef-idbversionchangeeventinit", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dictdef-idbversionchangeeventinit", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbversionchangeevent-oldversion", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbversionchangeevent-oldversion", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbversionchangeevent-newversion", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbversionchangeevent-newversion", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-windoworworkerglobalscope-indexeddb", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-windoworworkerglobalscope-indexeddb", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbfactory", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbfactory", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dictdef-idbdatabaseinfo", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dictdef-idbdatabaseinfo", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabaseinfo-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabaseinfo-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabaseinfo-version", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabaseinfo-version", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbfactory-deletedatabase", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbfactory-deletedatabase", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbfactory-databases", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbfactory-databases", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbfactory-cmp", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbfactory-cmp", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-enumdef-idbtransactiondurability", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-enumdef-idbtransactiondurability", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransactiondurability-default", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransactiondurability-default", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransactiondurability-relaxed", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransactiondurability-relaxed", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dictdef-idbtransactionoptions", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dictdef-idbtransactionoptions", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dictdef-idbobjectstoreparameters", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dictdef-idbobjectstoreparameters", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstoreparameters-keypath", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstoreparameters-keypath", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstoreparameters-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstoreparameters-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-version", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-version", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-createobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-createobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-deleteobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-deleteobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-onabort", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-onabort", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-onclose", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-onclose", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-onerror", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-onerror", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbdatabase-onversionchange", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbdatabase-onversionchange", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dictdef-idbindexparameters", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dictdef-idbindexparameters", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindexparameters-unique", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindexparameters-unique", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindexparameters-multientry", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindexparameters-multientry", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-keypath", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-keypath", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-put", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-put", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-add", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-add", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-add-or-put", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-add-or-put", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-delete", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-delete", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-clear", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-clear", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-get", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-get", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-getkey", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-getkey", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-getall", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-getall", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-count", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-count", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-index", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-index", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbobjectstore-deleteindex", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbobjectstore-deleteindex", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbindex", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbindex", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-keypath", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-keypath", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-multientry", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-multientry", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-unique", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-unique", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-get", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-get", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-getkey", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-getkey", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-getall", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-getall", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-count", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-count", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbindex-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbindex-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbkeyrange-lower", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbkeyrange-lower", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbkeyrange-upper", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbkeyrange-upper", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbkeyrange-loweropen", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbkeyrange-loweropen", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbkeyrange-upperopen", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbkeyrange-upperopen", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbkeyrange-only", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbkeyrange-only", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbkeyrange-lowerbound", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbkeyrange-lowerbound", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbkeyrange-upperbound", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbkeyrange-upperbound", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbkeyrange-bound", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbkeyrange-bound", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbkeyrange-includes", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbkeyrange-includes", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-source", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-source", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-key", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-key", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-primarykey", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-primarykey", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-request", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-request", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-advance", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-advance", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-continueprimarykey", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-continueprimarykey", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-update", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-update", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursor-delete", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursor-delete", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbcursorwithvalue", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbcursorwithvalue", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbcursorwithvalue-value", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbcursorwithvalue-value", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-enumdef-idbtransactionmode", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-enumdef-idbtransactionmode", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransactionmode-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransactionmode-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-durability", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-durability", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-db", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-db", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-error", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-error", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-onabort", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-onabort", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-oncomplete", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-oncomplete", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-dom-idbtransaction-onerror", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-dom-idbtransaction-onerror", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-open-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-open-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-close-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-close-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-delete-a-database", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-delete-a-database", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-commit-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-commit-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-upgrade-a-database", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-upgrade-a-database", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-abort-an-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-abort-an-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-fire-a-success-event", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-fire-a-success-event", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-fire-an-error-event", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-fire-an-error-event", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-clone", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-clone", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-store-a-record-into-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-store-a-record-into-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-retrieve-a-value-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-retrieve-a-value-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-retrieve-multiple-values-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-retrieve-multiple-values-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-retrieve-a-key-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-retrieve-a-key-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-retrieve-multiple-keys-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-retrieve-multiple-keys-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-retrieve-a-referenced-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-retrieve-a-referenced-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-retrieve-multiple-referenced-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-retrieve-multiple-referenced-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-retrieve-a-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-retrieve-a-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-retrieve-multiple-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-retrieve-multiple-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-delete-records-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-delete-records-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-count-the-records-in-a-range", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-count-the-records-in-a-range", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-clear-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-clear-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-extract-a-key-from-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-extract-a-key-from-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-evaluate-a-key-path-on-a-value", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-evaluate-a-key-path-on-a-value", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-check-that-a-key-could-be-injected-into-a-value", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-check-that-a-key-could-be-injected-into-a-value", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-inject-a-key-into-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-inject-a-key-into-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#infopanel-for-convert-a-value-to-a-multientry-key", - "https://www.w3.org/TR/IndexedDB-3/#infopaneltitle-for-convert-a-value-to-a-multientry-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindexparameters-unique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindexparameters-unique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindexparameters-unique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindexparameters-unique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindexparameters-unique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-upgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-success", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbopendbrequest-blocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523string", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523string", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMString", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-sort-in-ascending-order", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-sort-in-ascending-order", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523code-unit-less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523code-unit-less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523code-unit-less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523code-unit-less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcommon-dom-interfaces.html%2523domstringlist", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array.prototype.sort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array.prototype.sort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Findexed-collections.html%2523sec-array-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ftext-processing.html%2523sec-string-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ftext-processing.html%2523sec-string-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ftext-processing.html%2523sec-string-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ftext-processing.html%2523sec-string-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ftext-processing.html%2523sec-string-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523document", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523document", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fbrowsers.html%2523dom-document-domain", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fbrowsers.html%2523dom-document-domain", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-an-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-an-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-an-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-an-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523close-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523close-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523close-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523close-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523close-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523close-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523close-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-close-pending-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-live", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523get-the-parent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523get-the-parent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523get-the-parent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523get-the-parent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523get-the-parent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523greater-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-concept", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523serializable-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523serializable-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fnumbers-and-dates.html%2523sec-date-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fnumbers-and-dates.html%2523sec-date-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fnumbers-and-dates.html%2523sec-date-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fnumbers-and-dates.html%2523sec-date-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fnumbers-and-dates.html%2523sec-date-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fnumbers-and-dates.html%2523sec-date-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ffundamental-objects.html%2523sec-object-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ffundamental-objects.html%2523sec-object-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ffundamental-objects.html%2523sec-object-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ffundamental-objects.html%2523sec-object-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ffundamental-objects.html%2523sec-object-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ffundamental-objects.html%2523sec-object-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ffundamental-objects.html%2523sec-object-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-file", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-file", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-file", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-file", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-file", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-file", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-file", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-Blob", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-Blob", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-Blob", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-Blob", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-Blob", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-Blob", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcanvas.html%2523imagedata", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcanvas.html%2523imagedata", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fcanvas.html%2523imagedata", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-record", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structuredserializeforstorage", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structuredserializeforstorage", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structuredserializeforstorage", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structuredserializeforstorage", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structuredserializeforstorage", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structuredserializeforstorage", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structuredserializeforstorage", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unrestricted-double", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unrestricted-double", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523byte-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523byte-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fnumbers-and-dates.html%2523sec-number-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fnumbers-and-dates.html%2523sec-number-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fnumbers-and-dates.html%2523sec-number-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-ArrayBuffer", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-ArrayBuffer", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-Uint8Array", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-Uint8Array", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523array-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-item", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-item", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-item", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-item", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-item", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523assert", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523byte-less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523byte-less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523byte-less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523compare-two-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523compare-two-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523compare-two-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523compare-two-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523compare-two-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523compare-two-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523compare-two-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523byte", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523byte", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-byte", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-byte", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523prod-IdentifierName", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523prod-IdentifierName", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523identifier", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523identifier", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523identifier", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-size", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-lastModified", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-lastModified", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwww.w3.org%252FTR%252FFileAPI%252F%2523dfn-lastModified", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523extract-a-key-from-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523extract-a-key-from-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523extract-a-key-from-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523extract-a-key-from-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523extract-a-key-from-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523extract-a-key-from-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-referenced-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-multientry-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523subkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523subkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523subkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523subkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523subkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523subkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523subkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523subkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523ordered-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523ordered-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523ordered-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523ordered-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523ordered-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523ordered-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523ordered-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523ordered-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-scope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readonly", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-only-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-start", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-overlap", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-readwrite", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionmode-versionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-durability-hint", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-durability-hint", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-durability-hint", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-durability-hint", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-durability-hint", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-durability-hint", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-strict", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-relaxed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-relaxed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-relaxed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-relaxed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-relaxed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-relaxed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-relaxed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-default", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-default", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-default", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-default", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-default", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-default", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactiondurability-default", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-bucket", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523storage-bucket", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-complete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-complete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-complete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-complete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-complete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-complete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-complete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-created", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-state", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-active", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523queue-a-task", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-dispatch", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-dispatch", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-dispatch", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-dispatch", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-dispatch", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-inactive", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-finished", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-commit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-committing", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523abort-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-placed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-placed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-placed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-cleanup-event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-cleanup-event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-cleanup-event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-cleanup-event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-cleanup-event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-cleanup-event-loop", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-read-write-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523upgrade-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523open-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523open-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523open-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523open-a-database-connection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-processed-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-done-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523asynchronously-execute-a-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-open-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523request-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-queue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-queue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-queue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-queue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-queue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-queue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-closed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523task-queue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523task-queue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523task-queue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fdocument-sequences.html%2523browsing-context", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fdocument-sequences.html%2523browsing-context", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523equal-to", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523less-than", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-lower-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-range-upper-open-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523in", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523unbounded-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-throw", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dataerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-DOMException", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523containing-only", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523containing-only", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523containing-only", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523containing-only", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-next", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-nextunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-unique-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prev", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursordirection-prevunique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-object-store-position", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-effective-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523key-generator-current-number", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-clear", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-clear", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-clear", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-clear", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-clear", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-clear", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-clear", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-in-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-out-of-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-out-of-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-out-of-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-out-of-line-keys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523constrainterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523aborterror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523datacloneerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523datacloneerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidaccesserror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidaccesserror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidaccesserror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidaccesserror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidaccesserror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidaccesserror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidaccesserror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidaccesserror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523invalidstateerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523notfounderror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523notfounderror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523notfounderror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523notfounderror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523notfounderror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523notfounderror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523notfounderror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523quotaexceedederror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523quotaexceedederror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523quotaexceedederror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523quotaexceedederror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523quotaexceedederror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523quotaexceedederror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523quotaexceedederror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523quotaexceedederror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523syntaxerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523syntaxerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523syntaxerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523syntaxerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523readonlyerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523readonlyerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523readonlyerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523readonlyerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523readonlyerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523readonlyerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523readonlyerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523readonlyerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523readonlyerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523transactioninactiveerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523unknownerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523unknownerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523unknownerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523unknownerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523unknownerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523unknownerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523unknownerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523versionerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523versionerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523versionerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-idl-attributes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523Exposed", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523eventtarget", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523eventtarget", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523eventtarget", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523eventtarget", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523eventtarget", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523eventtarget", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523eventtarget", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-any", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-result", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbtransaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbrequestreadystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbrequestreadystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbrequestreadystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbrequestreadystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbrequestreadystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-readystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-readystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-readystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-readystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-readystate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523eventhandler", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-onsuccess", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-onsuccess", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-onsuccess", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-onsuccess", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequest-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-pending", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-pending", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-pending", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-pending", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-pending", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-done", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-done", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-done", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-done", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbrequestreadystate-done", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523this", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-open", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523event-handler-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbdatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbopendbrequest-onblocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbopendbrequest-onblocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbopendbrequest-onblocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbopendbrequest-onblocked", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbopendbrequest-onupgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbopendbrequest-onupgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbopendbrequest-onupgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbopendbrequest-onupgradeneeded", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbversionchangeeventinit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbversionchangeeventinit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbversionchangeeventinit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbversionchangeeventinit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbversionchangeeventinit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-oldversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-oldversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-oldversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-oldversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-oldversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-oldversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-newversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-newversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-newversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-newversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-newversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbversionchangeevent-newversion", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dictdef-eventinit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dictdef-eventinit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dictdef-eventinit", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-create", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-create", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-create", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-create", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbversionchangeevent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbversionchangeevent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbversionchangeevent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbversionchangeevent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbversionchangeevent", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-bubbles", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-bubbles", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-bubbles", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-bubbles", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-bubbles", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-bubbles", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-bubbles", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-bubbles", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-cancelable", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-cancelable", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-cancelable", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-cancelable", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-cancelable", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-cancelable", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-cancelable", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbfactory", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbfactory", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbfactory", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbfactory", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbfactory", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbfactory", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbfactory", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523windoworworkerglobalscope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523windoworworkerglobalscope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523windoworworkerglobalscope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523windoworworkerglobalscope", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523SameObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-windoworworkerglobalscope-indexeddb", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-windoworworkerglobalscope-indexeddb", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-windoworworkerglobalscope-indexeddb", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-windoworworkerglobalscope-indexeddb", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523NewObject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbopendbrequest", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523EnforceRange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-deletedatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-deletedatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-deletedatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-deletedatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-deletedatabase", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-promise", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-promise", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-promise", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-sequence", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbdatabaseinfo", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbdatabaseinfo", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbdatabaseinfo", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbdatabaseinfo", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbdatabaseinfo", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbdatabaseinfo", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-databases", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-databases", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-databases", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-databases", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-databases", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-databases", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-databases", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-short", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-short", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-short", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-cmp", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-cmp", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-cmp", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-cmp", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbfactory-cmp", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523exceptiondef-typeerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523exceptiondef-typeerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523exceptiondef-typeerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523exceptiondef-typeerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523relevant-settings-object", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523relevant-settings-object", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523relevant-settings-object", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fwebappapis.html%2523relevant-settings-object", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523obtain-a-storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523obtain-a-storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523obtain-a-storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fstorage.spec.whatwg.org%252F%2523obtain-a-storage-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523securityerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523securityerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523securityerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523securityerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Finfrastructure.html%2523in-parallel", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Finfrastructure.html%2523in-parallel", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Finfrastructure.html%2523in-parallel", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Finfrastructure.html%2523in-parallel", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Finfrastructure.html%2523in-parallel", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Finfrastructure.html%2523in-parallel", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-fire", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-fire", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-fire", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-fire", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-fire", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-fire", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-fire", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523concept-event-fire", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-success-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-success-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-success-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-success-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-success-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-an-error-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-an-error-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-an-error-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-an-error-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-an-error-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523delete-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523delete-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523delete-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523delete-a-database", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523fire-a-version-change-event", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523a-promise-rejected-with", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523a-promise-rejected-with", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523a-new-promise", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523a-new-promise", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523reject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523reject", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-iterate", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabaseinfo-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabaseinfo-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabaseinfo-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabaseinfo-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabaseinfo-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabaseinfo-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabaseinfo-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabaseinfo-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-append", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-append", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-append", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-append", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523resolve", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523resolve", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbtransaction-abort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-version", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactionmode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactionmode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactionmode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactionmode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactionmode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactionmode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactionmode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbtransactionoptions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbtransactionoptions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbtransactionoptions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbtransactionoptions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbtransactionoptions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-undefined", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-createobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-createobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-createobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-createobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-createobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-createobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-createobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbobjectstoreparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbobjectstoreparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbobjectstoreparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbobjectstoreparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbobjectstoreparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-deleteobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-deleteobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-deleteobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-deleteobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-deleteobjectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onabort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onabort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onabort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onabort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onclose", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onclose", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onclose", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onclose", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onversionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onversionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onversionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbdatabase-onversionchange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactiondurability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactiondurability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactiondurability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactiondurability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactiondurability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactiondurability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbtransactiondurability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-boolean", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-object-store-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-object-store-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-object-store-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-object-store-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-object-store-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523connection-object-store-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523create-a-sorted-name-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523create-a-sorted-name-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523create-a-sorted-name-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523create-a-sorted-name-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523create-a-sorted-name-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523database-upgrade-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstoreparameters-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstoreparameters-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstoreparameters-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstoreparameters-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523valid-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523valid-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523valid-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523valid-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstoreparameters-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstoreparameters-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstoreparameters-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstoreparameters-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-index-set", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransactionoptions-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-lifetime", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-lifetime", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-lifetime", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-lifetime", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523eventdef-idbdatabase-close", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-indexnames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-autoincrement", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-add", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-add", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-add", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-add", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-add", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-add", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-add", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523idl-unsigned-long", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523enumdef-idbcursordirection", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-createindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbindexparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbindexparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbindexparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbindexparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dictdef-idbindexparameters", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-deleteindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-deleteindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-deleteindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-deleteindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbobjectstore-deleteindex", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523the-given-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523the-given-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523the-given-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523add-or-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523add-or-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523add-or-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523add-or-put", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523clone", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523clone", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523clone", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523clone", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523check-that-a-key-could-be-injected-into-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523check-that-a-key-could-be-injected-into-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523check-that-a-key-could-be-injected-into-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523check-that-a-key-could-be-injected-into-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523store-a-record-into-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523store-a-record-into-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523store-a-record-into-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523store-a-record-into-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523store-a-record-into-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-key-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523delete-records-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523delete-records-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523delete-records-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523delete-records-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523delete-records-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbkeyrange", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523clear-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523clear-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523clear-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-value-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-value-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-value-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fexecutable-code-and-execution-contexts.html%2523current-realm", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-key-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-key-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-key-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-values-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-values-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-values-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-keys-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-keys-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-keys-from-an-object-store", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523count-the-records-in-a-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523count-the-records-in-a-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523count-the-records-in-a-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523count-the-records-in-a-range", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursorwithvalue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursorwithvalue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursorwithvalue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursorwithvalue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursorwithvalue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523idbcursorwithvalue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key-only-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-got-value-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523iterate-a-cursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindexparameters-multientry", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindexparameters-multientry", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindexparameters-multientry", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindexparameters-multientry", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-keypath", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-multientry", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-multientry", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-multientry", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-multientry", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-unique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-unique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-unique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-unique", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-get", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getkey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getall", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-getallkeys", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-count", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-opencursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbindex-openkeycursor", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-name", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-handle-object-store-handle", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-referenced-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-referenced-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-referenced-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-a-value-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-referenced-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-referenced-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-referenced-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523retrieve-multiple-values-from-an-index", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lower", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lower", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lower", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lower", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lower", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upper", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upper", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upper", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upper", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upper", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-loweropen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-loweropen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-loweropen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-loweropen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-loweropen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperopen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperopen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperopen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperopen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperopen", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-only", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-only", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-only", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-only", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-only", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lowerbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lowerbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lowerbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lowerbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lowerbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-lowerbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-upperbound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-bound", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-includes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-includes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-includes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-includes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-includes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbkeyrange-includes", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-key-to-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-source", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-direction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-primarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-primarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-primarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-primarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-primarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-primarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-request", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-advance", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-advance", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-advance", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-advance", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-advance", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-advance", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continue", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continueprimarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continueprimarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continueprimarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continueprimarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continueprimarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-continueprimarykey", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-update", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-update", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-update", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-update", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-update", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursor-delete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursorwithvalue-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursorwithvalue-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursorwithvalue-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursorwithvalue-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursorwithvalue-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbcursorwithvalue-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstorenames", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-mode", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-durability", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-db", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-db", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-db", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-db", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-db", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-objectstore", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-onabort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-onabort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-onabort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-onabort", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-oncomplete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-oncomplete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-oncomplete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-oncomplete", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523dom-idbtransaction-onerror", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-error", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523commit-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523commit-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523commit-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523commit-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523commit-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523commit-a-transaction", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-create-exception", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-create-exception", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-create-exception", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-create-exception", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-create-exception", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-create-exception", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-create-exception", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-create-exception", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-create-exception", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523transaction-request-list", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523canceled-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523canceled-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523canceled-flag", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-preventdefault", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fdom.spec.whatwg.org%252F%2523dom-event-preventdefault", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-algorithm-conventions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fstructured-data.html%2523structureddeserialize", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523generate-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523generate-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523generate-a-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523inject-a-key-into-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523inject-a-key-into-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523inject-a-key-into-a-value-using-a-key-path", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523possibly-update-the-key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523possibly-update-the-key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523possibly-update-the-key-generator", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523object-store-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-list-of-records", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-values", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-values", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523index-values", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523evaluate-a-key-path-on-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523evaluate-a-key-path-on-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523evaluate-a-key-path-on-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523evaluate-a-key-path-on-a-value", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-multientry-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-multientry-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523convert-a-value-to-a-multientry-key", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fecmascript-data-types-and-values.html%2523sec-completion-record-specification-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fecmascript-data-types-and-values.html%2523sec-completion-record-specification-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fecmascript-data-types-and-values.html%2523sec-completion-record-specification-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fecmascript-data-types-and-values.html%2523sec-completion-record-specification-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fecmascript-data-types-and-values.html%2523sec-completion-record-specification-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fecmascript-data-types-and-values.html%2523sec-completion-record-specification-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fecmascript-data-types-and-values.html%2523sec-completion-record-specification-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fecmascript-data-types-and-values.html%2523sec-completion-record-specification-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-tostring", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-tostring", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-createdataproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-createdataproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-createdataproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-createdataproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-createdataproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523strictly-split", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523strictly-split", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523strictly-split", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523strictly-split", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-ecmascript-data-types-and-values", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-ecmascript-data-types-and-values", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-ecmascript-data-types-and-values", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-ecmascript-data-types-and-values", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-ecmascript-data-types-and-values", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-tolength", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-tolength", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-tolength", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-get-o-p", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-get-o-p", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-get-o-p", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-get-o-p", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-get-o-p", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-get-o-p", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-get-o-p", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-get-o-p", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-get-o-p", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-hasownproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-hasownproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-hasownproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-hasownproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fabstract-operations.html%2523sec-hasownproperty", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523byte-sequence-length", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523byte-sequence-length", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-contain", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523list-contain", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-buffer-source-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-buffer-source-type", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-get-buffer-source-copy", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fwebidl.spec.whatwg.org%252F%2523dfn-get-buffer-source-copy", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fordinary-and-exotic-objects-behaviours.html%2523array-exotic-object", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fordinary-and-exotic-objects-behaviours.html%2523array-exotic-object", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fordinary-and-exotic-objects-behaviours.html%2523array-exotic-object", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fordinary-and-exotic-objects-behaviours.html%2523array-exotic-object", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Fordinary-and-exotic-objects-behaviours.html%2523array-exotic-object", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523set-append", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Finfra.spec.whatwg.org%252F%2523set-append", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-returnifabrupt", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.github.io%252Fecma262%252F%2523sec-returnifabrupt", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fbrowsers.html%2523concept-origin", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fbrowsers.html%2523concept-origin", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Fhtml.spec.whatwg.org%252Fmultipage%252Fbrowsers.html%2523concept-origin", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ftext-processing.html%2523sec-regexp-regular-expression-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ftext-processing.html%2523sec-regexp-regular-expression-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-https%253A%252F%252Ftc39.es%252Fecma262%252Fmultipage%252Ftext-processing.html%2523sec-regexp-regular-expression-objects", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cleanup-indexed-database-transactions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cleanup-indexed-database-transactions", - "https://www.w3.org/TR/IndexedDB-3/#ref-hint-for-%2523cleanup-indexed-database-transactions" + "https://www.w3.org/TR/IndexedDB-3/#idl-index" ] } \ No newline at end of file diff --git a/tr/ids/vc-data-integrity.json b/tr/ids/vc-data-integrity.json index c1de282051fd..9e10adddf0a5 100644 --- a/tr/ids/vc-data-integrity.json +++ b/tr/ids/vc-data-integrity.json @@ -92,6 +92,7 @@ "https://www.w3.org/TR/vc-data-integrity/#example-a-simple-signed-json-ld-data-document", "https://www.w3.org/TR/vc-data-integrity/#issue-container-generatedID-0", "https://www.w3.org/TR/vc-data-integrity/#h-note-0", + "https://www.w3.org/TR/vc-data-integrity/#example-a-data-document-with-an-attached-proof-that-uses-the-expires-property", "https://www.w3.org/TR/vc-data-integrity/#proof-sets", "https://www.w3.org/TR/vc-data-integrity/#x2-1-1-proof-sets", "https://www.w3.org/TR/vc-data-integrity/#dfn-proof-set", diff --git a/tr/ids/vc-data-model-2.0.json b/tr/ids/vc-data-model-2.0.json index 8daac7376f1a..eed93a7915bc 100644 --- a/tr/ids/vc-data-model-2.0.json +++ b/tr/ids/vc-data-model-2.0.json @@ -468,16 +468,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab1jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab1cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab1sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-1xnr5ei-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-1xnr5ei-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-1xnr5ei-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-1xnr5ei-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-1xnr5ei-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-1xnr5ei-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-lYIf6J9YkniuAHpkXOuxDPUYJLbk39jj_mbLqgu2A0I", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-t-7VPQ8jqAMa4FqXz43iCXWdD_xf2YFBmJJStWWM3rU", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-co6A0B-MhqqPVdP5j1dhWYiRG2Swo_2JdEffv5ly1Ik", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ZKzDsi-jlcAdZXvGuiaSF7IKTHBr2KCCjPTFTJRWEHA", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-gfw43rb-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-gfw43rb-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-gfw43rb-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-gfw43rb-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-gfw43rb-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-gfw43rb-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-2rwDfHkqJY10fACvPj7-6Jw_E8yJ5Rk9SyKKYN1lp9w", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-LAwnG-pAnqe3OwR2ttI8_ilcYght_455V4_7Y2W47KY", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Da3TTOwaPvKqkOm4eXp2FyCnJ60QsgaIRXpFIdnHx94", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-q9WLObSQwjjZpFjfQurO92Rr7AyIrXe0t0Zzv-iyOuc", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-72", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-24", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-73", @@ -520,16 +520,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab2jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab2cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab2sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-fswhsey-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-fswhsey-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-fswhsey-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-fswhsey-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-fswhsey-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-fswhsey-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-M1_GKkkYtCXlkUPKTcTxYY5RD6yGMaN8J5azpZwnkMQ", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-D2deRCwP5jNb9QXzn6op2Ckr1-fLPNIEHGJSjOwk6Og", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pw5lmYI2BFcg-V6NYq6eX10kBltpoc8ka28yFWjB51M", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-rAkEYqI-TGcUKLQAIvv1S4rOeTWlGHCCuGrNjtAG3Ho", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-g34w4x4-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-g34w4x4-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-g34w4x4-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-g34w4x4-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-g34w4x4-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-g34w4x4-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ss7gmcutXHek3wd08wVpqp4pkImjnEgnvhImEZq9lqs", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-vzVaqDTT1Wa_og1lfpyW9zbtIX0OOMRcA7MV4LCsC5c", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-j18iCPOHG96zqNEdVkHL4OzOAVMrgSTJXAc5vjwXysM", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim--KoudjOWnrcLixrIeKlqheacLRoKUdQ3UGu83ENuGVQ", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-1", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-81", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-82", @@ -589,17 +589,17 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab3jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab3cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab3sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-na340um-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-na340um-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-na340um-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-na340um-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-na340um-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-na340um-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Mkqc-8fRAEblYDwvixj2nvy-mC8LmJDMtthuZM2zcjQ", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-DjmJID4MtAAgE7zhwSMLKZmMfzFXKlayG1ja0QuISrc", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-hg-OYdTFwZWIXgM_HWOOothEN21OtB_eant-P26g72Q", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Inu5yIBh6wkSwjGMis5EjYbTxWRzyCd7nlswZXdap8Q", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-CGLwf4hvpCINJaIsl_SvK1--RwLLCiNp-iqBapnQNSE", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-yewcblk-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-yewcblk-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-yewcblk-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-yewcblk-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-yewcblk-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-yewcblk-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-5Pv7qSBiLRKGijNTMVE4x4bfRvnqCvpzoM5do402x1U", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Hf1ZJfyVmZk6C50lCHeGF-dLAZb_L9Oe6GK65WUrIvQ", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-2fOVgCdNeMUJzp-np_PPWSGfJZ-3aeggKUaqW_t4tk4", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-HVN2MVOHhyBxpzwkl92kb1eVd9ky8pDkih6y01FRn5Q", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-44gkQyTLsOC8zpHl9kHYoweUv03CtzBlrAhM7smJkP8", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-11", "https://www.w3.org/TR/vc-data-model-2.0/#h-note-10", "https://www.w3.org/TR/vc-data-model-2.0/#example-use-of-the-name-and-description-properties-0", @@ -628,16 +628,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab4jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab4cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab4sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-m9fcxdl-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-m9fcxdl-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-m9fcxdl-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-m9fcxdl-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-m9fcxdl-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-m9fcxdl-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-7nIEmVnFyDHeVzWbqW62NhESPdmfqgz2BXEAHQtz8HY", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-zwA6iSmQNZnV2M9wz3uEi2QZZ9z-0nHoPKCTFLs2thk", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-CAVL38zhMKRnUpyFcEGqu8IyvVOUQtTA6UisVRC7jF8", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mKP4GocLTeM-O5DZHj0tOr90nv8UGRShT2yLnfZZ_nI", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-th4iy1r-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-th4iy1r-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-th4iy1r-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-th4iy1r-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-th4iy1r-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-th4iy1r-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-8AuaOWEOK71eWcG6b3yGofhmGVIuk3hi09cCwEXpjJ8", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-YiOEEwhNaIwGt9xqK1zPQIia3SynHZgOPzQa0UVq_YA", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Xhoga1WNyIEkkBkKIvdmmLsvXhtWqrL4dCmBi3RH8cQ", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-tN-wEbZsMNiIW1Aq_jhtmhL34X1jwfOGuTQtJ_gay28", "https://www.w3.org/TR/vc-data-model-2.0/#example-expanded-use-of-the-issuer-property", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5unsigned", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5ecdsa-rdfc-2019", @@ -647,17 +647,17 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab5sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-y512v55-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-y512v55-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-y512v55-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-y512v55-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-y512v55-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-y512v55-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-N-f1uVgZQKV4Le-7x1qTAfRdLcLg46D0bS5uMvhQJp0", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-lyrdnHptGZ9vaMCId8pQQ_cI3WMpcpjH3nZQ0Y-QbGo", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Rgn33AhH8kLGaI1IhZkykI1vUbop1QciMBsexmwrU6c", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ptfkGI6bjzpsVnl0OX-L1MgSK_Pb8q1fBfUS9eTtxyI", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-iOFjwMQej4muZ67gSOV1ht4xsB2FbfI1UkmcO44L-gU", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-jjvnteg-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-jjvnteg-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-jjvnteg-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-jjvnteg-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-jjvnteg-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-jjvnteg-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Fb-pzovyAwnfkno5GhhB3bvpOpkjOCel7VPrRN-RcmU", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-MgeftS4_1Kl70Xu1TK65YcxT14xJr0BAlgE88eAVSeg", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mon0WivbN7CClt0FKpvynxnwi4er70JO63ygY0S1FBU", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Qp43ucGzk4SVVYChpIuvIhejjnNpRzLJdxj_T0p86Aw", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-l5KsYuzO7KwMT_Q6kDo90HIOpFTeqX2pHCojwd3dG7Q", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-12", "https://www.w3.org/TR/vc-data-model-2.0/#h-note-11", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-21", @@ -688,16 +688,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab6jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab6cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab6sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-erhpp7v-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-erhpp7v-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-erhpp7v-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-erhpp7v-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-erhpp7v-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-erhpp7v-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-1bl-j2EHU89vSUfNKoDiKBz9GENhGU09AMo_pJVgl54", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-BwA4OcLF9h5hENx2E78Dnwg03BpLsQSwQ93JWCgU2RQ", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-9xiOfXgEF-f4KUwM2mc0wQZpbeL5JDXfrgcoKwnwqyM", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4GEnuyu8qmnV_uLU4mCCTxzSkytZdpzlGOWUAY_8st4", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-v808an6-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-v808an6-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-v808an6-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-v808an6-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-v808an6-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-v808an6-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Aqe2pjzUWOoFER5nchZbPq3WcIui-kM2y4g3HGF19tQ", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-DXv-CaVSTxsvw7Jl63bwRcmirYWOnDlqNM2_-eef5b8", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mUUb-m9QDqAK9SHX2ZlswZ5yaeKZIJeYfasuKDbSWf8", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-o_HV-C9_raowyo9An3SomCCg-sHs34UwcjdF3Jo1DUY", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-31", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-88", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-32", @@ -726,16 +726,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab7jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab7cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab7sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ceyoagq-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ceyoagq-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ceyoagq-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ceyoagq-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ceyoagq-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ceyoagq-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-n8CiK6gHwbeG-VswqEw02-kmLA8a3ODwWRpeL2nQuKI", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-yIGdad0aQMCCNf6JKeOCzl5mt_6ODssKKJs-jkrPLxE", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-guvNOIkpvReYS9Bt7vtgfk4tAJYaSmGUTKGqNHC5w0Q", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-sgBI9P1tWojMy3vSH7eeZ0tyjXf2Rh1S41lMIYJaCTQ", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ah7jehg-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ah7jehg-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ah7jehg-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ah7jehg-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ah7jehg-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-ah7jehg-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-3K0gzqIc7T8shfl4ozsnP6TM18gP5tMYH_wbumQH180", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-9ukhVVX87H-7aSaYyrkZV7mbTe96fUNshCYhEaky-WU", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-IUvMDQgDx27hkoxbV_pWlvyGSethkr1LlIXfKsdHiQo", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-iI0fXEttu9kugqdEV-OpufmOrKxh8Qii0iDaxrfHe3c", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-13", "https://www.w3.org/TR/vc-data-model-2.0/#h-note-12", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-89", @@ -1009,15 +1009,15 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab8jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab8cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab8sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-54kl7kg-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-54kl7kg-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-54kl7kg-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-54kl7kg-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-54kl7kg-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-54kl7kg-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-r7k9AFlBoXWvXuwZxEhyKCobcKsCOLtDjALyh-ReVRI", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-vbkiNyRCCbs9-r2bl2Wvca57_I2feZ_vIkaeTBBRibY", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-771gBOijEgDTqsdTA33rqVGKsCQDLs3QclShKgTYNIk", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-c6oqzrr-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-c6oqzrr-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-c6oqzrr-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-c6oqzrr-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-c6oqzrr-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-c6oqzrr-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Cj3JPJPzAfErN_-9vdKgZDIe7nVbQU6O769Gky_VIis", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Kfhi8xl6WJ6_c2WMt7Evpm44S_yh7DZeEcYEWi7SMAw", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-bpoq5ZtX2653nJqAAZwliQRx5K2fVASSGqK-B8S1tBE", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-132", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-entities-14", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-133", @@ -1052,7 +1052,10 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-141", "https://www.w3.org/TR/vc-data-model-2.0/#defn-relatedResource", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-142", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-conforming-verifier-implementation-2", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-conforming-document-11", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-47", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-conforming-verifier-implementation-3", "https://www.w3.org/TR/vc-data-model-2.0/#example-use-of-the-relatedresource-and-digestsri-properties", "https://www.w3.org/TR/vc-data-model-2.0/#example-use-of-the-relatedresource-and-digestmultibase-properties", "https://www.w3.org/TR/vc-data-model-2.0/#refreshing", @@ -1060,8 +1063,8 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-143", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-144", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-58", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-47", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-48", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-49", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-145", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-40", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-36", @@ -1076,9 +1079,9 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-42", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-76", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-77", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-49", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-78", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-50", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-78", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-51", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-59", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-148", "https://www.w3.org/TR/vc-data-model-2.0/#defn-refreshService", @@ -1086,7 +1089,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-149", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-16", "https://www.w3.org/TR/vc-data-model-2.0/#example-use-of-the-refreshservice-property-by-an-issuer", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-51", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-52", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-150", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-19", "https://www.w3.org/TR/vc-data-model-2.0/#h-note-18", @@ -1099,11 +1102,11 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-41", "https://www.w3.org/TR/vc-data-model-2.0/#terms-of-use", "https://www.w3.org/TR/vc-data-model-2.0/#x5-5-terms-of-use", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-52", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-53", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-42", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-153", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-71", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-53", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-54", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-154", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-43", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-72", @@ -1111,10 +1114,10 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-63", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-45", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-155", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-54", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-55", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-156", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-46", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-55", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-56", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-157", "https://www.w3.org/TR/vc-data-model-2.0/#defn-termsOfUse", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-64", @@ -1125,18 +1128,18 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-17", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-18", "https://www.w3.org/TR/vc-data-model-2.0/#example-use-of-the-termsofuse-property-by-an-issuer", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-56", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-57", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-158", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-159", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-160", "https://www.w3.org/TR/vc-data-model-2.0/#evidence", "https://www.w3.org/TR/vc-data-model-2.0/#x5-6-evidence", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-57", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-58", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-48", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-161", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-49", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-162", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-58", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-59", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-39", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-80", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-50", @@ -1151,7 +1154,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#h-note-19", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-82", "https://www.w3.org/TR/vc-data-model-2.0/#example-example-of-evidence-supporting-a-skill-achievement-credential", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-59", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-60", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-40", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-83", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-21", @@ -1159,7 +1162,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-70", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-71", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-163", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-60", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-61", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-164", "https://www.w3.org/TR/vc-data-model-2.0/#zero-knowledge-proofs", "https://www.w3.org/TR/vc-data-model-2.0/#x5-7-zero-knowledge-proofs", @@ -1174,7 +1177,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-52", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-168", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-53", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-61", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-62", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-48", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-169", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-unlinkable-disclosure-1", @@ -1192,7 +1195,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-42", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-85", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-171", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-62", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-63", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-73", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-172", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-43", @@ -1205,7 +1208,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-174", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-55", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-175", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-63", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-64", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-176", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-177", "https://www.w3.org/TR/vc-data-model-2.0/#fig-a-visual-example-of-the-relationship-between-credentials-and-derived-credentials-in-a-zkp-presentation", @@ -1214,14 +1217,14 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-75", "https://www.w3.org/TR/vc-data-model-2.0/#example-verifiable-credential-using-the-data-integrity-bbs-cryptosuite-with-a-base-proof", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-179", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-64", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-65", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-56", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-180", "https://www.w3.org/TR/vc-data-model-2.0/#example-verifiable-presentation-using-the-data-integrity-bbs-cryptosuite-with-a-derived-credential-and-proof", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-76", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-181", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-59", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-65", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-66", "https://www.w3.org/TR/vc-data-model-2.0/#representing-time", "https://www.w3.org/TR/vc-data-model-2.0/#x5-8-representing-time", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-conforming-document-12", @@ -1313,7 +1316,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-205", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-74", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-named-graphs-7", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-66", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-67", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-57", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-206", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-207", @@ -1345,7 +1348,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#type-specific-credential-processing", "https://www.w3.org/TR/vc-data-model-2.0/#x6-3-type-specific-credential-processing", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-claims-49", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-67", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-68", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-214", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-215", "https://www.w3.org/TR/vc-data-model-2.0/#dfn-general-json-ld-processing", @@ -1374,7 +1377,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#h-note-25", "https://www.w3.org/TR/vc-data-model-2.0/#verification", "https://www.w3.org/TR/vc-data-model-2.0/#x7-1-verification", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-conforming-verifier-implementation-2", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-conforming-verifier-implementation-4", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-219", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-91", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-conforming-document-32", @@ -1408,7 +1411,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#h-note-26", "https://www.w3.org/TR/vc-data-model-2.0/#software-trust-boundaries", "https://www.w3.org/TR/vc-data-model-2.0/#x8-2-software-trust-boundaries", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-68", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-69", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-220", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-60", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-221", @@ -1431,7 +1434,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-entities-15", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-64", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-65", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-69", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-70", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-224", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-225", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-226", @@ -1455,15 +1458,15 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-48", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-86", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-67", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-70", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-71", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-68", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-68", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-69", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-236", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-71", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-72", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-93", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-70", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-72", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-73", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-237", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-securing-mechanism-1", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-238", @@ -1471,7 +1474,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#x8-5-signature-based-correlation", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-239", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-securing-mechanism-2", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-73", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-74", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-240", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-94", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-69", @@ -1483,10 +1486,10 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-241", "https://www.w3.org/TR/vc-data-model-2.0/#metadata-based-correlation", "https://www.w3.org/TR/vc-data-model-2.0/#x8-6-metadata-based-correlation", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-74", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-75", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-72", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-70", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-75", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-76", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-242", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-73", "https://www.w3.org/TR/vc-data-model-2.0/#device-tracking-and-fingerprinting", @@ -1503,21 +1506,21 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-249", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-250", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-71", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-76", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-77", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-72", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-251", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-73", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-252", "https://www.w3.org/TR/vc-data-model-2.0/#favor-abstract-claims", "https://www.w3.org/TR/vc-data-model-2.0/#x8-8-favor-abstract-claims", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-77", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-78", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-253", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-254", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-80", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-74", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-50", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-81", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-78", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-79", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-255", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-51", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-256", @@ -1526,24 +1529,24 @@ "https://www.w3.org/TR/vc-data-model-2.0/#x8-9-the-principle-of-data-minimization", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-75", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-257", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-79", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-80", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-258", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-76", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-77", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-259", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-80", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-selective-disclosure-3", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-81", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-selective-disclosure-3", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-82", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-260", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-76", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-261", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-262", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-82", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-83", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-bearer-credentials-1", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-263", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-selective-disclosure-4", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-83", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-84", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-85", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-78", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-79", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-52", @@ -1580,23 +1583,23 @@ "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab9jose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab9cose", "https://www.w3.org/TR/vc-data-model-2.0/#vc-tab9sd-jwt", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-8s66ept-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-8s66ept-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-8s66ept-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-8s66ept-content-encoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-8s66ept-content-decoded", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-8s66ept-content-disclosures", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-PyuuwcviPJjcawO1d7DlwH-Ai2_p-OAMpyCVLfD0wxY", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-rhcz8rNY31o6Pi9sjNXboZzL4PgaBLVGI-44UULqdB0", - "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-47ccI82YsvYACUi7JnuNzLTBA5MBQ4iR0xkkUwLQPzg", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-al3z5c4-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-al3z5c4-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-al3z5c4-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-al3z5c4-content-encoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-al3z5c4-content-decoded", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-al3z5c4-content-disclosures", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-f_1oHyB1Twtm29w-MAObaSfLH6YFuJ206DBNm5AHyYI", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-IJyKi2KnJ6pHaKyMauv7f2DnMHYo1b4mWyyalDjgzII", + "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-YHcfFPpsCT80ouFvCtltliuXh11ZF5Ynxk9HoHnEJa0", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-bearer-credentials-4", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-85", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-86", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-86", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-bearer-credentials-5", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-bearer-credentials-6", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-87", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-bearer-credentials-7", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-86", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-87", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-bearer-credentials-8", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-bearer-credentials-9", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-88", @@ -1617,10 +1620,10 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-92", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-93", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-94", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-87", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-95", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-88", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-95", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-89", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-90", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-87", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-88", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verify-13", @@ -1632,7 +1635,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#x8-12-storage-providers-and-data-mining", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-97", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-268", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-90", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-91", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-269", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-repositories-7", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-98", @@ -1700,16 +1703,16 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-61", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-280", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-281", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-91", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-282", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-92", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-282", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-93", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-62", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-283", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-284", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-285", "https://www.w3.org/TR/vc-data-model-2.0/#legal-processes", "https://www.w3.org/TR/vc-data-model-2.0/#x8-15-legal-processes", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-93", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-94", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-108", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-99", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-63", @@ -1721,7 +1724,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-110", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-102", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-111", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-94", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-95", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-112", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-104", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-103", @@ -1738,13 +1741,13 @@ "https://www.w3.org/TR/vc-data-model-2.0/#x8-17-data-theft", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-288", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-101", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-95", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-96", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-116", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-64", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-96", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-97", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-289", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-117", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-97", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-98", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-290", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-118", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-119", @@ -1756,18 +1759,18 @@ "https://www.w3.org/TR/vc-data-model-2.0/#x8-18-frequency-of-claim-issuance", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-122", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-291", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-98", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-99", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-100", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-292", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-293", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-100", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-294", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-101", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-294", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-102", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-123", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-124", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-125", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-105", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-102", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-103", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-106", "https://www.w3.org/TR/vc-data-model-2.0/#prefer-single-use-credentials", "https://www.w3.org/TR/vc-data-model-2.0/#x8-19-prefer-single-use-credentials", @@ -1791,47 +1794,47 @@ "https://www.w3.org/TR/vc-data-model-2.0/#issuer-cooperation-impacts-on-privacy", "https://www.w3.org/TR/vc-data-model-2.0/#x8-21-issuer-cooperation-impacts-on-privacy", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-301", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-103", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-129", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-104", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-129", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-105", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-106", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-302", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-130", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-106", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-107", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-303", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-131", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-65", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-107", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-108", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-109", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-304", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-132", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-111", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-109", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-109", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-110", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-109", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-111", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-presentation-21", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-110", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-112", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-111", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-112", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-111", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-113", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-111", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-114", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-66", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-113", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-112", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-67", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-114", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-115", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-68", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-116", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-68", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-117", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-118", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-114", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-133", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-118", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-119", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-120", "https://www.w3.org/TR/vc-data-model-2.0/#security-considerations", "https://www.w3.org/TR/vc-data-model-2.0/#x9-security-considerations", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-120", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-121", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-134", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-115", "https://www.w3.org/TR/vc-data-model-2.0/#cryptography-suites-and-libraries", @@ -1872,7 +1875,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-117", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-105", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-312", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-121", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-122", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-118", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-135", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-106", @@ -1893,13 +1896,13 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-110", "https://www.w3.org/TR/vc-data-model-2.0/#bundling-dependent-claims", "https://www.w3.org/TR/vc-data-model-2.0/#x9-6-bundling-dependent-claims", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-122", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-120", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-123", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-120", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-124", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-138", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-claims-53", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-121", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-124", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-125", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-315", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-122", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-123", @@ -1943,7 +1946,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-125", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-142", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-143", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-125", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-126", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-144", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-127", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-145", @@ -2011,7 +2014,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-334", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-131", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-149", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-126", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-127", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-335", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-132", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-150", @@ -2052,13 +2055,13 @@ "https://www.w3.org/TR/vc-data-model-2.0/#issuer-0", "https://www.w3.org/TR/vc-data-model-2.0/#a-3-issuer", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-88", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-127", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-128", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-140", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-89", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-141", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-342", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-115", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-128", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-129", "https://www.w3.org/TR/vc-data-model-2.0/#holder", "https://www.w3.org/TR/vc-data-model-2.0/#a-4-holder", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-90", @@ -2120,7 +2123,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-154", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-155", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-352", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-129", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-130", "https://www.w3.org/TR/vc-data-model-2.0/#schema", "https://www.w3.org/TR/vc-data-model-2.0/#a-9-schema", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-353", @@ -2138,11 +2141,11 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-74", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-95", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-96", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-130", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-131", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-161", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-claims-61", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-claims-62", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-131", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-132", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-356", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-163", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-162", @@ -2165,7 +2168,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-362", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-presentation-125", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-163", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-132", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-133", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-164", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-138", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-presentation-27", @@ -2175,7 +2178,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-139", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-364", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-165", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-133", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-134", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-165", "https://www.w3.org/TR/vc-data-model-2.0/#vocabularies", "https://www.w3.org/TR/vc-data-model-2.0/#b-2-vocabularies", diff --git a/tr/index.json b/tr/index.json index e85285da9f42..1eaad553111c 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-10-14T01:34:47.177Z", + "date": "2024-10-15T01:35:03.969Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -712,7 +712,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "14 October 2024", + "date": "15 October 2024", "links": "links/av1-spec.json" }, { @@ -2011,11 +2011,11 @@ ], "crawled": "https://www.w3.org/TR/CSP3/", "crawlCacheInfo": { - "lastModified": "Mon, 09 Sep 2024 15:00:21 GMT" + "lastModified": "Mon, 14 Oct 2024 08:40:32 GMT" }, "generator": "bikeshed", - "date": "9 September 2024", - "revision": "ce17e1058fd63fd0b03d114951b9aaaf3f24c767", + "date": "14 October 2024", + "revision": "b33a9a25803317cd26bdaca79f915916f8206860", "algorithms": "algorithms/CSP3.json", "links": "links/CSP3.json", "refs": "refs/CSP3.json", @@ -11597,11 +11597,11 @@ ], "crawled": "https://www.w3.org/TR/IndexedDB-3/", "crawlCacheInfo": { - "lastModified": "Tue, 12 Dec 2023 21:03:50 GMT" + "lastModified": "Tue, 15 Oct 2024 00:58:10 GMT" }, "generator": "bikeshed", - "date": "12 December 2023", - "revision": "010ecb2e4d1cf6694a54554e6b924f975540de0f", + "date": "15 October 2024", + "revision": "020487ec39bbeee12cb87390e158a1dfdd0ea555", "algorithms": "algorithms/IndexedDB-3.json", "links": "links/IndexedDB-3.json", "refs": "refs/IndexedDB-3.json", @@ -18288,11 +18288,11 @@ ], "crawled": "https://www.w3.org/TR/vc-data-integrity/", "crawlCacheInfo": { - "lastModified": "Wed, 02 Oct 2024 23:02:46 GMT" + "lastModified": "Mon, 14 Oct 2024 21:34:16 GMT" }, "generator": "respec", - "date": "02 October 2024", - "revision": "8cf331ee28d4a1b07a700e4d86692c909d2a78da", + "date": "14 October 2024", + "revision": "c229ae846158e3278b1caaf0531dd9b8b1776627", "algorithms": "algorithms/vc-data-integrity.json", "links": "links/vc-data-integrity.json", "refs": "refs/vc-data-integrity.json", @@ -18344,11 +18344,11 @@ ], "crawled": "https://www.w3.org/TR/vc-data-model-2.0/", "crawlCacheInfo": { - "lastModified": "Sat, 05 Oct 2024 21:39:48 GMT" + "lastModified": "Mon, 14 Oct 2024 20:43:08 GMT" }, "generator": "respec", - "date": "05 October 2024", - "revision": "66cb36fb5ec0423bec3b36ad2c3f77c04a79f9e8", + "date": "14 October 2024", + "revision": "60f37c73fb5e5704b68496e4915f920942fa462d", "algorithms": "algorithms/vc-data-model-2.0.json", "links": "links/vc-data-model-2.0.json", "refs": "refs/vc-data-model-2.0.json", diff --git a/tr/links/CSP3.json b/tr/links/CSP3.json index 7793732be8ff..0d09b07de7a4 100644 --- a/tr/links/CSP3.json +++ b/tr/links/CSP3.json @@ -56,6 +56,7 @@ "https://www.w3.org/Mail/Request": {}, "https://www.w3.org/TR/": {}, "https://www.w3.org/TR/CSP2/": {}, + "https://www.w3.org/TR/CSP3/": {}, "https://www.w3.org/TR/SRI/": { "anchors": [ "parse-metadata" @@ -304,7 +305,9 @@ "list", "list-contain", "ascii-string", + "byte-sequence", "string", + "isomorphic-decode", "list-iterate", "strictly-split", "strip-leading-and-trailing-ascii-whitespace", @@ -313,10 +316,6 @@ "ascii-lowercase", "split-on-ascii-whitespace", "set-append", - "byte-sequence", - "isomorphic-decode", - "split-on-commas", - "list-append", "list-is-empty", "ascii-case-insensitive", "list-size", @@ -425,6 +424,11 @@ "idl-unsigned-long" ] }, + "https://www.w3.org/TR/CSP3/": { + "anchors": [ + "abstract-opdef-parse-a-serialized-csp-list" + ] + }, "https://www.w3.org/TR/css-cascade-5/": { "anchors": [ "at-ruledef-import" diff --git a/tr/links/IndexedDB-3.json b/tr/links/IndexedDB-3.json index d43497fce986..ed05db326744 100644 --- a/tr/links/IndexedDB-3.json +++ b/tr/links/IndexedDB-3.json @@ -107,21 +107,7 @@ "https://developer.mozilla.org/en-US/docs/Web/API/indexedDB": {}, "https://dom.spec.whatwg.org/": { "anchors": [ - "constructing-events", - "document", - "get-the-parent", - "concept-event", - "concept-event-dispatch", - "eventtarget", - "event", - "dictdef-eventinit", - "concept-event-create", - "dom-event-type", - "dom-event-bubbles", - "dom-event-cancelable", - "concept-event-fire", - "canceled-flag", - "dom-event-preventdefault" + "constructing-events" ] }, "https://github.com/tabatkins/bikeshed": {}, @@ -137,202 +123,18 @@ "https://github.com/w3c/IndexedDB/issues/327": {}, "https://github.com/w3c/IndexedDB/issues/346": {}, "https://github.com/w3c/IndexedDB/issues/408": {}, + "https://github.com/w3c/IndexedDB/issues/423": {}, "https://github.com/w3c/IndexedDB/issues/50": {}, "https://github.com/w3c/IndexedDB/pull/232": {}, "https://github.com/w3c/IndexedDB/pull/238": {}, "https://html.spec.whatwg.org/multipage/": {}, - "https://html.spec.whatwg.org/multipage/browsers.html": { - "anchors": [ - "dom-document-domain", - "concept-origin" - ] - }, - "https://html.spec.whatwg.org/multipage/canvas.html": { - "anchors": [ - "imagedata" - ] - }, - "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html": { - "anchors": [ - "domstringlist" - ] - }, - "https://html.spec.whatwg.org/multipage/document-sequences.html": { - "anchors": [ - "browsing-context" - ] - }, - "https://html.spec.whatwg.org/multipage/infrastructure.html": { - "anchors": [ - "in-parallel" - ] - }, - "https://html.spec.whatwg.org/multipage/structured-data.html": { - "anchors": [ - "serializable-objects", - "structuredserializeforstorage", - "structureddeserialize" - ] - }, - "https://html.spec.whatwg.org/multipage/webappapis.html": { - "anchors": [ - "event-loop", - "queue-a-task", - "task-queue", - "event-handler-idl-attributes", - "eventhandler", - "event-handler-event-type", - "windoworworkerglobalscope", - "relevant-settings-object" - ] - }, "https://httpwg.org/specs/rfc6265.html": {}, - "https://infra.spec.whatwg.org/": { - "anchors": [ - "string", - "list", - "list-sort-in-ascending-order", - "code-unit-less-than", - "byte-sequence", - "list-item", - "assert", - "byte-less-than", - "list-size", - "byte", - "ordered-set", - "list-iterate", - "list-append", - "strictly-split", - "byte-sequence-length", - "list-contain", - "set-append" - ] - }, + "https://infra.spec.whatwg.org/": {}, "https://lists.w3.org/Archives/Public/public-webapps/": {}, - "https://storage.spec.whatwg.org/": { - "anchors": [ - "storage-key", - "storage-bucket", - "obtain-a-storage-key" - ] - }, + "https://storage.spec.whatwg.org/": {}, "https://tc39.es/ecma262/multipage/": {}, - "https://tc39.es/ecma262/multipage/abstract-operations.html": { - "anchors": [ - "sec-tostring", - "sec-createdataproperty", - "sec-tolength", - "sec-get-o-p", - "sec-hasownproperty" - ] - }, - "https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html": { - "anchors": [ - "sec-completion-record-specification-type" - ] - }, - "https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html": { - "anchors": [ - "realm", - "current-realm" - ] - }, - "https://tc39.es/ecma262/multipage/fundamental-objects.html": { - "anchors": [ - "sec-object-objects" - ] - }, - "https://tc39.es/ecma262/multipage/indexed-collections.html": { - "anchors": [ - "sec-array.prototype.sort", - "sec-array-objects" - ] - }, - "https://tc39.es/ecma262/multipage/numbers-and-dates.html": { - "anchors": [ - "sec-date-objects", - "sec-number-objects" - ] - }, - "https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html": { - "anchors": [ - "array-exotic-object" - ] - }, - "https://tc39.es/ecma262/multipage/text-processing.html": { - "anchors": [ - "sec-string-objects", - "sec-regexp-regular-expression-objects" - ] - }, - "https://tc39.github.io/ecma262/": { - "anchors": [ - "prod-IdentifierName", - "sec-algorithm-conventions", - "sec-ecmascript-data-types-and-values", - "sec-returnifabrupt" - ] - }, - "https://webidl.spec.whatwg.org/": { - "anchors": [ - "idl-DOMString", - "idl-record", - "idl-unrestricted-double", - "idl-ArrayBuffer", - "idl-Uint8Array", - "idl-byte", - "dfn-throw", - "dataerror", - "idl-DOMException", - "constrainterror", - "aborterror", - "datacloneerror", - "invalidaccesserror", - "invalidstateerror", - "notfounderror", - "quotaexceedederror", - "syntaxerror", - "readonlyerror", - "transactioninactiveerror", - "unknownerror", - "versionerror", - "Exposed", - "idl-any", - "this", - "idl-unsigned-long-long", - "SameObject", - "NewObject", - "EnforceRange", - "idl-promise", - "idl-sequence", - "idl-short", - "exceptiondef-typeerror", - "securityerror", - "a-promise-rejected-with", - "a-new-promise", - "reject", - "resolve", - "idl-undefined", - "idl-boolean", - "idl-unsigned-long", - "the-given-value", - "dfn-create-exception", - "dfn-buffer-source-type", - "dfn-get-buffer-source-copy" - ] - }, + "https://webidl.spec.whatwg.org/": {}, "https://www.w3.org/2004/01/pp-impl/114929/status": {}, - "https://www.w3.org/2023/Process-20231103/": { - "anchors": [ - "recs-and-notes" - ] - }, - "https://www.w3.org/Consortium/Patent-Policy-20200915/": { - "anchors": [ - "def-essential", - "sec-Disclosure" - ] - }, "https://www.w3.org/TR/": {}, "https://www.w3.org/TR/2015/REC-IndexedDB-20150108/": { "anchors": [ @@ -340,16 +142,7 @@ ] }, "https://www.w3.org/TR/2018/REC-IndexedDB-2-20180130/": {}, - "https://www.w3.org/TR/FileAPI/": { - "anchors": [ - "dfn-file", - "dfn-Blob", - "dfn-size", - "dfn-type", - "dfn-name", - "dfn-lastModified" - ] - }, + "https://www.w3.org/TR/FileAPI/": {}, "https://www.w3.org/TR/IndexedDB-2/": { "anchors": [ "revision-history" @@ -357,7 +150,18 @@ }, "https://www.w3.org/TR/charmod-norm/": {}, "https://www.w3.org/TR/webstorage/": {}, - "https://www.w3.org/groups/wg/webapps": {} + "https://www.w3.org/groups/wg/webapps": {}, + "https://www.w3.org/policies/patent-policy/20200915/": { + "anchors": [ + "def-essential", + "sec-Disclosure" + ] + }, + "https://www.w3.org/policies/process/20231103/": { + "anchors": [ + "recs-and-notes" + ] + } }, "autolinks": { "https://dom.spec.whatwg.org/": { @@ -524,6 +328,7 @@ "invalidaccesserror", "invalidstateerror", "notfounderror", + "notreadableerror", "quotaexceedederror", "syntaxerror", "readonlyerror", diff --git a/tr/refs/CSP3.json b/tr/refs/CSP3.json index 099de2382e91..8a5452fc879b 100644 --- a/tr/refs/CSP3.json +++ b/tr/refs/CSP3.json @@ -5,6 +5,10 @@ }, "refs": { "normative": [ + { + "name": "CSP3", + "url": "https://www.w3.org/TR/CSP3/" + }, { "name": "CSS-CASCADE-5", "url": "https://www.w3.org/TR/css-cascade-5/"