From 5999e66c955732534aba3b08aa13a38abda912fe Mon Sep 17 00:00:00 2001
From: reffy-bot <>
Date: Sat, 21 Dec 2024 01:51:13 +0000
Subject: [PATCH] Update of TR report from new reffy run
Using reffy commit 18.1.2.
---
tr/algorithms/css-color-hdr-1.json | 32 +
tr/algorithms/css-overflow-5.json | 109 ++
tr/algorithms/webdriver-bidi.json | 1715 +++++++++++++++------------
tr/cddl/webdriver-bidi-all.cddl | 17 +-
tr/cddl/webdriver-bidi-local.cddl | 6 +
tr/cddl/webdriver-bidi-remote.cddl | 13 +-
tr/css/css-color-hdr.json | 117 ++
tr/css/css-overflow-5.json | 191 +++
tr/dfns/css-color-hdr-1.json | 489 ++++++++
tr/dfns/css-overflow-5.json | 596 ++++++++++
tr/dfns/webdriver-bidi.json | 162 ++-
tr/headings/css-color-hdr-1.json | 281 +++++
tr/headings/css-overflow-5.json | 289 +++++
tr/headings/vc-data-model-2.0.json | 144 +--
tr/headings/webdriver-bidi.json | 23 +-
tr/ids/css-color-hdr-1.json | 258 ++++
tr/ids/css-overflow-5.json | 484 ++++++++
tr/ids/vc-data-model-2.0.json | 180 +--
tr/ids/webdriver-bidi.json | 1760 +++++++++++++++-------------
tr/index.json | 190 ++-
tr/links/css-color-hdr-1.json | 176 +++
tr/links/css-overflow-5.json | 287 +++++
tr/links/vc-data-model-2.0.json | 4 +-
tr/links/webdriver-bidi.json | 36 +-
tr/refs/css-color-hdr-1.json | 76 ++
tr/refs/css-overflow-5.json | 144 +++
26 files changed, 5912 insertions(+), 1867 deletions(-)
create mode 100644 tr/algorithms/css-color-hdr-1.json
create mode 100644 tr/algorithms/css-overflow-5.json
create mode 100644 tr/css/css-color-hdr.json
create mode 100644 tr/css/css-overflow-5.json
create mode 100644 tr/dfns/css-color-hdr-1.json
create mode 100644 tr/dfns/css-overflow-5.json
create mode 100644 tr/headings/css-color-hdr-1.json
create mode 100644 tr/headings/css-overflow-5.json
create mode 100644 tr/ids/css-color-hdr-1.json
create mode 100644 tr/ids/css-overflow-5.json
create mode 100644 tr/links/css-color-hdr-1.json
create mode 100644 tr/links/css-overflow-5.json
create mode 100644 tr/refs/css-color-hdr-1.json
create mode 100644 tr/refs/css-overflow-5.json
diff --git a/tr/algorithms/css-color-hdr-1.json b/tr/algorithms/css-color-hdr-1.json
new file mode 100644
index 000000000000..8fc6b79ff93a
--- /dev/null
+++ b/tr/algorithms/css-color-hdr-1.json
@@ -0,0 +1,32 @@
+{
+ "spec": {
+ "title": "CSS Color HDR Module Level 1",
+ "url": "https://www.w3.org/TR/css-color-hdr-1/"
+ },
+ "algorithms": [
+ {
+ "html": "If the specified value is dynamic-range-limit-mix(), then the computed value is determined by the following algorithm:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "
Let v1, ..., vN be the computed values for the parameters to be mixed.
"
+ },
+ {
+ "html": "Let p1, ..., pN be the mixing percentages, normalized to sum to 100%.
"
+ },
+ {
+ "html": "Define the contributing percentages as:
\n \n - \n
Let p1_standard,...,pN_standard be the percentages for standard in v1,...,vN
\n - \n
Let p1_constrained_high,...,pN_constrained_high be the percentages for constrained-high in v1,...,vN
\n - \n
Let p1_high,...,pN_high be the percentages for high in v1,...,vN
\n
"
+ },
+ {
+ "html": "Compute the weighted sums as:
\n \n - \n
p_standard=(p1_standard*p1+...+pN_standard*pN)/100.
\n - \n
p_constrained_high=(p1_constrained_high*p1+...+pN_constrained_high*pN)/100.
\n - \n
p_high=(p1_high*p1+...+pN_high*pN)/100.
\n
"
+ },
+ {
+ "html": "If p_standard, p_constrained_high, or p_high equals 100%, then the computed value is standard, constrained-high, or high, respectively.
"
+ },
+ {
+ "html": "Otherwise, the computed value is dynamic-range-limit-mix(), with parameters standard, constrained-high, and high, in that order, and percentages p_standard, p_constrained_high, and p_high, omitting parameters with a percentage equal to 0%.
"
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/tr/algorithms/css-overflow-5.json b/tr/algorithms/css-overflow-5.json
new file mode 100644
index 000000000000..37643d4c417f
--- /dev/null
+++ b/tr/algorithms/css-overflow-5.json
@@ -0,0 +1,109 @@
+{
+ "spec": {
+ "title": "CSS Overflow Module Level 5",
+ "url": "https://www.w3.org/TR/css-overflow-5/"
+ },
+ "algorithms": [
+ {
+ "name": "update active marker",
+ "html": "Whenever the UA determines that a new marker is the active marker for a scroll marker group group it must run the following steps:",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Set the active state of active marker to true.
"
+ },
+ {
+ "html": "\n - \n
If active marker was the last-focused element of the group,
\n - \n
Focus active marker
\n
"
+ },
+ {
+ "html": "Set the last-focused element of the group to active marker.
"
+ },
+ {
+ "html": "Set the active state of all other scroll marker elements in group to false.
"
+ }
+ ]
+ },
+ {
+ "name": "scrollTargetElement activation",
+ "html": "When a scroll marker with a non-null scroll target is activated by explicit invocation or arrow key focus:",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Let element be the scroll target of the control.
"
+ },
+ {
+ "html": "Let block be \"start
\".
"
+ },
+ {
+ "html": "Let inline be \"start
\".
"
+ },
+ {
+ "html": "Scroll the element into view with block and inline.
"
+ },
+ {
+ "html": "\n - If the activation was triggered by invocation\n
- \n \n \n
",
+ "ignored": [
+ "Follow the hyperlink updating the URL, however retain focus on the marker element."
+ ]
+ }
+ ]
+ },
+ {
+ "html": "The computed value of the continue for a given element or pseudo element is determined as follow:",
+ "rationale": "/^otherwise(\\,| )/i",
+ "steps": [
+ {
+ "html": "On elements or pseudo elements with layout containment (see [CSS-CONTAIN-1]),\nif the specified value is auto or fragments then the computed value is overflow.
"
+ },
+ {
+ "html": "Otherwise, if the specified value is auto",
+ "rationale": "/^otherwise(\\,| )/i",
+ "steps": [
+ {
+ "html": "On a CSS Region other than the last one in a region chain,\nthe computed value is auto
"
+ },
+ {
+ "html": "On a page\nthe computed value is paginate
"
+ },
+ {
+ "html": "On a fragment box the computed value is fragments
"
+ },
+ {
+ "html": "Otherwise, the computed value is overflow
"
+ }
+ ]
+ },
+ {
+ "html": "Otherwise, if the specified value is fragments",
+ "rationale": "/^otherwise(\\,| )/i",
+ "steps": [
+ {
+ "html": "On a page\nthe computed value is paginate
"
+ },
+ {
+ "html": "Otherwise, the computed value is the specified value
"
+ }
+ ]
+ },
+ {
+ "html": "In all other cases, the computed value is the specified value
"
+ }
+ ]
+ },
+ {
+ "html": "To be more precise,\n\t\twhen a rule’s selector has ::nth-fragment() pseudo-elements\n\t\tattached to parts of the selector other than the subject,\n\t\tthe declarations in that rule apply to\n\t\ta fragment (or pseudo-element thereof) when:",
+ "rationale": "for",
+ "steps": [
+ {
+ "html": "the declarations are for properties that apply to the ::first-letter pseudo-element,
"
+ },
+ {
+ "html": "the declarations would apply to\nthat fragment (or pseudo-element thereof)\nhad those ::nth-fragment() pseudo-elements been removed,\nwith a particular association between\neach sequence of simple selectors and the element it matched,\nand
"
+ },
+ {
+ "html": "for each removed ::nth-fragment() pseudo-element,\nthe fragment lives within a fragment box of the element associated in that association\nwith the selector that the pseudo-element was attached to,\nand whose index matches the pseudo-element.
"
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/tr/algorithms/webdriver-bidi.json b/tr/algorithms/webdriver-bidi.json
index 0463a8638e15..b458b4ae1aa6 100644
--- a/tr/algorithms/webdriver-bidi.json
+++ b/tr/algorithms/webdriver-bidi.json
@@ -76,33 +76,10 @@
}
]
},
- {
- "name": "event enabled navigables",
- "href": "https://www.w3.org/TR/webdriver-bidi/#event-enabled-navigables",
- "html": "To obtain a list of event enabled navigables given session and event name:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let navigables be an empty set.
"
- },
- {
- "html": "For each navigable → events of session’s navigable event map:",
- "rationale": "if",
- "steps": [
- {
- "html": "If events contains event name, append navigable to navigables
"
- }
- ]
- },
- {
- "html": "Return navigables.
"
- }
- ]
- },
{
"name": "set of sessions for which an event is enabled",
"href": "https://www.w3.org/TR/webdriver-bidi/#set-of-sessions-for-which-an-event-is-enabled",
- "html": "The set of sessions for which an event is enabled given event\nname and navigables is:",
+ "html": "The set of sessions for which an event is enabled given event name and navigables is:",
"rationale": ".algorithm",
"steps": [
{
@@ -129,63 +106,81 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let top-level traversables be an empty set.
"
- },
- {
- "html": "For each navigable of navigables, append navigable’s top-level traversable to top-level traversables.
"
+ "html": "Let top-level traversables be get top-level traversables with navigables.
"
},
{
- "html": "Let event map be the navigable event map for session.
"
- },
- {
- "html": "For each navigable of top-level traversables:",
+ "html": "For each subscription in session’s subscriptions:",
"rationale": "if",
"steps": [
{
- "html": "If event map contains navigable, let navigable events be event map[navigable]. Otherwise let navigable events be null.
"
+ "html": "If subscription’s event names do not contains event name, continue.
"
+ },
+ {
+ "html": "If subscription is global return true.
"
+ },
+ {
+ "html": "Let subscription top-level traversables be get navigables by ids with subscription’s top-level traversable ids.
"
},
{
- "html": "If navigable events is not null, and navigable events contains event name, return true.
"
+ "html": "If the intersection of top-level traversables and subscription top-level traversables is not empty return true.
"
}
]
},
- {
- "html": "If the global event set for session contains event name return\n true.
"
- },
{
"html": "Return false.
"
}
]
},
{
- "name": "obtain a set of event names",
- "href": "https://www.w3.org/TR/webdriver-bidi/#obtain-a-set-of-event-names",
- "html": "To obtain a set of event names given an name:",
+ "name": "set of top-level traversables for which an event is enabled",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#set-of-top-level-traversables-for-which-an-event-is-enabled",
+ "html": "The set of top-level traversables for which an event is enabled given event name and session is:",
"rationale": ".algorithm",
"steps": [
{
- "html": "Let events be an empty set.
"
+ "html": "Let result be a new set.
"
},
{
- "html": "If name contains a U+002E (period):",
+ "html": "For each subscription in session’s subscriptions:",
"rationale": "if",
"steps": [
{
- "html": "If name is the event name for an event, append name to events and return success with data events.
"
+ "html": "If subscription’s event names does not contain event name, continue.
"
+ },
+ {
+ "html": "If subscription’s is global:",
+ "rationale": "for",
+ "steps": [
+ {
+ "html": "For each traversable in remote end’s top-level traversables:",
+ "rationale": "append",
+ "steps": [
+ {
+ "html": "Append traversable to result.
"
+ }
+ ]
+ },
+ {
+ "html": "Break.
"
+ }
+ ]
},
{
- "html": "Return an error with error code invalid argument
"
+ "html": "Otherwise:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let top-level traversables be get navigables by ids with subscription’s top-level traversable ids.
"
+ },
+ {
+ "html": "Append each item of top-level traversables to result.
"
+ }
+ ]
}
]
},
{
- "html": "Otherwise name is interpreted as representing all the events in a\n module. If name is not a module name return an error with error code invalid argument.
"
- },
- {
- "html": "Append the event name for each event in the module with name name to events.
"
- },
- {
- "html": "Return success with data events.
"
+ "html": "Return result.
"
}
]
},
@@ -289,7 +284,7 @@
"html": "Append resource name to the list of WebSocket resources for listener.
"
},
{
- "html": "Append listener to the remote end's active\n listeners.
"
+ "html": "Append listener to the remote end's active\n listeners.
"
},
{
"html": "Return listener.
"
@@ -303,7 +298,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If type is not text, send an error\n response given connection, null, and invalid argument, and finally\n return.
"
+ "html": "If type is not text, send an error\n response given connection, null, and invalid argument, and finally\n return.
"
},
{
"html": "Assert: data is a scalar value string, because the\n WebSocket handling errors in UTF-8-encoded data would already\n have failed the WebSocket\n connection otherwise.
"
@@ -312,7 +307,7 @@
"html": "If there is a BiDi Session associated with connection connection,\n let session be that session. Otherwise if connection is in WebSocket\n connections not associated with a session, let session be\n null. Otherwise, return.
"
},
{
- "html": "Let parsed be the result of parsing JSON\n into Infra values given data. If this throws an exception, then send\n an error response given connection, null, and invalid argument, and\n finally return.
"
+ "html": "Let parsed be the result of parsing JSON\n into Infra values given data. If this throws an exception, then send\n an error response given connection, null, and invalid argument, and\n finally return.
"
},
{
"html": "If session is not null and not in active sessions then return.
"
@@ -322,10 +317,10 @@
"rationale": "let",
"steps": [
{
- "html": "Let matched be the map representing the matched data.
"
+ "html": "Let matched be the map representing the matched data.
"
},
{
- "html": "Assert: matched contains \"id
\", \"method
\", and\n \"params
\".
"
+ "html": "Assert: matched contains \"id
\", \"method
\", and\n \"params
\".
"
},
{
"html": "Let command id be matched[\"id
\"].
"
@@ -347,7 +342,7 @@
"html": "Let result be the result of running the remote end steps for command given session and command parameters matched[\"params
\"]
"
},
{
- "html": "If result is an error, then send an error response given connection, command id, and result’s error code, and finally\n return.
"
+ "html": "If result is an error, then send an error response given connection, command id, and result’s error code, and finally\n return.
"
},
{
"html": "Let value be result’s data.
"
@@ -356,10 +351,10 @@
"html": "Assert: value matches the definition for the result type corresponding to the command with command name method.
"
},
{
- "html": "If method is \"session.new
\", let session be the entry in\n the list of active sessions whose session ID is equal to the\n \"sessionId
\" property of value, append connection to session’s session WebSocket connections, and\n remove connection from the WebSocket connections not associated with\n a session.
"
+ "html": "If method is \"session.new
\", let session be the entry in\n the list of active sessions whose session ID is equal to the\n \"sessionId
\" property of value, append connection to session’s session WebSocket connections, and\n remove connection from the WebSocket connections not associated with\n a session.
"
},
{
- "html": "Let response be a new map matching the CommandResponse
production in the local end definition with the id
field set to command id and the value
field set to value.
"
+ "html": "Let response be a new map matching the CommandResponse
production in the local end definition with the id
field set to command id and the value
field set to value.
"
},
{
"html": "Let serialized be the result of serialize an infra value to JSON\n bytes given response.
"
@@ -379,13 +374,13 @@
"html": "Let command id be null.
"
},
{
- "html": "If parsed is a map and parsed[\"id
\"] exists and is an\n integer greater than or equal to zero, set command id to that integer.
"
+ "html": "If parsed is a map and parsed[\"id
\"] exists and is an\n integer greater than or equal to zero, set command id to that integer.
"
},
{
- "html": "Let error code be invalid argument.
"
+ "html": "Let error code be invalid argument.
"
},
{
- "html": "If parsed is a map and parsed[\"method
\"] exists and is a\n string, but parsed[\"method
\"] is not in the set of all\n command names, set error code to unknown command.
"
+ "html": "If parsed is a map and parsed[\"method
\"] exists and is a\n string, but parsed[\"method
\"] is not in the set of all\n command names, set error code to unknown command.
"
},
{
"html": "Send an error response given connection, command id, and error code.
"
@@ -401,7 +396,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let related navigables be an empty set.
"
+ "html": "Let related navigables be an empty set.
"
},
{
"html": "If settings’ relevant global object is a Window
:",
@@ -435,6 +430,55 @@
}
]
},
+ {
+ "name": "get navigables by ids",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#get-navigables-by-ids",
+ "html": "To get navigables by ids given a list of context ids navigable ids:",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Let result be an empty set.
"
+ },
+ {
+ "html": "For each navigable id in navigable ids:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let navigable be the navigable with id navigable id if such navigable exists, and null otherwise.
"
+ },
+ {
+ "html": "Append navigable to result if navigable is not null.
"
+ }
+ ]
+ },
+ {
+ "html": "Return result.
"
+ }
+ ]
+ },
+ {
+ "name": "get top-level traversables",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#get-top-level-traversables",
+ "html": "To get top-level traversables given a list of navigables navigables:",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Let result be an empty set.
"
+ },
+ {
+ "html": "For each navigable in navigables:",
+ "rationale": "append",
+ "steps": [
+ {
+ "html": "Append navigable’s top-level traversable to result.
"
+ }
+ ]
+ },
+ {
+ "html": "Return result.
"
+ }
+ ]
+ },
{
"name": "emit an event",
"href": "https://www.w3.org/TR/webdriver-bidi/#emit-an-event",
@@ -442,7 +486,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Assert: body has size 2 and contains \"method
\"\n and \"params
\".
"
+ "html": "Assert: body has size 2 and contains \"method
\"\n and \"params
\".
"
},
{
"html": "Let serialized be the result of serialize an infra value to JSON\n bytes given body.
"
@@ -465,7 +509,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let error data be a new map matching the ErrorResponse
production in the local end definition, with the id
field\n set to command id, the error
field set to error code, the message
field set to an implementation-defined string\n containing a human-readable definition of the error that occurred and the stacktrace
field optionally set to an implementation-defined\n string containing a stack trace report of the active stack frames at the\n time when the error occurred.
"
+ "html": "Let error data be a new map matching the ErrorResponse
production in the local end definition, with the id
field\n set to command id, the error
field set to error code, the message
field set to an implementation-defined string\n containing a human-readable definition of the error that occurred and the stacktrace
field optionally set to an implementation-defined\n string containing a stack trace report of the active stack frames at the\n time when the error occurred.
"
},
{
"html": "Let response be the result of serialize an infra value to JSON bytes given error data.
"
@@ -567,13 +611,13 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If name is an empty string, then return error with error code invalid argument.
"
+ "html": "If name is an empty string, then return error with error code invalid argument.
"
},
{
"html": "Let window be navigable’s active window.
"
},
{
- "html": "If sandbox map does not contain window, set sandbox map[window]\n to a new map.
"
+ "html": "If sandbox map does not contain window, set sandbox map[window]\n to a new map.
"
},
{
"html": "Let sandboxes be sandbox map[window].
"
@@ -582,7 +626,7 @@
"html": "If sandboxes does not contain name, set sandboxes[name] to create\n a sandbox realm with navigable.
"
},
{
- "html": "Return success with data sandboxes[name].
"
+ "html": "Return success with data sandboxes[name].
"
}
]
},
@@ -662,7 +706,7 @@
"html": "Remove session from active sessions.
"
},
{
- "html": "If active sessions is empty, set the webdriver-active flag to false.
"
+ "html": "If active sessions is empty, set the webdriver-active flag to false.
"
}
]
},
@@ -676,7 +720,7 @@
"html": "Close the WebSocket connections with session.
"
},
{
- "html": "If active sessions is empty, cleanup remote end state.
"
+ "html": "If active sessions is empty, cleanup remote end state.
"
},
{
"html": "Perform any implementation-specific cleanup steps.
"
@@ -703,177 +747,16 @@
}
]
},
- {
- "name": "update the event map",
- "href": "https://www.w3.org/TR/webdriver-bidi/#update-the-event-map",
- "html": "To update the event map, given session, requested event names, navigables, and enabled:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let global event set be a clone of the global event set for session.
"
- },
- {
- "html": "Let event map be a new map.
"
- },
- {
- "html": "For each key → value of the navigable event map for session:",
- "rationale": "set",
- "steps": [
- {
- "html": "Set event map[key] to a clone of value.
"
- }
- ]
- },
- {
- "html": "Let event names be an empty set.
"
- },
- {
- "html": "For each entry name in requested event names,\n let event names be the union of event names and the result of trying to obtain a set of event names with name.
"
- },
- {
- "html": "Let enabled events be a new map.
"
- },
- {
- "html": "If navigables is null:",
- "rationale": "if",
- "steps": [
- {
- "html": "If enabled is true:",
- "rationale": "for",
- "steps": [
- {
- "html": "For each event name of event names:",
- "rationale": "if",
- "steps": [
- {
- "html": "If global event set doesn’t contain event name:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let already enabled navigables be the event enabled navigables given session and event name.
"
- },
- {
- "html": "Add event name to global event set.
"
- },
- {
- "html": "For each navigable of already enabled navigables, remove event\n name from event map[navigable].
"
- },
- {
- "html": "Let newly enabled contexts be a list of all top-level traversable that are not contained in already enabled navigables,
"
- },
- {
- "html": "Set enabled events[event name] to newly enabled contexts.
"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "html": "If enabled is false:",
- "rationale": "for",
- "steps": [
- {
- "html": "For each event name in event names:",
- "rationale": "if",
- "steps": [
- {
- "html": "If global event set contains event name, remove event\n name from global event set. Otherwise return error with error code invalid argument.
"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "html": "Otherwise, if navigables is not null:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let targets be an empty map.
"
- },
- {
- "html": "For each navigable id in navigables:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
- },
- {
- "html": "Let top-level traversable be the top-level traversable for navigable.
"
- },
- {
- "html": "If event map does not contain top-level traversable, set event\n map[top-level traversable] to a new set.
"
- },
- {
- "html": "Set targets[top-level traversable] to event map[top-level traversable].
"
- }
- ]
- },
- {
- "html": "For each event name in event names:",
- "rationale": "if",
- "steps": [
- {
- "html": "If enabled is true and global event set contains event name, continue.
"
- },
- {
- "html": "For each navigable → target in targets:",
- "rationale": "if",
- "steps": [
- {
- "html": "If enabled is true and target does not contain event name:",
- "rationale": "add",
- "steps": [
- {
- "html": "Add event name to target.
"
- },
- {
- "html": "If enabled events does not contain event name, set enabled\n events[event name] to a new set.
"
- },
- {
- "html": "Append navigable to enabled events[event name].
"
- }
- ]
- },
- {
- "html": "If enabled is false:",
- "rationale": "if",
- "steps": [
- {
- "html": "If target contains event name, remove event name from target. Otherwise return error with error code invalid\n argument.
"
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "html": "Set the global event set for session to global event set.
"
- },
- {
- "html": "Set the navigable event map for session to event map.
"
- },
- {
- "html": "Return success with data enabled events.
"
- }
- ]
- },
{
"name": "webSocketUrl capability deserialization algorithm",
"html": "The additional capability deserialization algorithm for the\n\"webSocketUrl
\" capability, with parameter value is:",
"rationale": ".algorithm",
"steps": [
{
- "html": "If value is not a boolean, return error with code invalid argument.
"
+ "html": "If value is not a boolean, return error with code invalid argument.
"
},
{
- "html": "Return success with data value.
"
+ "html": "Return success with data value.
"
}
]
},
@@ -883,10 +766,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If value is false, return success with data null.
"
+ "html": "If value is false, return success with data null.
"
},
{
- "html": "Return success with data true.
"
+ "html": "Return success with data true.
"
}
]
},
@@ -896,10 +779,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let body be a new map with the following properties:
\n \n - \"ready\"\n
- The remote end’s readiness state.\n
- \"message\"\n
- An implementation-defined string explaining the remote end’s readiness state.\n
"
+ "html": "Let body be a new map with the following properties:
\n \n - \"ready\"\n
- The remote end’s readiness state.\n
- \"message\"\n
- An implementation-defined string explaining the remote end’s readiness state.\n
"
},
{
- "html": "Return success with data body
"
+ "html": "Return success with data body
"
}
]
},
@@ -909,31 +792,31 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If session is not null, return an error with error code session not created.
"
+ "html": "If session is not null, return an error with error code session not created.
"
},
{
- "html": "If the implementation is unable to start a new session for any reason, return\n an error with error code session not created.
"
+ "html": "If the implementation is unable to start a new session for any reason, return\n an error with error code session not created.
"
},
{
- "html": "Let flags be a set containing \"bidi
\".
"
+ "html": "Let flags be a set containing \"bidi
\".
"
},
{
- "html": "Let capabilities json be the result of trying to process capabilities with command parameters and flags.
"
+ "html": "Let capabilities json be the result of trying to process capabilities with command parameters and flags.
"
},
{
"html": "Let capabilities be convert a JSON-derived JavaScript value to an Infra\n value with capabilities json.
"
},
{
- "html": "Let session be the result of trying to create a session with capabilities and flags.
"
+ "html": "Let session be the result of trying to create a session with capabilities and flags.
"
},
{
"html": "Set session’s BiDi flag to true.
"
},
{
- "html": "Let body be a new map matching the session.NewResult
production,\n with the sessionId
field set to session’s session ID, and\n the capabilities
field set to capabilities.
"
+ "html": "Let body be a new map matching the session.NewResult
production,\n with the sessionId
field set to session’s session ID, and\n the capabilities
field set to capabilities.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -946,7 +829,7 @@
"html": "End the session with session.
"
},
{
- "html": "Return success with data null, and in parallel run the following steps:",
+ "html": "Return success with data null, and in parallel run the following steps:",
"rationale": "wait",
"steps": [
{
@@ -965,35 +848,86 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let the list of event names be the value of the events
field of command parameters
"
+ "html": "Let the event names be create a set with command parameters[\"events
\"].
"
},
{
- "html": "Let the list of navigables be the value of the contexts
field of command parameters if it is present or null if it isn’t.
"
+ "html": "Let subscription navigables be a set.
"
},
{
- "html": "Let enabled events be the result of trying to update the event map with session, list of event names , list of navigables and\n enabled true.
"
+ "html": "Let top-level traversable context ids be a set.
"
},
{
- "html": "Let subscribe step events be a new map.
"
+ "html": "Let input context ids be create a set with command parameters[contexts
].
"
},
{
- "html": "For each event name → navigables in enabled events:",
+ "html": "If input context ids is not empty:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let navigables be get navigables by ids with input context ids.
"
+ },
+ {
+ "html": "If size of navigables does not equal size of input context ids:",
+ "rationale": "return",
+ "steps": [
+ {
+ "html": "Return error with error code invalid argument.
"
+ }
+ ]
+ },
+ {
+ "html": "Set subscription navigables be get top-level traversables with navigables.
"
+ },
+ {
+ "html": "For each navigable in subscription navigables:",
+ "rationale": "append",
+ "steps": [
+ {
+ "html": "Append navigable’s navigable id to top-level traversable context ids.
"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "html": "Otherwise, set subscription navigables to a set of all top-level traversables in the remote end.
"
+ },
+ {
+ "html": "Let subscription be a subscription with subscription id set to the string representation of a UUID, event names set to event names, and top-level traversable ids set to top-level traversable context ids.
"
+ },
+ {
+ "html": "Let subscribe step events be a new map.
"
+ },
+ {
+ "html": "For each event name in the event names:",
"rationale": "if",
"steps": [
{
- "html": "If the event with event name event name defines remote end\n subscribe steps, set subscribe step events[event name] to navigables.
"
+ "html": "If the event with event name event name does not define remote end\n subscribe steps, continue;
"
+ },
+ {
+ "html": "Let existing navigables be a set of top-level traversables for which an event is enabled with session and event name.
"
+ },
+ {
+ "html": "Set subscribe step events[event name] to difference of subscription navigables and existing navigables.
"
}
]
},
+ {
+ "html": "Append subscription to session’s subscriptions.
"
+ },
+ {
+ "html": "Append subscription’s subscription id to session’s known subscription ids.
"
+ },
{
"html": "Sort in ascending order subscribe step events using the following less\n than algorithm given two entries with keys event name one and event\n name two:",
"rationale": "let",
"steps": [
{
- "html": "Let event one be the event with name event name one
"
+ "html": "Let event one be the event with name event name one
"
},
{
- "html": "Let event two be the event with name event name two
"
+ "html": "Let event two be the event with name event name two
"
},
{
"html": "Return true if event one’s subscribe priority is less than event\n two’s subscribe priority, or false otherwise.
"
@@ -1001,19 +935,19 @@
]
},
{
- "html": "If list of navigables is null, let include global be true, otherwise let include global be false.
"
+ "html": "If subscription is global, let include global be true, otherwise let include global be false.
"
},
{
"html": "For each event name → navigables in subscribe step events:",
"rationale": "run",
"steps": [
{
- "html": "Run the remote end subscribe steps for the event with event name event name given session, navigables and include global.
"
+ "html": "Run the remote end subscribe steps for the event with event name event name given session, navigables and include global.
"
}
]
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -1023,16 +957,205 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let the list of event names be the value of the events
field of command parameters.
"
- },
- {
- "html": "Let the list of contexts be the value of the contexts
field of command parameters if it is present or null if it isn’t.
"
+ "html": "If command parameters matches the session.UnsubscribeByAttributesRequest
production:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let event names be create a set with command parameters[\"events
\"].
"
+ },
+ {
+ "html": "Let top-level traversable context ids be a set.
"
+ },
+ {
+ "html": "Let input context ids be create a set with command parameters[contexts
].
"
+ },
+ {
+ "html": "If input context ids is not empty:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let navigables be get navigables by ids with input context ids.
"
+ },
+ {
+ "html": "If size of navigables does not equal size of input context ids:",
+ "rationale": "return",
+ "steps": [
+ {
+ "html": "Return error with error code invalid argument.
"
+ }
+ ]
+ },
+ {
+ "html": "Set top-level traversables be get top-level traversables with navigables.
"
+ },
+ {
+ "html": "For each navigable in top-level traversables:",
+ "rationale": "append",
+ "steps": [
+ {
+ "html": "Append navigable’s navigable id to top-level traversable context ids.
"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "html": "Let new subscriptions to be a list.
"
+ },
+ {
+ "html": "For each subscription of session’s subscriptions:",
+ "rationale": "if",
+ "steps": [
+ {
+ "html": "If intersection of subscription’s event names and event names is an empty set:",
+ "rationale": "append",
+ "steps": [
+ {
+ "html": "append subscription to new subscriptions.
"
+ },
+ {
+ "html": "Continue.
"
+ }
+ ]
+ },
+ {
+ "html": "If top-level traversable context ids is an empty set:",
+ "rationale": "remove",
+ "steps": [
+ {
+ "html": "Remove all items contained in event names from subscription’s event names.
"
+ },
+ {
+ "html": "If subscription’s event names is not empty:",
+ "rationale": "append",
+ "steps": [
+ {
+ "html": "append subscription to new subscriptions.
"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "html": "Otherwise:",
+ "rationale": "if",
+ "steps": [
+ {
+ "html": "If subscription is global:",
+ "rationale": "append",
+ "steps": [
+ {
+ "html": "append subscription to new subscriptions.
"
+ }
+ ]
+ },
+ {
+ "html": "Otherwise:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let event map be an empty map.
"
+ },
+ {
+ "html": "For each event name in subscription’s event names:",
+ "rationale": "set",
+ "steps": [
+ {
+ "html": "Set event map[event name] to clone of subscription’s top-level traversable ids.
"
+ }
+ ]
+ },
+ {
+ "html": "For each event name in event names:",
+ "rationale": "if",
+ "steps": [
+ {
+ "html": "If event map[event name] does not exist,\n continue.
"
+ },
+ {
+ "html": "Set event map[event name] to the difference between event map[event name] and top-level traversable context ids.
"
+ },
+ {
+ "html": "If event map[event name] is an empty set,",
+ "rationale": "remove",
+ "steps": [
+ {
+ "html": "Remove event map[event name].
"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "html": "For each event name → remaining top-level traversable ids in event map:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let partial subscription be a subscription with subscription id set to subscription’s subscription id, event names set to a new set containing event name, top-level traversable ids set to remaining top-level traversable ids.
"
+ },
+ {
+ "html": "append partial subscription to new subscriptions.
"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "html": "Set session’s subscriptions to new subscriptions.
"
+ }
+ ]
},
{
- "html": "Try to update the event map with session, list of event names, list of contexts and enabled false.
"
+ "html": "Otherwise:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let subscriptions be create a set with command parameters[subscriptions
].
"
+ },
+ {
+ "html": "Let unknown subscription ids to difference between subscriptions and session’s known subscription ids.
"
+ },
+ {
+ "html": "If unknown subscription ids is not empty:",
+ "rationale": "return",
+ "steps": [
+ {
+ "html": "Return error with error code invalid argument.
"
+ }
+ ]
+ },
+ {
+ "html": "Let subscriptions to remove be an empty set.
"
+ },
+ {
+ "html": "For each subscription in session’s subscriptions:",
+ "rationale": "if",
+ "steps": [
+ {
+ "html": "If subscriptions contains subscription’s subscription id:",
+ "rationale": "append",
+ "steps": [
+ {
+ "html": "Append subscription to subscriptions to remove.
"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "html": "Set session’s known subscription ids to difference between session’s known subscription ids and subscriptions.
"
+ },
+ {
+ "html": "Remove each item in subscriptions to remove from session’s subscriptions.
"
+ }
+ ]
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -1043,10 +1166,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let documents be an empty list.
"
+ "html": "Let documents be an empty list.
"
},
{
- "html": "Let visible documents be an empty list.
"
+ "html": "Let visible documents be an empty list.
"
},
{
"html": "For each top-level traversable traversable:",
@@ -1059,10 +1182,10 @@
"html": "Let document be traversable’s active document.
"
},
{
- "html": "Append document to documents.
"
+ "html": "Append document to documents.
"
},
{
- "html": "If document’s visibility state is \"visible
\", Append document to visible documents.
"
+ "html": "If document’s visibility state is \"visible
\", Append document to visible documents.
"
}
]
},
@@ -1076,7 +1199,7 @@
]
},
{
- "html": "If visible documents is empty but documents is not empty, or if window is otherwise in an OS-specific minimized\n state, return \"minimized
\".
"
+ "html": "If visible documents is empty but documents is not empty, or if window is otherwise in an OS-specific minimized\n state, return \"minimized
\".
"
},
{
"html": "If window is in an OS-specific maximized state return\n \"maximized
\".
"
@@ -1096,13 +1219,13 @@
"html": "Let current state be get the client window state with window.
"
},
{
- "html": "If current state is equal to state, return success with data null.
"
+ "html": "If current state is equal to state, return success with data null.
"
},
{
- "html": "In the following list of conditions and associated steps, run the first set of steps for which the associated condition is true:
\n \n - \"
fullscreen
\" \n - If not fullscreen is supported return error with error code unsupported operation. \n
- \"
normal
\" \n - If not restore client window is supported for window return error with error code unsupported operation. \n
- \"
maximize
\" \n - If not maximize client window is supported for window return error with error code unsupported operation. \n
- \"
minimize
\" \n - If not minimize client window is supported for window return error with error code unsupported operation. \n
"
+ "html": "In the following list of conditions and associated steps, run the first set of steps for which the associated condition is true:
\n \n - \"
fullscreen
\" \n - If not fullscreen is supported return error with error code unsupported operation. \n
- \"
normal
\" \n - If not restore client window is supported for window return error with error code unsupported operation. \n
- \"
maximize
\" \n - If not maximize client window is supported for window return error with error code unsupported operation. \n
- \"
minimize
\" \n - If not minimize client window is supported for window return error with error code unsupported operation. \n
"
},
{
- "html": "Let documents be an empty list.
"
+ "html": "Let documents be an empty list.
"
},
{
"html": "For each top-level traversable traversable:",
@@ -1120,7 +1243,7 @@
]
},
{
- "html": "If documents is empty return error with error code no such client window.
"
+ "html": "If documents is empty return error with error code no such client window.
"
},
{
"html": "If current state is \"fullscreen
\":",
@@ -1146,14 +1269,14 @@
"html": "If document’s visibility state is \"visible
\", fullscreen an element with document’s document element.
"
},
{
- "html": "Break.
"
+ "html": "Break.
"
}
]
}
]
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -1173,7 +1296,7 @@
"html": "If client window can receive keyboard input channeled from the operating\n system, let active be true, otherwise let active be false.
"
},
{
- "html": "Let client window info be a map matching the browser.ClientWindowsInfo
production with the clientWindow
field set to client window id, state
field set to state, the x
field set to client window’s x-coordinate, the y
field set to client\n window’s y-coordinate, the width
field set to client window’s width, the height
field\n set to client window’s height, and the active
field set to active.
"
+ "html": "Let client window info be a map matching the browser.ClientWindowsInfo
production with the clientWindow
field set to client window id, state
field set to state, the x
field set to client window’s x-coordinate, the y
field set to client\n window’s y-coordinate, the width
field set to client window’s width, the height
field\n set to client window’s height, and the active
field set to active.
"
},
{
"html": "Return client window info
"
@@ -1189,7 +1312,7 @@
"html": "End the session with session.
"
},
{
- "html": "If active sessions is not empty an implementation may\n return error with error code unable to close browser, and then\n run the following steps in parallel:",
+ "html": "If active sessions is not empty an implementation may\n return error with error code unable to close browser, and then\n run the following steps in parallel:",
"rationale": "wait",
"steps": [
{
@@ -1213,7 +1336,7 @@
]
},
{
- "html": "Return success with data null, and run the following steps in parallel.",
+ "html": "Return success with data null, and run the following steps in parallel.",
"rationale": "wait",
"steps": [
{
@@ -1226,7 +1349,7 @@
"html": "Close any top-level traversables without prompting to unload.
"
},
{
- "html": "Perform implementation defined steps to clean up resources associated with\n the remote end under automation.
"
+ "html": "Perform implementation defined steps to clean up resources associated with\n the remote end under automation.
"
}
]
}
@@ -1241,13 +1364,13 @@
"html": "Let user context be a new user context.
"
},
{
- "html": "Append user context to the set of user contexts.
"
+ "html": "Append user context to the set of user contexts.
"
},
{
- "html": "Let user context info be a map matching the browser.UserContextInfo
production with the userContext
field set to user context’s user context id.
"
+ "html": "Let user context info be a map matching the browser.UserContextInfo
production with the userContext
field set to user context’s user context id.
"
},
{
- "html": "Return success with data user context info.
"
+ "html": "Return success with data user context info.
"
}
]
},
@@ -1257,10 +1380,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let client window ids be an empty set.
"
+ "html": "Let client window ids be an empty set.
"
},
{
- "html": "Let client windows be an empty list.
"
+ "html": "Let client windows be an empty list.
"
},
{
"html": "For each top-level traversable traversable:",
@@ -1273,24 +1396,24 @@
"html": "Let client window id be the client window id for client window.
"
},
{
- "html": "If client window ids contains client window id, continue.
"
+ "html": "If client window ids contains client window id, continue.
"
},
{
- "html": "Append client window id to client window ids.
"
+ "html": "Append client window id to client window ids.
"
},
{
"html": "Let client window info be get the client window info with client\n window.
"
},
{
- "html": "Append client window info to client windows.
"
+ "html": "Append client window info to client windows.
"
}
]
},
{
- "html": "Let result be a map matching the browser.GetClientWindowsResult
production with the clientWindows
field set to client windows.
"
+ "html": "Let result be a map matching the browser.GetClientWindowsResult
production with the clientWindows
field set to client windows.
"
},
{
- "html": "Return success with data result.
"
+ "html": "Return success with data result.
"
}
]
},
@@ -1300,25 +1423,25 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let user contexts be an empty list.
"
+ "html": "Let user contexts be an empty list.
"
},
{
"html": "For each user context in the set of user contexts:",
"rationale": "let",
"steps": [
{
- "html": "Let user context info be a map matching the browser.UserContextInfo
production with the userContext
field set to user context’s user context id.
"
+ "html": "Let user context info be a map matching the browser.UserContextInfo
production with the userContext
field set to user context’s user context id.
"
},
{
- "html": "Append user context info to user contexts.
"
+ "html": "Append user context info to user contexts.
"
}
]
},
{
- "html": "Let result be a map matching the browser.GetUserContextsResult
production with the userContexts
field set to user contexts.
"
+ "html": "Let result be a map matching the browser.GetUserContextsResult
production with the userContexts
field set to user contexts.
"
},
{
- "html": "Return success with data result.
"
+ "html": "Return success with data result.
"
}
]
},
@@ -1331,13 +1454,13 @@
"html": "Let user context id be command parameters[\"userContext
\"].
"
},
{
- "html": "If user context id is \"default\"
, return error with error\n code invalid argument.
"
+ "html": "If user context id is \"default\"
, return error with error\n code invalid argument.
"
},
{
"html": "Set user context to get user context with user context id.
"
},
{
- "html": "If user context is null, return error with error code no such user context.
"
+ "html": "If user context is null, return error with error code no such user context.
"
},
{
"html": "For each top-level traversable navigable:",
@@ -1355,10 +1478,10 @@
]
},
{
- "html": "Remove user context for the set of user contexts.
"
+ "html": "Remove user context for the set of user contexts.
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -1368,29 +1491,29 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If the implementation does not support setting the client window state at\n all, then return error with error code unsupported operation.
"
+ "html": "If the implementation does not support setting the client window state at\n all, then return error with error code unsupported operation.
"
},
{
- "html": "If there is a client window with client window id command\n parameters[\"clientWindow
\"], let client window be that client\n window. Otherwise return error with error code no such client window.
"
+ "html": "If there is a client window with client window id command\n parameters[\"clientWindow
\"], let client window be that client\n window. Otherwise return error with error code no such client window.
"
},
{
- "html": "Try to set the client window state with client window and command\n parameters[\"state
\"].
"
+ "html": "Try to set the client window state with client window and command\n parameters[\"state
\"].
"
},
{
"html": "If command parameters[\"state
\"] is \"normal
\":",
"rationale": "if",
"steps": [
{
- "html": "If command parameters contains \"x
\" and the\n implementation supports positioning client windows, set the x-coordinate of client window to a value that is as close as\n possible command parameters[\"x
\"].
"
+ "html": "If command parameters contains \"x
\" and the\n implementation supports positioning client windows, set the x-coordinate of client window to a value that is as close as\n possible command parameters[\"x
\"].
"
},
{
- "html": "If command parameters contains \"y
\" and the\n implementation supports positioning client windows, set the y-coordinate of client window to a value that is as close as\n possible command parameters[\"y
\"].
"
+ "html": "If command parameters contains \"y
\" and the\n implementation supports positioning client windows, set the y-coordinate of client window to a value that is as close as\n possible command parameters[\"y
\"].
"
},
{
- "html": "If command parameters contains \"width
\" and the\n implementation supports resizing client windows, set the width of client window to a value that is as close as possible command parameters[\"width
\"].
"
+ "html": "If command parameters contains \"width
\" and the\n implementation supports resizing client windows, set the width of client window to a value that is as close as possible command parameters[\"width
\"].
"
},
{
- "html": "If command parameters contains \"width
\" and the\n implementation supports resizing client windows, set the width of client window to a value that is as close as possible command parameters[\"width
\"].
"
+ "html": "If command parameters contains \"width
\" and the\n implementation supports resizing client windows, set the width of client window to a value that is as close as possible command parameters[\"width
\"].
"
}
]
},
@@ -1398,7 +1521,7 @@
"html": "Let client window info be get the client window info with client window.
"
},
{
- "html": "Return success with data client window info.
"
+ "html": "Return success with data client window info.
"
}
]
},
@@ -1409,16 +1532,16 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If navigable id is null, return success with data null.
"
+ "html": "If navigable id is null, return success with data null.
"
},
{
- "html": "If there is no navigable with navigable id navigable id return error with error code no such frame
"
+ "html": "If there is no navigable with navigable id navigable id return error with error code no such frame
"
},
{
- "html": "Let navigable be the navigable with id navigable id.
"
+ "html": "Let navigable be the navigable with id navigable id.
"
},
{
- "html": "Return success with data navigable.
"
+ "html": "Return success with data navigable.
"
}
]
},
@@ -1429,7 +1552,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let child navigables be a set containing all navigables that are\n a child navigable of navigable.
"
+ "html": "Let child navigables be a set containing all navigables that are\n a child navigable of navigable.
"
},
{
"html": "Return child navigables.
"
@@ -1443,13 +1566,13 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let navigable id be the navigable id for navigable.
"
+ "html": "Let navigable id be the navigable id for navigable.
"
},
{
"html": "Let navigable be navigable’s parent.
"
},
{
- "html": "If navigable is not null let parent id be the navigable id of navigable. Otherwise let parent id be null.
"
+ "html": "If navigable is not null let parent id be the navigable id of navigable. Otherwise let parent id be null.
"
},
{
"html": "Let document be navigable’s active document.
"
@@ -1471,7 +1594,7 @@
"html": "Let child depth be max depth - 1 if max depth is not null, or null otherwise.
"
},
{
- "html": "Set child infos to an empty list.
"
+ "html": "Set child infos to an empty list.
"
},
{
"html": "For each child navigable of child navigables:",
@@ -1491,7 +1614,7 @@
"html": "Let user context be navigable’s associated user context.
"
},
{
- "html": "Let opener id be the navigable id for navigable’s original opener, if navigable’s original opener is not null,\n and null otherwise.
"
+ "html": "Let opener id be the navigable id for navigable’s original opener, if navigable’s original opener is not null,\n and null otherwise.
"
},
{
"html": "Let top-level traversable be navigable’s top-level\n traversable.
"
@@ -1500,7 +1623,7 @@
"html": "Let client window id be the client window id for top-level\n traversable’s associated client window.
"
},
{
- "html": "Let navigable info be a map matching the browsingContext.Info
production with the context
field set to navigable id, the parent
field set to parent id if include parent id is true
, or unset otherwise, the url
field set to url, the userContext
field set\n to user context’s user context id, originalOpener
field\n set to opener id, the children
field set to child infos, and\n the clientWindow
field set to client window id.
"
+ "html": "Let navigable info be a map matching the browsingContext.Info
production with the context
field set to navigable id, the parent
field set to parent id if include parent id is true
, or unset otherwise, the url
field set to url, the userContext
field set\n to user context’s user context id, originalOpener
field\n set to opener id, the children
field set to child infos, and\n the clientWindow
field set to client window id.
"
},
{
"html": "Return navigable info.
"
@@ -1530,15 +1653,15 @@
"rationale": "let",
"steps": [
{
- "html": "Let body be a map matching the browsingContext.NavigateResult
production, with the navigation
field set to navigation id, and the url
field set to the result of the URL serializer given navigate status’s url.
"
+ "html": "Let body be a map matching the browsingContext.NavigateResult
production, with the navigation
field set to navigation id, and the url
field set to the result of the URL serializer given navigate status’s url.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
{
- "html": "If navigate status’s status is \"canceled
\" return error with error code unknown error.
\n TODO: is this the right way to handle errors here?
"
+ "html": "If navigate status’s status is \"canceled
\" return error with error code unknown error.
\n TODO: is this the right way to handle errors here?
"
},
{
"html": "Assert: navigate status’s status is \"pending
\" and navigation id is not null.
"
@@ -1548,10 +1671,10 @@
"rationale": "let",
"steps": [
{
- "html": "Let body be a map matching the browsingContext.NavigateResult
production, with the navigation
field set to navigation id, and the url
field set to the result of the URL serializer given navigate status’s url.
"
+ "html": "Let body be a map matching the browsingContext.NavigateResult
production, with the navigation
field set to navigation id, and the url
field set to the result of the URL serializer given navigate status’s url.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -1562,13 +1685,13 @@
"html": "Let (event received, status) be await given «event name,\n \"download started
\", \"navigation aborted
\",\n \"navigation failed
\"» and navigation id.
"
},
{
- "html": "If event received is \"navigation failed
\"\n return error with error code unknown error.
"
+ "html": "If event received is \"navigation failed
\"\n return error with error code unknown error.
"
},
{
- "html": "Let body be a map matching the browsingContext.NavigateResult
production, with the navigation
field set to status’s id, and the url
field set to the result of the URL serializer given status’s url.
"
+ "html": "Let body be a map matching the browsingContext.NavigateResult
production, with the navigation
field set to status’s id, and the url
field set to the result of the URL serializer given status’s url.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -1579,7 +1702,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let navigable id be the navigable id for navigable.
"
+ "html": "Let navigable id be the navigable id for navigable.
"
},
{
"html": "Let navigation id be navigation status’s id.
"
@@ -1591,7 +1714,7 @@
"html": "Let url be navigation status’s url.
"
},
{
- "html": "Return a map matching the browsingContext.NavigationInfo
production, with the context
field set to navigable id, the navigation
field set to navigation id, the timestamp
field set to timestamp, and the url
field set to the result of the URL serializer given url.
"
+ "html": "Return a map matching the browsingContext.NavigationInfo
production, with the context
field set to navigable id, the navigation
field set to navigation id, the timestamp
field set to timestamp, and the url
field set to the result of the URL serializer given url.
"
}
]
},
@@ -1604,10 +1727,10 @@
"html": "Let navigable id be the value of the command parameters[\"context
\"] field.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
- "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
+ "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
},
{
"html": "Return activate a navigable with navigable.
"
@@ -1621,13 +1744,13 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Run implementation-specific steps so that navigable’s system visibility state becomes visible. If this is not possible return error with error code unsupported operation.
"
+ "html": "Run implementation-specific steps so that navigable’s system visibility state becomes visible. If this is not possible return error with error code unsupported operation.
"
},
{
"html": "Run implementation-specific steps to set the system focus on the navigable if it is not focused.
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -1791,7 +1914,7 @@
"html": "Let viewport rect be a DOMRectReadOnly
with x coordinate viewport page left, y coordinate viewport page top, width dimension viewport width, and height dimension viewport height.
"
},
{
- "html": "Return success with data viewport rect.
"
+ "html": "Return success with data viewport rect.
"
}
]
},
@@ -1805,7 +1928,7 @@
"html": "Let document rect be a DOMRectReadOnly
with x coordinate 0, y\n coordinate 0, width dimension document element scroll height,\n and height dimension document element scroll width.
"
},
{
- "html": "Return success with data document rect.
"
+ "html": "Return success with data document rect.
"
}
]
},
@@ -1817,10 +1940,10 @@
"html": "Let navigable id be the value of the context
field of command parameters if present, or null otherwise.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
- "html": "If the implementation is unable to capture a screenshot of navigable for any\n reason then return error with error code unsupported operation.
"
+ "html": "If the implementation is unable to capture a screenshot of navigable for any\n reason then return error with error code unsupported operation.
"
},
{
"html": "Let document be navigable’s active document.
"
@@ -1832,7 +1955,7 @@
"html": "Let origin be the value of the context
field of command\n parameters if present, or \"viewport\" otherwise.
"
},
{
- "html": "Let origin rect be the result of trying to get the origin rectangle given origin and document.
"
+ "html": "Let origin rect be the result of trying to get the origin rectangle given origin and document.
"
},
{
"html": "Let clip rect be origin rect.
"
@@ -1855,13 +1978,13 @@
"html": "Let realm be environment settings’ realm execution context's\n Realm component.
"
},
{
- "html": "Let element be the result of trying to deserialize remote reference with clip[\"element
\"], realm, and session.
"
+ "html": "Let element be the result of trying to deserialize remote reference with clip[\"element
\"], realm, and session.
"
},
{
- "html": "If element doesn’t implement Element
return error with error code no such element.
"
+ "html": "If element doesn’t implement Element
return error with error code no such element.
"
},
{
- "html": "If element’s node document is not document, return error with error code no such element.
"
+ "html": "If element’s node document is not document, return error with error code no such element.
"
},
{
"html": "Let viewport rect be get the origin rectangle given\n \"viewport
\" and document.
"
@@ -1900,7 +2023,7 @@
"html": "Let rect be the rectangle intersection of origin rect and clip rect.
"
},
{
- "html": "If rect’s width dimension is 0 or rect’s height dimension is 0,\n return error with error code unable to capture screen.
"
+ "html": "If rect’s width dimension is 0 or rect’s height dimension is 0,\n return error with error code unable to capture screen.
"
},
{
"html": "Let canvas be render document to a canvas with document and rect.
"
@@ -1909,13 +2032,13 @@
"html": "Let format be the format
field of command parameters.
"
},
{
- "html": "Let encoding result be the result of trying to encode a canvas as\n Base64 with canvas and format.
"
+ "html": "Let encoding result be the result of trying to encode a canvas as\n Base64 with canvas and format.
"
},
{
- "html": "Let body be a map matching the browsingContext.CaptureScreenshotResult
production, with the data
field set to encoding result.
"
+ "html": "Let body be a map matching the browsingContext.CaptureScreenshotResult
production, with the data
field set to encoding result.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -1931,13 +2054,13 @@
"html": "Let prompt unload be the value of the promptUnload
field of command parameters.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
"html": "Assert: navigable is not null.
"
},
{
- "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
+ "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
},
{
"html": "If prompt unload is true:",
@@ -1958,7 +2081,7 @@
]
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -1974,13 +2097,13 @@
"html": "Let reference navigable id be the value of the referenceContext
field of command parameters, if present, or null otherwise.
"
},
{
- "html": "If reference navigable id is not null, let reference navigable be the\n result of trying to get a navigable with reference navigable id. Otherwise let reference navigable be null.
"
+ "html": "If reference navigable id is not null, let reference navigable be the\n result of trying to get a navigable with reference navigable id. Otherwise let reference navigable be null.
"
},
{
- "html": "If reference navigable is not null and is not a top-level traversable,\nreturn error with error code invalid argument.
"
+ "html": "If reference navigable is not null and is not a top-level traversable,\nreturn error with error code invalid argument.
"
},
{
- "html": "If the implementation is unable to create a new top-level traversable for any\n reason then return error with error code unsupported operation.
"
+ "html": "If the implementation is unable to create a new top-level traversable for any\n reason then return error with error code unsupported operation.
"
},
{
"html": "Let user context be the default user context if reference navigable is null, and reference navigable’ associated user context otherwise.
"
@@ -1989,13 +2112,13 @@
"html": "Let user context id be the value of the userContext
field of command parameters if present, or null otherwise.
"
},
{
- "html": "If user context id is not null, set user context to the result of trying to get user context with user context id.
"
+ "html": "If user context id is not null, set user context to the result of trying to get user context with user context id.
"
},
{
- "html": "If user context is null, return error with error code no such user context.
"
+ "html": "If user context is null, return error with error code no such user context.
"
},
{
- "html": "If the implementation is unable to create a new top-level traversable with associated user context user context for any reason, return error with error code unsupported operation.
"
+ "html": "If the implementation is unable to create a new top-level traversable with associated user context user context for any reason, return error with error code unsupported operation.
"
},
{
"html": "Let traversable be the result of trying to create a new top-level traversable steps with null and empty string,\n and setting the associated user context for the newly created top-level traversable to user context.\n Which OS window the new top-level traversable is created in depends on type and reference navigable:
\n "
@@ -2005,18 +2128,18 @@
"rationale": "let",
"steps": [
{
- "html": "Let activate result be the result of activate a navigable with the newly created navigable.
"
+ "html": "Let activate result be the result of activate a navigable with the newly created navigable.
"
},
{
- "html": "If activate result is an error, return activate result.
"
+ "html": "If activate result is an error, return activate result.
"
}
]
},
{
- "html": "Let body be a map matching the browsingContext.CreateResult
production, with the context
field set to traversable’s navigable id.
"
+ "html": "Let body be a map matching the browsingContext.CreateResult
production, with the context
field set to traversable’s navigable id.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -2032,13 +2155,13 @@
"html": "Let max depth be the value of the maxDepth
field of command\n parameters if present, or null otherwise.
"
},
{
- "html": "Let navigables be an empty list.
"
+ "html": "Let navigables be an empty list.
"
},
{
- "html": "If root id is not null, append the result of trying to get a navigable given root id to navigables.\n Otherwise append all top-level traversables to navigables.
"
+ "html": "If root id is not null, append the result of trying to get a navigable given root id to navigables.\n Otherwise append all top-level traversables to navigables.
"
},
{
- "html": "Let navigables infos be an empty list.
"
+ "html": "Let navigables infos be an empty list.
"
},
{
"html": "For each navigable of navigables:",
@@ -2053,10 +2176,10 @@
]
},
{
- "html": "Let body be a map matching the browsingContext.GetTreeResult
production, with the contexts
field set to navigables infos.
"
+ "html": "Let body be a map matching the browsingContext.GetTreeResult
production, with the contexts
field set to navigables infos.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -2069,7 +2192,7 @@
"html": "Let navigable id be the value of the context
field of command parameters.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
"html": "Let accept be the value of the accept
field of command\n parameters if present, or true otherwise.
"
@@ -2078,10 +2201,10 @@
"html": "Let userText be the value of the userText
field of command\n parameters if present, or the empty string otherwise.
"
},
{
- "html": "If navigable is currently showing a simple dialog from a call to alert then\n acknowledge the prompt.
\n Otherwise if navigable is currently showing a simple dialog from a call to confirm, then respond positively if accept is true, or respond\n negatively if accept is false.
\n Otherwise if navigable is currently showing a simple dialog from a call to prompt, then respond with the string value userText if accept is\n true, or abort if accept is false.
\n Otherwise, if navigable is currently showing a prompt as part of the prompt\n to unload steps, then confirm the navigation if accept is true, otherwise\n refuse the navigation.
\n Otherwise return error with error code no such alert.
"
+ "html": "If navigable is currently showing a simple dialog from a call to alert then\n acknowledge the prompt.
\n Otherwise if navigable is currently showing a simple dialog from a call to confirm, then respond positively if accept is true, or respond\n negatively if accept is false.
\n Otherwise if navigable is currently showing a simple dialog from a call to prompt, then respond with the string value userText if accept is\n true, or abort if accept is false.
\n Otherwise, if navigable is currently showing a prompt as part of the prompt\n to unload steps, then confirm the navigation if accept is true, otherwise\n refuse the navigation.
\n Otherwise return error with error code no such alert.
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -2092,13 +2215,13 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let returned nodes be an empty list.
"
+ "html": "Let returned nodes be an empty list.
"
},
{
"html": "Let parse result be the result of parse a selector given selector.
"
},
{
- "html": "If parse result is failure, return error with error code invalid selector.
"
+ "html": "If parse result is failure, return error with error code invalid selector.
"
},
{
"html": "For each context node of context nodes:",
@@ -2112,17 +2235,17 @@
"rationale": "append",
"steps": [
{
- "html": "Append element to returned nodes.
"
+ "html": "Append element to returned nodes.
"
},
{
- "html": "If maximum returned node count is not null and size of returned nodes is equal to maximum returned node count,\n return success with data returned nodes.
"
+ "html": "If maximum returned node count is not null and size of returned nodes is equal to maximum returned node count,\n return success with data returned nodes.
"
}
]
}
]
},
{
- "html": "Return success with data returned nodes.
"
+ "html": "Return success with data returned nodes.
"
}
]
},
@@ -2133,14 +2256,14 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let returned nodes be an empty list.
"
+ "html": "Let returned nodes be an empty list.
"
},
{
"html": "For each context node of context nodes:",
"rationale": "let",
"steps": [
{
- "html": "Let evaluate result be the result of calling evaluate on navigable’s active document, with arguments selector, context node, null, ORDERED_NODE_SNAPSHOT_TYPE, and null. If this throws a \"SyntaxError\" DOMException, return error with error code invalid selector;\n otherwise, if this throws any other exception return error with error code unknown error.
"
+ "html": "Let evaluate result be the result of calling evaluate on navigable’s active document, with arguments selector, context node, null, ORDERED_NODE_SNAPSHOT_TYPE, and null. If this throws a \"SyntaxError\" DOMException, return error with error code invalid selector;\n otherwise, if this throws any other exception return error with error code unknown error.
"
},
{
"html": "Let index be 0.
"
@@ -2156,10 +2279,10 @@
"html": "Let node be the result of calling snapshotItem with evaluate result as this and index as the argument.
"
},
{
- "html": "Append node to returned nodes.
"
+ "html": "Append node to returned nodes.
"
},
{
- "html": "If maximum returned node count not null and size of returned nodes is equal to maximum returned node count,\n return success with data returned nodes.
"
+ "html": "If maximum returned node count not null and size of returned nodes is equal to maximum returned node count,\n return success with data returned nodes.
"
},
{
"html": "Set index to index + 1.
"
@@ -2169,7 +2292,7 @@
]
},
{
- "html": "Return success with data returned nodes.
"
+ "html": "Return success with data returned nodes.
"
}
]
},
@@ -2180,10 +2303,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If selector is the empty string, return error with error code invalid selector.
"
+ "html": "If selector is the empty string, return error with error code invalid selector.
"
},
{
- "html": "Let returned nodes be an empty list.
"
+ "html": "Let returned nodes be an empty list.
"
},
{
"html": "If ignore case is false, let search text be selector. Otherwise, let search text be the result of toUppercase with selector according\n to the Unicode Default Case Conversion algorithm.
"
@@ -2197,24 +2320,24 @@
"rationale": "let",
"steps": [
{
- "html": "Let child nodes be an empty list.
"
+ "html": "Let child nodes be an empty list.
"
},
{
"html": "For each node child in the children of context node.",
"rationale": "append",
"steps": [
{
- "html": "Append child to child nodes.
"
+ "html": "Append child to child nodes.
"
}
]
},
{
- "html": "Extend returned nodes with the result of trying to locate nodes using inner text with child nodes, selector, max depth, match type, ignore case, and maximum returned node count.
"
+ "html": "Extend returned nodes with the result of trying to locate nodes using inner text with child nodes, selector, max depth, match type, ignore case, and maximum returned node count.
"
}
]
},
{
- "html": "If context node does not implement HTMLElement
then continue.
"
+ "html": "If context node does not implement HTMLElement
then continue.
"
},
{
"html": "Let node inner text be the result of calling the innerText getter steps with context node as the this value.
"
@@ -2227,23 +2350,23 @@
"rationale": "let",
"steps": [
{
- "html": "Let child nodes be an empty list and, for each node child in the children of context node:",
+ "html": "Let child nodes be an empty list and, for each node child in the children of context node:",
"rationale": "append",
"steps": [
{
- "html": "Append child to child nodes.
"
+ "html": "Append child to child nodes.
"
}
]
},
{
- "html": "If size of child nodes is equal to 0 or max depth is equal to 0,\n perform the following steps:",
+ "html": "If size of child nodes is equal to 0 or max depth is equal to 0,\n perform the following steps:",
"rationale": "if",
"steps": [
{
- "html": "If match type is \"full\"
and node text is search text, append context node to returned nodes.
"
+ "html": "If match type is \"full\"
and node text is search text, append context node to returned nodes.
"
},
{
- "html": "Otherwise, if match type is \"partial\"
, append context node to returned nodes.
"
+ "html": "Otherwise, if match type is \"partial\"
, append context node to returned nodes.
"
}
]
},
@@ -2258,7 +2381,7 @@
"html": "Let child node matches be the result of locate nodes using inner text with child nodes, selector, child max depth , match type, ignore case, and maximum returned node count.
"
},
{
- "html": "If size of child node matches is equal to 0 and match type is \"partial\"
, append context node to returned nodes. Otherwise, extend returned nodes with child node matches.
"
+ "html": "If size of child node matches is equal to 0 and match type is \"partial\"
, append context node to returned nodes. Otherwise, extend returned nodes with child node matches.
"
}
]
}
@@ -2267,10 +2390,10 @@
]
},
{
- "html": "If maximum returned node count is not null, remove all entries\n in returned nodes with an index greater than or equal to maximum returned\n node count.
"
+ "html": "If maximum returned node count is not null, remove all entries\n in returned nodes with an index greater than or equal to maximum returned\n node count.
"
},
{
- "html": "Return success with data returned nodes.
"
+ "html": "Return success with data returned nodes.
"
}
]
},
@@ -2285,7 +2408,7 @@
"rationale": "set",
"steps": [
{
- "html": "Set returned nodes to an empty list.
"
+ "html": "Set returned nodes to an empty list.
"
}
]
},
@@ -2301,7 +2424,7 @@
"rationale": "if",
"steps": [
{
- "html": "If selector contains \"role
\":",
+ "html": "If selector contains \"role
\":",
"rationale": "let",
"steps": [
{
@@ -2319,7 +2442,7 @@
]
},
{
- "html": "If selector contains \"name
\":",
+ "html": "If selector contains \"name
\":",
"rationale": "let",
"steps": [
{
@@ -2346,24 +2469,24 @@
"rationale": "if",
"steps": [
{
- "html": "If maximum returned node count is not null and size of returned\nnodes is equal to maximum returned node count, break.
"
+ "html": "If maximum returned node count is not null and size of returned\nnodes is equal to maximum returned node count, break.
"
},
{
- "html": "Append context node to returned nodes.
"
+ "html": "Append context node to returned nodes.
"
}
]
},
{
- "html": "Let child nodes be an empty list and, for each node child in the children of context node:",
+ "html": "Let child nodes be an empty list and, for each node child in the children of context node:",
"rationale": "if",
"steps": [
{
- "html": "If child implements Element
, append child to child nodes.
"
+ "html": "If child implements Element
, append child to child nodes.
"
}
]
},
{
- "html": "Try to collect nodes using accessibility attributes with child nodes, selector, maximum returned node count, and returned nodes.
"
+ "html": "Try to collect nodes using accessibility attributes with child nodes, selector, maximum returned node count, and returned nodes.
"
}
]
},
@@ -2379,7 +2502,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If selector does not contain \"role
\" and selector does not contain \"name
\", return error with error code invalid selector.
"
+ "html": "If selector does not contain \"role
\" and selector does not contain \"name
\", return error with error code invalid selector.
"
},
{
"html": "Return the result of collect nodes using accessibility attributes with context nodes, selector, maximum returned node count, and null.
"
@@ -2395,40 +2518,40 @@
"html": "Let navigable id be command parameters[\"context
\"].
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
"html": "Assert: navigable is not null.
"
},
{
- "html": "Let realm be the result of trying to get a realm from a navigable with navigable id of navigable and null.
"
+ "html": "Let realm be the result of trying to get a realm from a navigable with navigable id of navigable and null.
"
},
{
"html": "Let locator be command parameters[\"locator
\"].
"
},
{
- "html": "If command parameters contains \"startNodes
\", let start nodes parameter be command parameters[\"startNodes
\"].\n Otherwise let start nodes parameter be null.
"
+ "html": "If command parameters contains \"startNodes
\", let start nodes parameter be command parameters[\"startNodes
\"].\n Otherwise let start nodes parameter be null.
"
},
{
- "html": "If command parameters contains \"maxNodeCount
\", let maximum returned node count be command parameters[\"maxNodeCount
\"].\n Otherwise, let maximum returned node count be null.
"
+ "html": "If command parameters contains \"maxNodeCount
\", let maximum returned node count be command parameters[\"maxNodeCount
\"].\n Otherwise, let maximum returned node count be null.
"
},
{
- "html": "Let context nodes be an empty list.
"
+ "html": "Let context nodes be an empty list.
"
},
{
- "html": "If start nodes parameter is null, append the document element of navigable’s active document to context nodes. Otherwise, for each serialized start node in start nodes parameter:",
+ "html": "If start nodes parameter is null, append the document element of navigable’s active document to context nodes. Otherwise, for each serialized start node in start nodes parameter:",
"rationale": "let",
"steps": [
{
- "html": "Let start node be the result of trying to deserialize shared reference given serialized start node, realm and session.
"
+ "html": "Let start node be the result of trying to deserialize shared reference given serialized start node, realm and session.
"
},
{
- "html": "Append start node to context nodes.
"
+ "html": "Append start node to context nodes.
"
}
]
},
{
- "html": "Assert size of context nodes is greater than 0.
"
+ "html": "Assert size of context nodes is greater than 0.
"
},
{
"html": "Let type be locator[\"type
\"].
"
@@ -2441,7 +2564,7 @@
"html": "Let selector be locator[\"value
\"].
"
},
{
- "html": "Let result nodes be a result of trying to locate nodes using css given navigable, context nodes, selector and maximum returned\n nodes.
"
+ "html": "Let result nodes be a result of trying to locate nodes using css given navigable, context nodes, selector and maximum returned\n nodes.
"
}
],
"additional": [
@@ -2453,7 +2576,7 @@
"html": "Let selector be locator[\"value
\"].
"
},
{
- "html": "Let result nodes be a result of trying to locate nodes using xpath given navigable, context nodes, selector and maximum returned\n nodes.
"
+ "html": "Let result nodes be a result of trying to locate nodes using xpath given navigable, context nodes, selector and maximum returned\n nodes.
"
}
]
},
@@ -2465,16 +2588,16 @@
"html": "Let selector be locator[\"value
\"].
"
},
{
- "html": "If locator contains maxDepth
, let max depth be locator[\"maxDepth
\"]. Otherwise, let max depth be null.
"
+ "html": "If locator contains maxDepth
, let max depth be locator[\"maxDepth
\"]. Otherwise, let max depth be null.
"
},
{
- "html": "If locator contains ignoreCase
, let ignore case be locator[\"ignoreCase
\"]. Otherwise, let ignore case be false.
"
+ "html": "If locator contains ignoreCase
, let ignore case be locator[\"ignoreCase
\"]. Otherwise, let ignore case be false.
"
},
{
- "html": "If locator contains matchType
, let match type be locator[\"matchType
\"]. Otherwise, let match type be \"full\".
"
+ "html": "If locator contains matchType
, let match type be locator[\"matchType
\"]. Otherwise, let match type be \"full\".
"
},
{
- "html": "Let result nodes be a result of trying to locate nodes using inner text given context nodes, selector, max depth, match type, ignore case and maximum returned node count.
"
+ "html": "Let result nodes be a result of trying to locate nodes using inner text given context nodes, selector, max depth, match type, ignore case and maximum returned node count.
"
}
]
},
@@ -2493,34 +2616,34 @@
]
},
{
- "html": "Assert: maximum returned node count is null or size of result nodes is less\n than or equal to maximum returned node count.
"
+ "html": "Assert: maximum returned node count is null or size of result nodes is less\n than or equal to maximum returned node count.
"
},
{
- "html": "If command parameters contains \"serializationOptions
\",\n let serialization options be command parameters[\"serializationOptions
\"].\n Otherwise, let serialization options be a map matching the script.SerializationOptions
production with the fields\n set to their default values.
"
+ "html": "If command parameters contains \"serializationOptions
\",\n let serialization options be command parameters[\"serializationOptions
\"].\n Otherwise, let serialization options be a map matching the script.SerializationOptions
production with the fields\n set to their default values.
"
},
{
"html": "Let result ownership be \"none\".
"
},
{
- "html": "Let serialized nodes be an empty list.
"
+ "html": "Let serialized nodes be an empty list.
"
},
{
"html": "For each result node in result nodes:",
"rationale": "let",
"steps": [
{
- "html": "Let serialized node be the result of serialize as a remote value with result node, serialization options, result ownership, a new map as serialization internal map, realm and session.
"
+ "html": "Let serialized node be the result of serialize as a remote value with result node, serialization options, result ownership, a new map as serialization internal map, realm and session.
"
},
{
- "html": "Append serialized node to serialized nodes.
"
+ "html": "Append serialized node to serialized nodes.
"
}
]
},
{
- "html": "Let result be a map matching the browsingContext.LocateNodesResult
production, with the nodes
field set serialized nodes.
"
+ "html": "Let result be a map matching the browsingContext.LocateNodesResult
production, with the nodes
field set serialized nodes.
"
},
{
- "html": "Return success with data result.
"
+ "html": "Return success with data result.
"
}
]
},
@@ -2533,7 +2656,7 @@
"html": "Let navigable id be the value of the context
field of command parameters.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
"html": "Assert: navigable is not null.
"
@@ -2554,7 +2677,7 @@
"html": "Let url record be the result of applying the URL parser to url,\n with base URL base.
"
},
{
- "html": "If url record is failure, return error with error code invalid\n argument.
"
+ "html": "If url record is failure, return error with error code invalid\n argument.
"
},
{
"html": "Let request be a new request whose URL is url record.
"
@@ -2572,16 +2695,16 @@
"html": "Let navigable id be the value of the context
field of command parameters.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
- "html": "If the implementation is unable to provide a paginated representation of navigable for any reason then return error with error code unsupported operation.
"
+ "html": "If the implementation is unable to provide a paginated representation of navigable for any reason then return error with error code unsupported operation.
"
},
{
- "html": "Let margin be the value of the margin
field of command\n parameters if present, or otherwise a map matching the browsingContext.PrintMarginParameters
with the fields set to\n their default values.
"
+ "html": "Let margin be the value of the margin
field of command\n parameters if present, or otherwise a map matching the browsingContext.PrintMarginParameters
with the fields set to\n their default values.
"
},
{
- "html": "Let page size be the value of the page
field of command\n parameters if present, or otherwise a map matching the browsingContext.PrintPageParameters
with the fields set to\n their default values.
"
+ "html": "Let page size be the value of the page
field of command\n parameters if present, or otherwise a map matching the browsingContext.PrintPageParameters
with the fields set to\n their default values.
"
}
]
},
@@ -2590,7 +2713,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let page ranges be the value of the pageRanges
field of command parameters if present or an empty list otherwise.
"
+ "html": "Let page ranges be the value of the pageRanges
field of command parameters if present or an empty list otherwise.
"
},
{
"html": "Let document be navigable’s active document.
"
@@ -2603,7 +2726,7 @@
"html": "Let pdf data be the result taking UA-specific steps to generate a\n paginated representation of document, with the CSS media type set to print
, encoded as a PDF, with the following paper settings:
\n \n \n \n Property \n | Value \n |
\n Width in cm \n | page size[\"width \"] if command parameters[\"orientation \"] is\n \"portrait \" otherwise page size[\"height \"] \n |
\n Height in cm \n | page size[\"height \"] if command parameters[\"orientation \"] is\n \"portrait \" otherwise page size[\"width \"] \n |
\n Top margin, in cm \n | margin[\"top \"] \n |
\n Bottom margin, in cm \n | margin[\"bottom \"] \n |
\n Left margin, in cm \n | margin[\"left \"] \n |
\n Right margin, in cm \n | margin[\"right \"] \n |
\n In addition, the following formatting hints should be applied by the UA:
\n \n - If command parameters[\"
scale
\"] is not equal to 1
: \n - Zoom the size of the content by a factor command parameters[\"
scale
\"] \n - If command parameters[\"
background
\"] is false: \n - Suppress output of background images \n
- If command parameters[\"
shrinkToFit
\"] is true: \n - Resize the content to match the page width, overriding any page\n width specified in the content \n
"
},
{
- "html": "If page ranges is not empty, let pages be the result of trying to parse a page range with page ranges and the number of\n pages contained in pdf data, then remove any pages from pdf data whose one-based index is not contained in pages.
"
+ "html": "If page ranges is not empty, let pages be the result of trying to parse a page range with page ranges and the number of\n pages contained in pdf data, then remove any pages from pdf data whose one-based index is not contained in pages.
"
},
{
"html": "Let encoding result be the result of calling Base64 Encode on pdf data.
"
@@ -2612,10 +2735,10 @@
"html": "Let encoded data be encoding result’s data.
"
},
{
- "html": "Let body be a map matching the browsingContext.PrintResult
production, with the data
field set to encoded data.
"
+ "html": "Let body be a map matching the browsingContext.PrintResult
production, with the data
field set to encoded data.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
}
@@ -2630,7 +2753,7 @@
"html": "Let navigable id be the value of the context
field of command parameters.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
"html": "Assert: navigable is not null.
"
@@ -2664,16 +2787,16 @@
"html": "Let navigable id be the value of the context
field of command\n parameters.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
- "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
+ "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
},
{
- "html": "If the implementation is unable to adjust the navigable’s layout viewport parameters with the given command parameters for any reason, return error with error code unsupported operation.
"
+ "html": "If the implementation is unable to adjust the navigable’s layout viewport parameters with the given command parameters for any reason, return error with error code unsupported operation.
"
},
{
- "html": "If command parameters contains the viewport
field:",
+ "html": "If command parameters contains the viewport
field:",
"rationale": "let",
"steps": [
{
@@ -2691,7 +2814,7 @@
"html": "Run the CSSOM View § 13.1 Resizing viewports steps.
"
},
{
- "html": "If command parameters contains the devicePixelRatio
field:",
+ "html": "If command parameters contains the devicePixelRatio
field:",
"rationale": "let",
"steps": [
{
@@ -2702,7 +2825,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let navigable be the navigable whose active document is navigable’s active document.
"
+ "html": "Let navigable be the navigable whose active document is navigable’s active document.
"
},
{
"html": "If device pixel ratio is not null:",
@@ -2730,7 +2853,7 @@
"html": "For the purposes of the resolution media feature, use the implementation’s default behavior,\n without any changes made by previous invocations of these steps.
"
},
{
- "html": "Remove navigable from device pixel ratio overrides.
"
+ "html": "Remove navigable from device pixel ratio overrides.
"
}
]
},
@@ -2742,7 +2865,7 @@
]
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -2752,10 +2875,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let navigable be the result of trying to get a navigable with command parameters[\"context
\"].
"
+ "html": "Let navigable be the result of trying to get a navigable with command parameters[\"context
\"].
"
},
{
- "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
+ "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
},
{
"html": "Assert: navigable is not null.
"
@@ -2791,7 +2914,7 @@
"html": "Let is valid entry be await with «\"check history
\"», and resume id.
"
},
{
- "html": "If is valid entry is false, return error with error code no such\n history entry.
"
+ "html": "If is valid entry is false, return error with error code no such\n history entry.
"
},
{
"html": "Traverse the history by a delta given delta and navigable.
"
@@ -2800,10 +2923,10 @@
"html": "TODO: Support waiting for the history traversal to complete.
"
},
{
- "html": "Let body be a map matching the browsingContext.TraverseHistoryResult
production.
"
+ "html": "Let body be a map matching the browsingContext.TraverseHistoryResult
production.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -2862,7 +2985,7 @@
"html": "Let params be the result of get the navigable info given navigable, 0, and true.
"
},
{
- "html": "Let body be a map matching the browsingContext.ContextCreated
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.ContextCreated
production, with the params
field set to params.
"
},
{
"html": "Emit an event with session and body.
"
@@ -2882,7 +3005,7 @@
"html": "If the navigable cache behavior with navigable is \"bypass
\",\n then perform implementation-defined steps to disable any implementation-specific\n resource caches for network requests originating from navigable.
"
},
{
- "html": "Let related navigables be a set containing navigable.
"
+ "html": "Let related navigables be a set containing navigable.
"
},
{
"html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.contextCreated
\" and related navigables:",
@@ -2918,10 +3041,10 @@
"html": "Let params be the result of get the navigable info, given navigable, null, and true.
"
},
{
- "html": "Let body be a map matching the browsingContext.ContextDestroyed
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.ContextDestroyed
production, with the params
field set to params.
"
},
{
- "html": "Let related navigables be a set containing navigable’s parent,\n if that is not null, or an empty set otherwise.
"
+ "html": "Let related navigables be a set containing navigable’s parent,\n if that is not null, or an empty set otherwise.
"
},
{
"html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.contextDestroyed
\" and related navigables:",
@@ -2929,6 +3052,36 @@
"steps": [
{
"html": "Emit an event with session and body.
"
+ },
+ {
+ "html": "Let subscriptions to remove be a set.
"
+ },
+ {
+ "html": "For each subscription in session’s subscriptions:",
+ "rationale": "if",
+ "steps": [
+ {
+ "html": "If subscription’s top-level traversable ids contains navigable’s navigable id;",
+ "rationale": "remove",
+ "steps": [
+ {
+ "html": "Remove navigable’s navigable id from subscription’s top-level traversable ids.
"
+ },
+ {
+ "html": "If subscription’s top-level traversable ids is empty:",
+ "rationale": "append",
+ "steps": [
+ {
+ "html": "Append subscription to subscriptions to remove.
"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "html": "Remove subscriptions to remove from session’s subscriptions.
"
}
]
}
@@ -2944,13 +3097,13 @@
"html": "Let params be the result of get the navigation info given navigable and navigation status.
"
},
{
- "html": "Let body be a map matching the browsingContext.NavigationStarted
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.NavigationStarted
production, with the params
field set to params.
"
},
{
"html": "Let navigation id be navigation status’s id.
"
},
{
- "html": "Let related navigables be a set containing navigable.
"
+ "html": "Let related navigables be a set containing navigable.
"
},
{
"html": "Resume with \"navigation started
\", navigation id, and navigation status.
"
@@ -2976,13 +3129,13 @@
"html": "Let params be the result of get the navigation info given navigable and navigation status.
"
},
{
- "html": "Let body be a map matching the browsingContext.FragmentNavigated
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.FragmentNavigated
production, with the params
field set to params.
"
},
{
"html": "Let navigation id be navigation status’s id.
"
},
{
- "html": "Let related navigable be a set containing navigable.
"
+ "html": "Let related navigable be a set containing navigable.
"
},
{
"html": "Resume with \"fragment navigated
\", navigation id, and navigation status.
"
@@ -3008,13 +3161,13 @@
"html": "Let url be the result of running the URL serializer,\n given navigable’s active browsing context's active document's URL.
"
},
{
- "html": "Let params be a map matching the browsingContext.HistoryUpdatedParameters
production,\n with the url
field set to url and\n the context
field set to navigable’s navigable id.
"
+ "html": "Let params be a map matching the browsingContext.HistoryUpdatedParameters
production,\n with the url
field set to url and\n the context
field set to navigable’s navigable id.
"
},
{
- "html": "Let body be a map matching the browsingContext.HistoryUpdated
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.HistoryUpdated
production, with the params
field set to params.
"
},
{
- "html": "Let related browsing contexts be a set containing navigable’s active browsing context.
"
+ "html": "Let related browsing contexts be a set containing navigable’s active browsing context.
"
},
{
"html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.historyUpdated
\" and related browsing contexts:",
@@ -3037,10 +3190,10 @@
"html": "Let params be the result of get the navigation info given navigable and navigation status.
"
},
{
- "html": "Let body be a map matching the browsingContext.DomContentLoaded
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.DomContentLoaded
production, with the params
field set to params.
"
},
{
- "html": "Let related navigables be a set containing navigable.
"
+ "html": "Let related navigables be a set containing navigable.
"
},
{
"html": "Let navigation id be navigation status’s id.
"
@@ -3069,10 +3222,10 @@
"html": "Let params be the result of get the navigation info given navigable and navigation status.
"
},
{
- "html": "Let body be a map matching the browsingContext.Load
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.Load
production, with the params
field set to params.
"
},
{
- "html": "Let related navigables be a set containing navigable.
"
+ "html": "Let related navigables be a set containing navigable.
"
},
{
"html": "Let navigation id be navigation status’s id.
"
@@ -3101,13 +3254,13 @@
"html": "Let params be the result of get the navigation info given navigable and navigation status.
"
},
{
- "html": "Let body be a map matching the browsingContext.DownloadWillBegin
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.DownloadWillBegin
production, with the params
field set to params.
"
},
{
"html": "Let navigation id be navigation status’s id.
"
},
{
- "html": "Let related navigables be a set containing navigable.
"
+ "html": "Let related navigables be a set containing navigable.
"
},
{
"html": "Resume with \"download started
\", navigation id, and navigation status.
"
@@ -3133,13 +3286,13 @@
"html": "Let params be the result of get the navigation info given navigable and navigation status.
"
},
{
- "html": "Let body be a map matching the browsingContext.NavigationAborted
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.NavigationAborted
production, with the params
field set to params.
"
},
{
"html": "Let navigation id be navigation status’s id.
"
},
{
- "html": "Let related navigables be a set containing navigable.
"
+ "html": "Let related navigables be a set containing navigable.
"
},
{
"html": "Resume with \"navigation aborted
\", navigation id, and navigation status.
"
@@ -3165,13 +3318,13 @@
"html": "Let params be the result of get the navigation info given navigable and navigation status.
"
},
{
- "html": "Let body be a map matching the browsingContext.NavigationFailed
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.NavigationFailed
production, with the params
field set to params.
"
},
{
"html": "Let navigation id be navigation status’s id.
"
},
{
- "html": "Let related navigables be a set containing navigable.
"
+ "html": "Let related navigables be a set containing navigable.
"
},
{
"html": "Resume with \"navigation failed
\", navigation id, and navigation status.
"
@@ -3197,16 +3350,16 @@
"html": "Let navigable be window’s navigable.
"
},
{
- "html": "Let navigable id be the navigable id for navigable.
"
+ "html": "Let navigable id be the navigable id for navigable.
"
},
{
- "html": "Let params be a map matching the browsingContext.UserPromptClosedParameters
production with the context
field set to navigable id, the accepted
field set to accepted, the type
field set to type, and the userText
field set to user text if user text is not null or\n omitted otherwise.
"
+ "html": "Let params be a map matching the browsingContext.UserPromptClosedParameters
production with the context
field set to navigable id, the accepted
field set to accepted, the type
field set to type, and the userText
field set to user text if user text is not null or\n omitted otherwise.
"
},
{
- "html": "Let body be a map matching the BrowsingContextUserPromptClosedEvent
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the BrowsingContextUserPromptClosedEvent
production, with the params
field set to params.
"
},
{
- "html": "Let related navigables be a set containing navigable.
"
+ "html": "Let related navigables be a set containing navigable.
"
},
{
"html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.userPromptClosed
\" and related navigables:",
@@ -3229,7 +3382,7 @@
"html": "Let navigable be window’s navigable.
"
},
{
- "html": "Let navigable id be the navigable id for navigable.
"
+ "html": "Let navigable id be the navigable id for navigable.
"
},
{
"html": "Let handler configuration be get the prompt handler with type.
"
@@ -3238,13 +3391,13 @@
"html": "Let handler be handler configuration’s handler.
"
},
{
- "html": "Let params be a map matching the browsingContext.UserPromptOpenedParameters
production with the context
field set to navigable id, the type
field\n set to type, the message
field set to message, the defaultValue
field set to default value if default value is\n not null or omitted otherwise, and the handler
field set to handler.
"
+ "html": "Let params be a map matching the browsingContext.UserPromptOpenedParameters
production with the context
field set to navigable id, the type
field\n set to type, the message
field set to message, the defaultValue
field set to default value if default value is\n not null or omitted otherwise, and the handler
field set to handler.
"
},
{
- "html": "Let body be a map matching the browsingContext.UserPromptOpened
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the browsingContext.UserPromptOpened
production, with the params
field set to params.
"
},
{
- "html": "Let related navigables be a set containing navigable.
"
+ "html": "Let related navigables be a set containing navigable.
"
},
{
"html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.userPromptOpened
\" and related navigables:",
@@ -3290,7 +3443,7 @@
"rationale": "if",
"steps": [
{
- "html": "If intercept’s contexts
does not contain navigable id:",
+ "html": "If intercept’s contexts
does not contain navigable id:",
"rationale": "continue",
"steps": [
{
@@ -3301,18 +3454,18 @@
]
},
{
- "html": "If intercept’s phases
contains phase:",
+ "html": "If intercept’s phases
contains phase:",
"rationale": "let",
"steps": [
{
"html": "Let url patterns be intercept’s url patterns
.
"
},
{
- "html": "If url patterns is empty:",
+ "html": "If url patterns is empty:",
"rationale": "append",
"steps": [
{
- "html": "Append intercept id to intercepts.
"
+ "html": "Append intercept id to intercepts.
"
},
{
"html": "Continue.
"
@@ -3328,7 +3481,7 @@
"rationale": "append",
"steps": [
{
- "html": "Append intercept id to intercepts.
"
+ "html": "Append intercept id to intercepts.
"
},
{
"html": "Break.
"
@@ -3359,13 +3512,13 @@
"html": "Let request id be command parameters[\"request
\"].
"
},
{
- "html": "If blocked requests does not contain request id then return error with error code no such request.
"
+ "html": "If blocked requests does not contain request id then return error with error code no such request.
"
},
{
"html": "Let (request, phase, response) be blocked requests[request id].
"
},
{
- "html": "If phase is \"beforeRequestSent
\" and command is\n \"continueResponse
\", return error with error code \"invalid argument
\".
\n TODO: Consider a different error
"
+ "html": "If phase is \"beforeRequestSent
\" and command is\n \"continueResponse
\", return error with error code \"invalid argument
\".
\n TODO: Consider a different error
"
},
{
"html": "If response is null:",
@@ -3380,7 +3533,7 @@
]
},
{
- "html": "If command parameters contains \"statusCode
\":",
+ "html": "If command parameters contains \"statusCode
\":",
"rationale": "set",
"steps": [
{
@@ -3389,7 +3542,7 @@
]
},
{
- "html": "If command parameters contains \"reasonPhrase
\":",
+ "html": "If command parameters contains \"reasonPhrase
\":",
"rationale": "set",
"steps": [
{
@@ -3398,7 +3551,7 @@
]
},
{
- "html": "If command parameters contains \"headers
\":",
+ "html": "If command parameters contains \"headers
\":",
"rationale": "let",
"steps": [
{
@@ -3412,10 +3565,10 @@
"html": "Let deserialized header be with header.
"
},
{
- "html": "If deserialized header’s name does not match the field-name token production, return error with error code \"invalid argument
\".
"
+ "html": "If deserialized header’s name does not match the field-name token production, return error with error code \"invalid argument
\".
"
},
{
- "html": "If deserialized header’s value does not match the production, return error with error code \"invalid argument
\".
"
+ "html": "If deserialized header’s value does not match the production, return error with error code \"invalid argument
\".
"
},
{
"html": "Append deserialized header to headers.
"
@@ -3428,7 +3581,7 @@
]
},
{
- "html": "If command parameters contains \"cookies
\":",
+ "html": "If command parameters contains \"cookies
\":",
"rationale": "if",
"steps": [
{
@@ -3476,7 +3629,7 @@
]
},
{
- "html": "If command parameters contains \"credentials
\":",
+ "html": "If command parameters contains \"credentials
\":",
"rationale": "let",
"steps": [
{
@@ -3505,7 +3658,7 @@
"html": "If response’s status is 401, let header name be\n `WWW-Authenticate
`. Otherwise if response’s status is 407, let header name be `Proxy-Authenticate
`. Otherwise return null.
"
},
{
- "html": "Let challenges be a new list.
"
+ "html": "Let challenges be a new list.
"
},
{
"html": "For each (name, value) in response’s :",
@@ -3538,12 +3691,12 @@
]
},
{
- "html": "Let challenge be a new map matching the network.AuthChallenge
production, with the scheme
field set to scheme and the realm
field set to realm.
"
+ "html": "Let challenge be a new map matching the network.AuthChallenge
production, with the scheme
field set to scheme and the realm
field set to realm.
"
}
]
},
{
- "html": "Append challenge to challenges.
"
+ "html": "Append challenge to challenges.
"
}
]
}
@@ -3580,7 +3733,7 @@
"html": "Let environment settings be request’s window
"
},
{
- "html": "If there is a navigable whose active window is environment\n settings’ global object, set navigable id to the navigable id for that navigable, and set top-level navigable id to be top-level traversable's navigable id for that\n context.
"
+ "html": "If there is a navigable whose active window is environment\n settings’ global object, set navigable id to the navigable id for that navigable, and set top-level navigable id to be top-level traversable's navigable id for that\n context.
"
}
]
},
@@ -3594,10 +3747,10 @@
"html": "Let timestamp be a time value representing the current date and time in UTC.
"
},
{
- "html": "If intercepts is not empty, let is blocked be true, otherwise\n let is blocked be false.
"
+ "html": "If intercepts is not empty, let is blocked be true, otherwise\n let is blocked be false.
"
},
{
- "html": "Let params be map matching the network.BaseParameters
production, with the request
field set to request data, the navigation field set to navigation
, the context
field set to navigable id, the timestamp
field set to timestamp, the redirectCount
field set to redirect count, the isBlocked
field set to is blocked, and intercepts
field set to intercepts if is blocked is true, or omitted otherwise.
"
+ "html": "Let params be map matching the network.BaseParameters
production, with the request
field set to request data, the navigation field set to navigation
, the context
field set to navigable id, the timestamp
field set to timestamp, the redirectCount
field set to redirect count, the isBlocked
field set to is blocked, and intercepts
field set to intercepts if is blocked is true, or omitted otherwise.
"
},
{
"html": "Return params
"
@@ -3631,10 +3784,10 @@
"html": "Let text be UTF-8 decode without BOM or fail bytes.
"
},
{
- "html": "If text is failure, return a map matching the network.Base64Value
production, with value set to forgiving-base64 encode bytes.
"
+ "html": "If text is failure, return a map matching the network.Base64Value
production, with value set to forgiving-base64 encode bytes.
"
},
{
- "html": "Return a map matching the network.StringValue
production,\n with value set to text.
"
+ "html": "Return a map matching the network.StringValue
production,\n with value set to text.
"
}
]
},
@@ -3754,7 +3907,7 @@
"html": "Let response end be convert fetch timestamp given timings’ end time and global.
"
},
{
- "html": "Return a map matching the network.FetchTimingInfo
production\n with the timeOrigin
field set to time origin, the requestTime
field set to request time, the redirectStart
field set to redirect start, the redirectEnd
field set to redirect end, the fetchStart
field set to fetch start, the dnsStart
field set to DNS start, the dnsEnd
field set to DNS end, the connectStart
field set to connect\n start, the connectEnd
field set to connect end, the tlsStart
field set to TLS start, the requestStart
field set to request start, the responseStart
field set to response start, and the responseEnd
field set to response end.
"
+ "html": "Return a map matching the network.FetchTimingInfo
production\n with the timeOrigin
field set to time origin, the requestTime
field set to request time, the redirectStart
field set to redirect start, the redirectEnd
field set to redirect end, the fetchStart
field set to fetch start, the dnsStart
field set to DNS start, the dnsEnd
field set to DNS end, the connectStart
field set to connect\n start, the connectEnd
field set to connect end, the tlsStart
field set to TLS start, the requestStart
field set to request start, the responseStart
field set to response start, and the responseEnd
field set to response end.
"
}
]
},
@@ -3811,7 +3964,7 @@
]
},
{
- "html": "Return a map matching the network.Initiator
production, the columnNumber
field set to column number if it’s not null, or\n omitted otherwise, the lineNumber
field set to line number if\n it’s not null, or omitted otherwise and the stackTrace
field set\n to stack trace if it’s not null, or omitted otherwise.
"
+ "html": "Return a map matching the network.Initiator
production, the columnNumber
field set to column number if it’s not null, or\n omitted otherwise, the lineNumber
field set to line number if\n it’s not null, or omitted otherwise and the stackTrace
field set\n to stack trace if it’s not null, or omitted otherwise.
"
}
]
},
@@ -3996,7 +4149,7 @@
"html": "Let auth challenges be the result of with response.
"
},
{
- "html": "Return a map matching the network.ResponseData
production,\n with the url
field set to url, the protocol
field\n set to protocol, the status
field set to status, the statusText
field set to status text, the fromCache
field set to from cache, the headers
field set to headers, the mimeType
field set to mime type, the bytesReceived
field set to bytes received, the headersSize
field set to headers size, the bodySize
field set to body size, content
field set to content, and the authChallenges
field set to auth challenges if it’s not null, or omitted otherwise.
"
+ "html": "Return a map matching the network.ResponseData
production,\n with the url
field set to url, the protocol
field\n set to protocol, the status
field set to status, the statusText
field set to status text, the fromCache
field set to from cache, the headers
field set to headers, the mimeType
field set to mime type, the bytesReceived
field set to bytes received, the headersSize
field set to headers size, the bodySize
field set to body size, content
field set to content, and the authChallenges
field set to auth challenges if it’s not null, or omitted otherwise.
"
}
]
},
@@ -4063,7 +4216,7 @@
"html": "Let header value be the byte sequence formed by concatenating name,\n `=
`, and value.
"
},
{
- "html": "If protocol cookie contains \"expiry
\":",
+ "html": "If protocol cookie contains \"expiry
\":",
"rationale": "let",
"steps": [
{
@@ -4078,7 +4231,7 @@
]
},
{
- "html": "If protocol cookie contains \"maxAge
\":",
+ "html": "If protocol cookie contains \"maxAge
\":",
"rationale": "let",
"steps": [
{
@@ -4096,7 +4249,7 @@
]
},
{
- "html": "If protocol cookie contains \"domain
\":",
+ "html": "If protocol cookie contains \"domain
\":",
"rationale": "let",
"steps": [
{
@@ -4111,7 +4264,7 @@
]
},
{
- "html": "If protocol cookie contains \"path
\":",
+ "html": "If protocol cookie contains \"path
\":",
"rationale": "let",
"steps": [
{
@@ -4126,7 +4279,7 @@
]
},
{
- "html": "If protocol cookie contains \"secure
\" and protocol\n cookie[\"secure
\"] is true:",
+ "html": "If protocol cookie contains \"secure
\" and protocol\n cookie[\"secure
\"] is true:",
"rationale": "append",
"steps": [
{
@@ -4135,7 +4288,7 @@
]
},
{
- "html": "If protocol cookie contains \"httpOnly
\" and protocol\n cookie[\"httpOnly
\"] is true:",
+ "html": "If protocol cookie contains \"httpOnly
\" and protocol\n cookie[\"httpOnly
\"] is true:",
"rationale": "append",
"steps": [
{
@@ -4144,7 +4297,7 @@
]
},
{
- "html": "If protocol cookie contains \"sameSite
\":",
+ "html": "If protocol cookie contains \"sameSite
\":",
"rationale": "let",
"steps": [
{
@@ -4170,7 +4323,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let forbidden characters be the set of codepoints «U+0028 ((), U+0029\n ()), U+002A (*), U+007B ({), U+007D (})»
"
+ "html": "Let forbidden characters be the set of codepoints «U+0028 ((), U+0029\n ()), U+002A (*), U+007B ({), U+007D (})»
"
},
{
"html": "Let result be the empty string.
"
@@ -4187,7 +4340,7 @@
"rationale": "if",
"steps": [
{
- "html": "If forbidden characters contains codepoint, return error with error code invalid argument.
"
+ "html": "If forbidden characters contains codepoint, return error with error code invalid argument.
"
},
{
"html": "If codepoint is U+005C (\\):",
@@ -4212,7 +4365,7 @@
]
},
{
- "html": "Return success with data result.
"
+ "html": "Return success with data result.
"
}
]
},
@@ -4245,25 +4398,25 @@
"html": "Let pattern url be the empty string.
"
},
{
- "html": "If pattern contains \"protocol
\":",
+ "html": "If pattern contains \"protocol
\":",
"rationale": "if",
"steps": [
{
- "html": "If pattern[\"protocol
\"] is the empty string, return error with error code invalid argument.
"
+ "html": "If pattern[\"protocol
\"] is the empty string, return error with error code invalid argument.
"
},
{
- "html": "Let protocol be the result of trying to unescape\n URL Pattern with pattern[\"protocol
\"].
"
+ "html": "Let protocol be the result of trying to unescape\n URL Pattern with pattern[\"protocol
\"].
"
},
{
"html": "For each codepoint in protocol:",
"rationale": "if",
"steps": [
{
- "html": "If codepoint is not ASCII alphanumeric and «U+002B (+), U+002D\n (-), U+002E (.)» does not contain codepoint:",
+ "html": "If codepoint is not ASCII alphanumeric and «U+002B (+), U+002D\n (-), U+002E (.)» does not contain codepoint:",
"rationale": "return",
"steps": [
{
- "html": "Return error with error code invalid argument.
"
+ "html": "Return error with error code invalid argument.
"
}
]
}
@@ -4296,17 +4449,17 @@
"html": "If scheme is special, append \"//
\" to pattern url.
"
},
{
- "html": "If pattern contains \"hostname
\":",
+ "html": "If pattern contains \"hostname
\":",
"rationale": "if",
"steps": [
{
- "html": "If pattern[\"hostname
\"] is the empty string, return error with error code invalid argument.
"
+ "html": "If pattern[\"hostname
\"] is the empty string, return error with error code invalid argument.
"
},
{
- "html": "If scheme is \"file
\" return error with error code invalid argument.
"
+ "html": "If scheme is \"file
\" return error with error code invalid argument.
"
},
{
- "html": "Let hostname be the result of trying to unescape\n URL Pattern with pattern[\"hostname
\"].
"
+ "html": "Let hostname be the result of trying to unescape\n URL Pattern with pattern[\"hostname
\"].
"
},
{
"html": "Let inside brackets be false.
"
@@ -4316,11 +4469,11 @@
"rationale": "if",
"steps": [
{
- "html": "If «U+002F (/), U+003F (?), U+0023 (#)» contains codepoint:",
+ "html": "If «U+002F (/), U+003F (?), U+0023 (#)» contains codepoint:",
"rationale": "return",
"steps": [
{
- "html": "Return error with error code invalid argument.
"
+ "html": "Return error with error code invalid argument.
"
}
]
},
@@ -4329,7 +4482,7 @@
"rationale": "return",
"steps": [
{
- "html": "Return error with error code invalid argument.
"
+ "html": "Return error with error code invalid argument.
"
}
]
},
@@ -4359,14 +4512,14 @@
]
},
{
- "html": "If pattern contains \"port
\":",
+ "html": "If pattern contains \"port
\":",
"rationale": "if",
"steps": [
{
- "html": "If pattern[\"port
\"] is the empty string, return error with error code invalid argument.
"
+ "html": "If pattern[\"port
\"] is the empty string, return error with error code invalid argument.
"
},
{
- "html": "Let port be the result of trying to unescape\n URL Pattern with pattern[\"port
\"].
"
+ "html": "Let port be the result of trying to unescape\n URL Pattern with pattern[\"port
\"].
"
},
{
"html": "Append \":
\" to pattern url.
"
@@ -4380,7 +4533,7 @@
"rationale": "return",
"steps": [
{
- "html": "Return error with error code invalid argument.
"
+ "html": "Return error with error code invalid argument.
"
}
]
}
@@ -4401,11 +4554,11 @@
]
},
{
- "html": "If pattern contains \"pathname
\":",
+ "html": "If pattern contains \"pathname
\":",
"rationale": "let",
"steps": [
{
- "html": "Let pathname be the result of trying to unescape URL Pattern with pattern[\"pathname
\"].
"
+ "html": "Let pathname be the result of trying to unescape URL Pattern with pattern[\"pathname
\"].
"
},
{
"html": "If pathname does not start with U+002F (/), then\n append \"/
\" to pattern url.
"
@@ -4415,11 +4568,11 @@
"rationale": "if",
"steps": [
{
- "html": "If «U+003F (?), U+0023 (#)» contains codepoint:",
+ "html": "If «U+003F (?), U+0023 (#)» contains codepoint:",
"rationale": "return",
"steps": [
{
- "html": "Return error with error code invalid argument.
"
+ "html": "Return error with error code invalid argument.
"
}
]
}
@@ -4440,11 +4593,11 @@
]
},
{
- "html": "If pattern contains \"search
\":",
+ "html": "If pattern contains \"search
\":",
"rationale": "let",
"steps": [
{
- "html": "Let search be the result of trying to unescape URL pattern with pattern[\"search
\"].
"
+ "html": "Let search be the result of trying to unescape URL pattern with pattern[\"search
\"].
"
},
{
"html": "If search does not start with U+003F (?), then\n append \"?
\" to pattern url.
"
@@ -4458,7 +4611,7 @@
"rationale": "return",
"steps": [
{
- "html": "Return error with error code invalid argument.
"
+ "html": "Return error with error code invalid argument.
"
}
]
}
@@ -4485,7 +4638,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let pattern url be the result of trying to unescape URL\n pattern with pattern[\"pattern
\"].
"
+ "html": "Let pattern url be the result of trying to unescape URL\n pattern with pattern[\"pattern
\"].
"
}
]
},
@@ -4493,7 +4646,7 @@
"html": "Let url be the result of parsing pattern url.
"
},
{
- "html": "If url is failure, return error with error code invalid argument.
"
+ "html": "If url is failure, return error with error code invalid argument.
"
},
{
"html": "Let parsed be a struct with the following fields:
\n \n - protocol \n
- url’s scheme if has protocol is true, or null otherwise. \n
- hostname \n
- url’s host if has hostname is true, or null otherwise. \n
- port \n
- \n \n
- pathname \n
- \n \n
- search \n
- \n \n
",
@@ -4573,7 +4726,7 @@
]
},
{
- "html": "Return success with data parsed.
"
+ "html": "Return success with data parsed.
"
}
]
},
@@ -4654,7 +4807,7 @@
"html": "Let intercept be the string representation of a UUID.
"
},
{
- "html": "Let url patterns be the urlPatterns
field of command\n parameters if present, or an empty list otherwise.
"
+ "html": "Let url patterns be the urlPatterns
field of command\n parameters if present, or an empty list otherwise.
"
},
{
"html": "Let navigables be null.
"
@@ -4664,17 +4817,17 @@
"rationale": "set",
"steps": [
{
- "html": "Set navigables to an empty set.
"
+ "html": "Set navigables to an empty set.
"
},
{
"html": "For each navigable id of command parameters[\"contexts
\"]",
"rationale": "let",
"steps": [
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
- "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
+ "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
},
{
"html": "Append navigable to navigables.
"
@@ -4682,7 +4835,7 @@
]
},
{
- "html": "If navigables is an empty set, return error with error code invalid argument.
"
+ "html": "If navigables is an empty set, return error with error code invalid argument.
"
}
]
},
@@ -4690,17 +4843,17 @@
"html": "Let intercept map be session’s intercept map.
"
},
{
- "html": "Let parsed patterns be an empty list.
"
+ "html": "Let parsed patterns be an empty list.
"
},
{
"html": "For each url pattern in url patterns:",
"rationale": "let",
"steps": [
{
- "html": "Let parsed be the result of trying to parse url pattern with url\n pattern.
"
+ "html": "Let parsed be the result of trying to parse url pattern with url\n pattern.
"
},
{
- "html": "Append parsed to parsed patterns.
"
+ "html": "Append parsed to parsed patterns.
"
}
]
},
@@ -4708,7 +4861,7 @@
"html": "Set intercept map[intercept] to a struct with url patterns
parsed patterns, phases
command\n parameters[\"phases
\"] and browsingContexts
navigables.
"
},
{
- "html": "Return a new map matching the network.AddInterceptResult
production with the intercept
field set to intercept.
"
+ "html": "Return a new map matching the network.AddInterceptResult
production with the intercept
field set to intercept.
"
}
]
},
@@ -4724,23 +4877,23 @@
"html": "Let request id be command parameters[\"request
\"].
"
},
{
- "html": "If blocked requests does not contain request id then return error with error code no such request.
"
+ "html": "If blocked requests does not contain request id then return error with error code no such request.
"
},
{
"html": "Let (request, phase, response) be blocked requests[request id].
"
},
{
- "html": "If phase is not \"beforeRequestSent
\", then return error with error code invalid argument.
"
+ "html": "If phase is not \"beforeRequestSent
\", then return error with error code invalid argument.
"
},
{
- "html": "If command parameters contains \"url
\":",
+ "html": "If command parameters contains \"url
\":",
"rationale": "let",
"steps": [
{
"html": "Let url record be the result of applying the URL parser to command\n parameters[\"url
\"], with base URL null.
"
},
{
- "html": "If url record is failure, return error with error code invalid\n argument.
\n TODO: Should we also resume here?
"
+ "html": "If url record is failure, return error with error code invalid\n argument.
\n TODO: Should we also resume here?
"
},
{
"html": "Let request’s url be url record.
"
@@ -4748,14 +4901,14 @@
]
},
{
- "html": "If command parameters contains \"method
\":",
+ "html": "If command parameters contains \"method
\":",
"rationale": "let",
"steps": [
{
"html": "Let method be command parameters[\"method
\"].
"
},
{
- "html": "If method does not match the method token production, return error with error code \"invalid argument
\".
"
+ "html": "If method does not match the method token production, return error with error code \"invalid argument
\".
"
},
{
"html": "Let request’s method be method.
"
@@ -4763,7 +4916,7 @@
]
},
{
- "html": "If command parameters contains \"headers
\":",
+ "html": "If command parameters contains \"headers
\":",
"rationale": "let",
"steps": [
{
@@ -4777,10 +4930,10 @@
"html": "Let deserialized header be with header.
"
},
{
- "html": "If deserialized header’s name does not match the field-name token production, return error with error code \"invalid argument
\".
"
+ "html": "If deserialized header’s name does not match the field-name token production, return error with error code \"invalid argument
\".
"
},
{
- "html": "If deserialized header’s value does not match the production, return error with error code \"invalid argument
\".
"
+ "html": "If deserialized header’s value does not match the production, return error with error code \"invalid argument
\".
"
},
{
"html": "Append deserialized header to headers.
"
@@ -4793,7 +4946,7 @@
]
},
{
- "html": "If command parameters contains \"cookies
\":",
+ "html": "If command parameters contains \"cookies
\":",
"rationale": "let",
"steps": [
{
@@ -4850,7 +5003,7 @@
]
},
{
- "html": "If command parameters contains \"body
\":",
+ "html": "If command parameters contains \"body
\":",
"rationale": "let",
"steps": [
{
@@ -4865,7 +5018,7 @@
"html": "Resume with \"continue request
\", request id, and (null,\n \"incomplete
\").
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -4878,13 +5031,13 @@
"html": "Let request id be command parameters[\"request
\"].
"
},
{
- "html": "Let response be the result of trying to update the response with session, \"continueResponse
\" and command parameters.
"
+ "html": "Let response be the result of trying to update the response with session, \"continueResponse
\" and command parameters.
"
},
{
"html": "Resume with \"continue request
\", request id, and\n (response, \"incomplete
\").
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -4900,13 +5053,13 @@
"html": "Let request id be command parameters[\"request
\"].
"
},
{
- "html": "If blocked requests does not contain request id then return error with error code no such request.
"
+ "html": "If blocked requests does not contain request id then return error with error code no such request.
"
},
{
"html": "Let (request, phase, response) be blocked requests[request id].
"
},
{
- "html": "If phase is not \"authRequired
\", then return error with error code invalid argument.
"
+ "html": "If phase is not \"authRequired
\", then return error with error code invalid argument.
"
},
{
"html": "If command parameters \"action
\" is \"cancel
\", set response’s authentication credentials to\n \"cancelled
\".
"
@@ -4930,7 +5083,7 @@
"html": "Resume with \"continue request
\", request id, and\n (response, \"incomplete
\").
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -4946,13 +5099,13 @@
"html": "Let request id be command parameters[\"request
\"].
"
},
{
- "html": "If blocked requests does not contain request id then return error with error code no such request.
"
+ "html": "If blocked requests does not contain request id then return error with error code no such request.
"
},
{
"html": "Let (request, phase, response) be blocked requests[request id].
"
},
{
- "html": "If phase is \"authRequired
\", then return error with error code invalid argument.
"
+ "html": "If phase is \"authRequired
\", then return error with error code invalid argument.
"
},
{
"html": "Let response be a new network error.
"
@@ -4961,7 +5114,7 @@
"html": "Resume with \"continue request
\", request id, and\n (response, \"complete
\").
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -4974,10 +5127,10 @@
"html": "Let request id be command parameters[\"request
\"].
"
},
{
- "html": "Let response be the result of trying to update the response with session, \"provideResponse
\", and command parameters.
"
+ "html": "Let response be the result of trying to update the response with session, \"provideResponse
\", and command parameters.
"
},
{
- "html": "If command parameters contains \"body
\":",
+ "html": "If command parameters contains \"body
\":",
"rationale": "let",
"steps": [
{
@@ -4992,7 +5145,7 @@
"html": "Resume with \"continue request
\", request id, and\n (response,\"complete
\").
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -5008,10 +5161,10 @@
"html": "Let intercept map be session’s intercept map.
"
},
{
- "html": "If intercept map does not contain intercept, return error with error code no such intercept.
"
+ "html": "If intercept map does not contain intercept, return error with error code no such intercept.
"
},
{
- "html": "Remove intercept from intercept map.
"
+ "html": "Remove intercept from intercept map.
"
}
]
},
@@ -5021,7 +5174,7 @@
"rationale": "return",
"steps": [
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -5042,12 +5195,12 @@
"html": "Let environment settings be request’s window
"
},
{
- "html": "If there is a navigable whose active window is environment\n settings’ global object, set navigable to\n the top-level browsing context for that browsing context.
"
+ "html": "If there is a navigable whose active window is environment\n settings’ global object, set navigable to\n the top-level browsing context for that browsing context.
"
}
]
},
{
- "html": "If navigable is not null and navigable cache behavior map contains navigable, return navigable cache behavior map[navigable].
"
+ "html": "If navigable is not null and navigable cache behavior map contains navigable, return navigable cache behavior map[navigable].
"
},
{
"html": "Return default cache behavior.
"
@@ -5064,7 +5217,7 @@
"html": "Let top-level navigable be navigable’s top-level traversable.
"
},
{
- "html": "If navigable cache behavior map contains top-level navigable, return navigable cache behavior map[top-level navigable].
"
+ "html": "If navigable cache behavior map contains top-level navigable, return navigable cache behavior map[top-level navigable].
"
},
{
"html": "Return default cache behavior.
"
@@ -5080,7 +5233,7 @@
"html": "Let behavior be command parameters[\"cacheBehavior
\"].
"
},
{
- "html": "If command parameters does not contain \"contexts
\":",
+ "html": "If command parameters does not contain \"contexts
\":",
"rationale": "set",
"steps": [
{
@@ -5090,28 +5243,28 @@
"html": "Clear navigable cache behavior map.
"
},
{
- "html": "Switch on the value of behavior:
\n \n - \"
bypass
\" \n - Perform implementation-defined steps to disable any\n implementation-specific resource caches. \n
- \"
default
\" \n - Perform implementation-defined steps to enable any\n implementation-specific resource caches that are usually enabled in the\n current remote end configuration. \n
"
+ "html": "Switch on the value of behavior:
\n \n - \"
bypass
\" \n - Perform implementation-defined steps to disable any\n implementation-specific resource caches. \n
- \"
default
\" \n - Perform implementation-defined steps to enable any\n implementation-specific resource caches that are usually enabled in the\n current remote end configuration. \n
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
{
- "html": "Let navigables be an empty set.
"
+ "html": "Let navigables be an empty set.
"
},
{
"html": "For each navigable id of command parameters[\"contexts
\"]:",
"rationale": "let",
"steps": [
{
- "html": "Let context be the result of trying to get a navigable with navigable id.
"
+ "html": "Let context be the result of trying to get a navigable with navigable id.
"
},
{
- "html": "If context is not a top-level browsing context, return error with error code invalid argument.
"
+ "html": "If context is not a top-level browsing context, return error with error code invalid argument.
"
},
{
- "html": "Append context to navigables.
"
+ "html": "Append context to navigables.
"
}
]
},
@@ -5120,17 +5273,17 @@
"rationale": "if",
"steps": [
{
- "html": "If navigable cache behavior map contains navigable, and navigable cache behavior map[navigable] is equal to behavior then\n continue.
"
+ "html": "If navigable cache behavior map contains navigable, and navigable cache behavior map[navigable] is equal to behavior then\n continue.
"
},
{
- "html": "Switch on the value of behavior:
\n \n - \"
bypass
\" \n - Perform implementation-defined steps to disable any implementation-specific\n resource caches for network requests originating from any browsing\n context for which navigable is the top-level browsing context. \n
- \"
default
\" \n - Perform implementation-defined steps to enable any\n implementation-specific resource caches that are usually enabled in the\n current remote end configuration for network requests\n originating from any browsing context for which navigable is the top-level browsing context. \n
"
+ "html": "Switch on the value of behavior:
\n \n - \"
bypass
\" \n - Perform implementation-defined steps to disable any implementation-specific\n resource caches for network requests originating from any browsing\n context for which navigable is the top-level browsing context. \n
- \"
default
\" \n - Perform implementation-defined steps to enable any\n implementation-specific resource caches that are usually enabled in the\n current remote end configuration for network requests\n originating from any browsing context for which navigable is the top-level browsing context. \n
"
},
{
"html": "If behavior is equal to default cache behavior:",
"rationale": "if",
"steps": [
{
- "html": "If navigable cache behavior map contains navigable, remove navigable cache behavior map[navigable].
"
+ "html": "If navigable cache behavior map contains navigable, remove navigable cache behavior map[navigable].
"
}
]
},
@@ -5146,7 +5299,7 @@
]
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -5176,7 +5329,7 @@
"html": "Let response data be the result of get the response data with response.
"
},
{
- "html": "Assert: response data contains \"authChallenge
\".
"
+ "html": "Assert: response data contains \"authChallenge
\".
"
},
{
"html": "Set the response
field of params to response data.
"
@@ -5207,7 +5360,7 @@
"html": "Await with «\"continue request
\"», and request id.
"
},
{
- "html": "Remove blocked requests[request id].
"
+ "html": "Remove blocked requests[request id].
"
}
]
}
@@ -5284,7 +5437,7 @@
"html": "If status is \"complete
\" set response status to status.
"
},
{
- "html": "Remove blocked requests[request id].
"
+ "html": "Remove blocked requests[request id].
"
}
]
}
@@ -5434,7 +5587,7 @@
"html": "If status is \"complete
\", set response status to status.
"
},
{
- "html": "Remove blocked requests[request id].
"
+ "html": "Remove blocked requests[request id].
"
}
]
}
@@ -5455,7 +5608,7 @@
"html": "Let document be environment settings’ relevant global object's associated Document
.
"
},
{
- "html": "Let navigable be document’s navigable.
"
+ "html": "Let navigable be document’s navigable.
"
},
{
"html": "For each session in active BiDi sessions:",
@@ -5473,7 +5626,7 @@
"html": "Let navigable id be navigable’s top-level traversable's id.
"
},
{
- "html": "If preload script’s contexts
does not contain navigable id, continue.
"
+ "html": "If preload script’s contexts
does not contain navigable id, continue.
"
}
]
},
@@ -5588,10 +5741,10 @@
"html": "Let text be an implementation-defined textual description of the error\n represented by record.
\n TODO: Tighten up the requirements here; people will probably try to parse\n this data with regex or something equally bad.
"
},
{
- "html": "Let serialization options be a map matching the script.SerializationOptions
production with the fields set to\n their default values.
"
+ "html": "Let serialization options be a map matching the script.SerializationOptions
production with the fields set to\n their default values.
"
},
{
- "html": "Let exception be the result of serialize as a remote value with record.[[Value]], serialization options, ownership type,\n a new map as serialization internal map, realm and session.
"
+ "html": "Let exception be the result of serialize as a remote value with record.[[Value]], serialization options, ownership type,\n a new map as serialization internal map, realm and session.
"
},
{
"html": "Let stack trace be the stack trace for an exception given record.
"
@@ -5600,7 +5753,7 @@
"html": "If stack trace has size of 1 or greater, let line number be value of the lineNumber
field in stack trace[0], and let column number be\n the value of the columnNumber
field stack trace[0]. Otherwise\n let line number and column number be 0.
"
},
{
- "html": "Let exception details be a map matching the script.ExceptionDetails
production, with the text
field set to text, the exception
field set to exception, the lineNumber
field set to line number, the columnNumber
field set to column number, and the stackTrace
field set to stack trace.
"
+ "html": "Let exception details be a map matching the script.ExceptionDetails
production, with the text
field set to text, the exception
field set to exception, the lineNumber
field set to line number, the columnNumber
field set to column number, and the stackTrace
field set to stack trace.
"
},
{
"html": "Return exception details.
"
@@ -5621,7 +5774,7 @@
"rationale": "if",
"steps": [
{
- "html": "If size of serialized key-value is not 2,\n return error with error code invalid argument.
"
+ "html": "If size of serialized key-value is not 2,\n return error with error code invalid argument.
"
},
{
"html": "Let serialized key be serialized key-value[0].
"
@@ -5630,13 +5783,13 @@
"html": "If serialized key is a string
,\n let deserialized key be serialized key.
"
},
{
- "html": "Otherwise let deserialized key be result of trying to\n given deserialize local value with serialized key, realm and session.
"
+ "html": "Otherwise let deserialized key be result of trying to\n given deserialize local value with serialized key, realm and session.
"
},
{
"html": "Let serialized value be serialized key-value[1].
"
},
{
- "html": "Let deserialized value be result of trying to deserialize local value given serialized value, realm and session.
"
+ "html": "Let deserialized value be result of trying to deserialize local value given serialized value, realm and session.
"
},
{
"html": "Append CreateArrayFromList(«deserialized key, deserialized value») to deserialized key-value list.
"
@@ -5644,7 +5797,7 @@
]
},
{
- "html": "Return success with data deserialized key-value list.
"
+ "html": "Return success with data deserialized key-value list.
"
}
]
},
@@ -5662,7 +5815,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let deserialized value be result of trying to deserialize local value given serialized value, realm and session.
"
+ "html": "Let deserialized value be result of trying to deserialize local value given serialized value, realm and session.
"
},
{
"html": "Append deserialized value to deserialized values;
"
@@ -5670,7 +5823,7 @@
]
},
{
- "html": "Return success with data deserialized values.
"
+ "html": "Return success with data deserialized values.
"
}
]
},
@@ -5696,14 +5849,14 @@
"html": "Let value be the value of the value
field of local protocol value or undefined\n if no such a field.
"
},
{
- "html": "In the following list of conditions and associated steps, run the first set of steps for which\n the associated condition is true:
\n \n - type is the string \"
array
\" \n - \n \n
- type is the string \"
date
\" \n - \n \n
- type is the string \"
map
\" \n - \n \n
- type is the string \"
object
\" \n - \n \n
- type is the string \"
regexp
\" \n - \n \n
- type is the string \"
set
\" \n - \n \n
- otherwise \n
- Return error with error code invalid argument. \n
",
+ "html": "In the following list of conditions and associated steps, run the first set of steps for which\n the associated condition is true:
\n \n - type is the string \"
array
\" \n - \n \n
- type is the string \"
date
\" \n - \n \n
- type is the string \"
map
\" \n - \n \n
- type is the string \"
object
\" \n - \n \n
- type is the string \"
regexp
\" \n - \n \n
- type is the string \"
set
\" \n - \n \n
- otherwise \n
- Return error with error code invalid argument. \n
",
"rationale": "let",
"steps": [
{
- "html": "Let deserialized value list be a result of trying to deserialize value list given value, realm and session.
"
+ "html": "Let deserialized value list be a result of trying to deserialize value list given value, realm and session.
"
},
{
- "html": "Return success with data CreateArrayFromList(deserialized value list).
"
+ "html": "Return success with data CreateArrayFromList(deserialized value list).
"
}
],
"additional": [
@@ -5712,7 +5865,7 @@
"rationale": "if",
"steps": [
{
- "html": "If value does not match Date Time String Format, return error with error code invalid argument.
"
+ "html": "If value does not match Date Time String Format, return error with error code invalid argument.
"
},
{
"html": "Let date result be Construct(Date, value).
"
@@ -5721,7 +5874,7 @@
"html": "Assert: date result is not an abrupt completion.
"
},
{
- "html": "Return success with data date result.
"
+ "html": "Return success with data date result.
"
}
]
},
@@ -5730,13 +5883,13 @@
"rationale": "let",
"steps": [
{
- "html": "Let deserialized key-value list be a result of trying to deserialize key-value list with value, realm and session.
"
+ "html": "Let deserialized key-value list be a result of trying to deserialize key-value list with value, realm and session.
"
},
{
"html": "Let iterable be CreateArrayFromList(deserialized key-value list)
"
},
{
- "html": "Return success with data Map(iterable).
"
+ "html": "Return success with data Map(iterable).
"
}
]
},
@@ -5745,13 +5898,13 @@
"rationale": "let",
"steps": [
{
- "html": "Let deserialized key-value list be a result of trying to deserialize key-value list with value, realm and session.
"
+ "html": "Let deserialized key-value list be a result of trying to deserialize key-value list with value, realm and session.
"
},
{
"html": "Let iterable be CreateArrayFromList(deserialized key-value list)
"
},
{
- "html": "Return success with data Object.fromEntries(iterable).
"
+ "html": "Return success with data Object.fromEntries(iterable).
"
}
]
},
@@ -5766,10 +5919,10 @@
"html": "Let flags be the value of the flags
field of local protocol value or\n undefined if no such a field.
"
},
{
- "html": "Let regex_result be Regexp(pattern, flags). If this throws exception, return error with error code invalid argument.
"
+ "html": "Let regex_result be Regexp(pattern, flags). If this throws exception, return error with error code invalid argument.
"
},
{
- "html": "Return success with data regex_result.
"
+ "html": "Return success with data regex_result.
"
}
]
},
@@ -5778,13 +5931,13 @@
"rationale": "let",
"steps": [
{
- "html": "Let deserialized value list be a result of trying to deserialize value list given value, realm and session.
"
+ "html": "Let deserialized value list be a result of trying to deserialize value list given value, realm and session.
"
},
{
"html": "Let iterable be CreateArrayFromList(deserialized key-value list)
"
},
{
- "html": "Return success with data Set object(iterable).
"
+ "html": "Return success with data Set object(iterable).
"
}
]
}
@@ -5799,16 +5952,16 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If realm id is null, return success with data null.
"
+ "html": "If realm id is null, return success with data null.
"
},
{
- "html": "If there is no realm with id realm id return error with error code no such frame
"
+ "html": "If there is no realm with id realm id return error with error code no such frame
"
},
{
"html": "Let realm be the realm with id realm id.
"
},
{
- "html": "Return success with data realm
"
+ "html": "Return success with data realm
"
}
]
},
@@ -5822,14 +5975,14 @@
"html": "Let remote value be undefined.
"
},
{
- "html": "In the following list of conditions and associated steps, run the first set\n of steps for which the associated condition is true, if any:
\n \n - Type(value) is undefined \n
- Let remote value be a map matching the
script.UndefinedValue
production in the local end definition. \n - Type(value) is Null \n
- Let remote value be a map matching the
script.NullValue
production in the local end definition. \n - Type(value) is String \n
- \n Let remote value be a map matching the
script.StringValue
production in the local end definition, with the value
property set to value. \n \n - Type(value) is Number \n
- \n \n
- Type(value) is Boolean \n
- Let remote value be a map matching the
script.BooleanValue
production in the local end definition, with the value
property set to value. \n - Type(value) is BigInt \n
- Let remote value be a map matching the
script.BigIntValue
production in the local end definition, with the value
property set to the result of running the ToString operation on value. \n
",
+ "html": "In the following list of conditions and associated steps, run the first set\n of steps for which the associated condition is true, if any:
\n \n - Type(value) is undefined \n
- Let remote value be a map matching the
script.UndefinedValue
production in the local end definition. \n - Type(value) is Null \n
- Let remote value be a map matching the
script.NullValue
production in the local end definition. \n - Type(value) is String \n
- \n Let remote value be a map matching the
script.StringValue
production in the local end definition, with the value
property set to value. \n \n - Type(value) is Number \n
- \n \n
- Type(value) is Boolean \n
- Let remote value be a map matching the
script.BooleanValue
production in the local end definition, with the value
property set to value. \n - Type(value) is BigInt \n
- Let remote value be a map matching the
script.BigIntValue
production in the local end definition, with the value
property set to the result of running the ToString operation on value. \n
",
"rationale": "switch",
"steps": [
{
"html": "Switch on the value of value:
\n \n - NaN \n
- Let serialized be
\"NaN\"
\n - -0 \n
- Let serialized be
\"-0\"
\n - Infinity \n
- Let serialized be
\"Infinity\"
\n - -Infinity \n
- Let serialized be
\"-Infinity\"
\n - Otherwise: \n
- Let serialized be value \n
"
},
{
- "html": "Let remote value be a map matching the script.NumberValue
production in the local end definition, with the value
property set to serialized.
"
+ "html": "Let remote value be a map matching the script.NumberValue
production in the local end definition, with the value
property set to serialized.
"
}
]
},
@@ -5860,26 +6013,26 @@
]
},
{
- "html": "In the following list of conditions and associated steps, run the first set of steps for which\n the associated condition is true:
\n \n - type is the string \"
undefined
\" \n - Return success with data undefined. \n
- type is the string \"
null
\" \n - Return success with data null. \n
- type is the string \"
string
\" \n - Return success with data value. \n
- type is the string \"
number
\" \n - \n \n
- type is the string \"
boolean
\" \n - Return success with data value. \n
- type is the string \"
bigint
\" \n - \n \n
",
+ "html": "In the following list of conditions and associated steps, run the first set of steps for which\n the associated condition is true:
\n \n - type is the string \"
undefined
\" \n - Return success with data undefined. \n
- type is the string \"
null
\" \n - Return success with data null. \n
- type is the string \"
string
\" \n - Return success with data value. \n
- type is the string \"
number
\" \n - \n \n
- type is the string \"
boolean
\" \n - Return success with data value. \n
- type is the string \"
bigint
\" \n - \n \n
",
"rationale": "if",
"steps": [
{
- "html": "If Type(value) is Number, return success with data value.
"
+ "html": "If Type(value) is Number, return success with data value.
"
},
{
"html": "Assert: Type(value) is String.
"
},
{
- "html": "If value is the string \"NaN
\", return success with\n data NaN.
"
+ "html": "If value is the string \"NaN
\", return success with\n data NaN.
"
},
{
"html": "Let number_result be StringToNumber(value).
"
},
{
- "html": "If number_result is NaN, return error with error code invalid argument
"
+ "html": "If number_result is NaN, return error with error code invalid argument
"
},
{
- "html": "Return success with data number_result.
"
+ "html": "Return success with data number_result.
"
}
],
"additional": [
@@ -5891,17 +6044,17 @@
"html": "Let bigint_result be StringToBigInt(value).
"
},
{
- "html": "If bigint_result is undefined, return error with error code invalid argument
"
+ "html": "If bigint_result is undefined, return error with error code invalid argument
"
},
{
- "html": "Return success with data bigint_result.
"
+ "html": "Return success with data bigint_result.
"
}
]
}
]
},
{
- "html": "Return error with error code invalid argument
"
+ "html": "Return error with error code invalid argument
"
}
]
},
@@ -5938,7 +6091,7 @@
"html": "Assert: global object is a WorkerGlobalScope
object.
"
},
{
- "html": "Let owners be an empty list.
"
+ "html": "Let owners be an empty list.
"
},
{
"html": "For each owner in the global object’s associated owner set:",
@@ -5995,10 +6148,10 @@
"html": "If navigable is null, return null.
"
},
{
- "html": "Let navigable id be the navigable id for navigable.
"
+ "html": "Let navigable id be the navigable id for navigable.
"
},
{
- "html": "Let realm info be a map matching the script.WindowRealmInfo
production,\n with the realm
field set to realm id, the origin
field set to origin, and the context
field set to navigable id.
"
+ "html": "Let realm info be a map matching the script.WindowRealmInfo
production,\n with the realm
field set to realm id, the origin
field set to origin, and the context
field set to navigable id.
"
}
],
"additional": [
@@ -6016,7 +6169,7 @@
"html": "If navigable is null, return null.
"
},
{
- "html": "Let navigable id be the navigable id for navigable.
"
+ "html": "Let navigable id be the navigable id for navigable.
"
},
{
"html": "Let sandbox name be the result of get a sandbox name given realm.
"
@@ -6025,7 +6178,7 @@
"html": "Assert: sandbox name is not null.
"
},
{
- "html": "Let realm info be a map matching the script.WindowRealmInfo
production,\n with the realm
field set to realm id, the origin
field set to origin, the context
field set to navigable id,\n and the sandbox
field set to sandbox name.
"
+ "html": "Let realm info be a map matching the script.WindowRealmInfo
production,\n with the realm
field set to realm id, the origin
field set to origin, the context
field set to navigable id,\n and the sandbox
field set to sandbox name.
"
}
]
},
@@ -6040,7 +6193,7 @@
"html": "Assert: owners has precisely one item.
"
},
{
- "html": "Let realm info be a map matching the script.DedicatedWorkerRealmInfo
production,\n with the realm
field set to realm id, the origin
field\n set to origin, and the owners
field set to owners.
"
+ "html": "Let realm info be a map matching the script.DedicatedWorkerRealmInfo
production,\n with the realm
field set to realm id, the origin
field\n set to origin, and the owners
field set to owners.
"
}
]
},
@@ -6049,7 +6202,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let realm info be a map matching the script.SharedWorkerRealmInfo
production,\n with the realm
field set to realm id, and the origin
field\n set to origin.
"
+ "html": "Let realm info be a map matching the script.SharedWorkerRealmInfo
production,\n with the realm
field set to realm id, and the origin
field\n set to origin.
"
}
]
},
@@ -6058,7 +6211,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let realm info be a map matching the script.ServiceWorkerRealmInfo
production,\n with the realm
field set to realm id, and the origin
field\n set to origin.
"
+ "html": "Let realm info be a map matching the script.ServiceWorkerRealmInfo
production,\n with the realm
field set to realm id, and the origin
field\n set to origin.
"
}
]
},
@@ -6067,7 +6220,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let realm info be a map matching the script.WorkerRealmInfo
production,\n with the realm
field set to realm id, and the origin
field set to origin.
"
+ "html": "Let realm info be a map matching the script.WorkerRealmInfo
production,\n with the realm
field set to realm id, and the origin
field set to origin.
"
}
]
},
@@ -6076,7 +6229,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let realm info be a map matching the script.PaintWorkletRealmInfo
production,\n with the realm
field set to realm id, and the origin
field set to origin.
"
+ "html": "Let realm info be a map matching the script.PaintWorkletRealmInfo
production,\n with the realm
field set to realm id, and the origin
field set to origin.
"
}
]
},
@@ -6085,7 +6238,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let realm info be a map matching the script.AudioWorkletRealmInfo
production,\n with the realm
field set to realm id, and the origin
field set to origin.
"
+ "html": "Let realm info be a map matching the script.AudioWorkletRealmInfo
production,\n with the realm
field set to realm id, and the origin
field set to origin.
"
}
]
},
@@ -6094,7 +6247,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let realm info be a map matching the script.WorkletRealmInfo
production,\n with the realm
field set to realm id, and the origin
field set to origin.
"
+ "html": "Let realm info be a map matching the script.WorkletRealmInfo
production,\n with the realm
field set to realm id, and the origin
field set to origin.
"
}
]
},
@@ -6144,10 +6297,10 @@
"html": "Let handle map be realm’s handle object map
"
},
{
- "html": "If handle map does not contain handle id, then return error with error code no such handle.
"
+ "html": "If handle map does not contain handle id, then return error with error code no such handle.
"
},
{
- "html": "Return success with data handle map[handle id].
"
+ "html": "Return success with data handle map[handle id].
"
}
]
},
@@ -6164,22 +6317,22 @@
"html": "Let navigable be get the navigable with realm.
"
},
{
- "html": "If navigable is null
, return error with error code no such node.
"
+ "html": "If navigable is null
, return error with error code no such node.
"
},
{
"html": "Let shared id be the value of the sharedId
field of shared reference.
"
},
{
- "html": "Let node be result of trying to get a node with session, navigable and shared id.
"
+ "html": "Let node be result of trying to get a node with session, navigable and shared id.
"
},
{
- "html": "If node is null
, return error with error code no such node.
"
+ "html": "If node is null
, return error with error code no such node.
"
},
{
"html": "Let environment settings be the environment settings object whose realm execution context's Realm component is realm.
"
},
{
- "html": "If node’s node document's origin is not same origin\n domain with environment settings’s origin then return error with error code no such node.
"
+ "html": "If node’s node document's origin is not same origin\n domain with environment settings’s origin then return error with error code no such node.
"
},
{
"html": "Let realm global object be the global object of the realm.
"
@@ -6188,7 +6341,7 @@
"html": "If the realm global object is SandboxWindowProxy
object, set node to the SandboxProxy
wrapping node in the realm.
"
},
{
- "html": "Return success with data node.
"
+ "html": "Return success with data node.
"
}
]
},
@@ -6295,7 +6448,7 @@
"html": "Let known object be true
, if value is in the serialization internal map, otherwise false
.
"
},
{
- "html": "In the following list of conditions and associated steps, run the first set\n of steps for which the associated condition is true:
\n \n - Type(value) is Symbol \n
- Let remote value be a map matching the
script.SymbolRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - IsArray(value) \n
- Let remote value be serialize an Array-like with session,
script.ArrayRemoteValue
, handle id, known object, value, serialization options, ownership type, serialization internal map, realm, and session. \n - IsRegExp(value) \n
- \n \n
- value has a [[DateValue]] internal slot. \n
- \n \n
- value has a [[MapData]] internal slot \n
- \n \n
- value has a [[SetData]] internal slot \n
- \n \n
- value has a [[WeakMapData]] internal slot \n
- Let remote value be a map matching the
script.WeakMapRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has a [[WeakSetData]] internal slot \n
- Let remote value be a map matching the
script.WeakSetRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has a [[GeneratorState]] internal slot or [[AsyncGeneratorState]] internal slot \n
- Let remote value be a map matching the
script.GeneratorRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has an [[ErrorData]] internal slot \n
- Let remote value be a map matching the
script.ErrorRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has a [[ProxyHandler]] internal slot and a [[ProxyTarget]] internal slot \n
- Let remote value be a map matching the
script.ProxyRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - IsPromise(value) \n
- Let remote value be a map matching the
script.PromiseRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has a [[TypedArrayName]] internal slot \n
- Let remote value be a map matching the
script.TypedArrayRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has an [[ArrayBufferData]] internal slot \n
- Let remote value be a map matching the
script.ArrayBufferRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value is a platform object that implements
NodeList
\n - Let remote value be serialize an Array-like with
script.NodeListRemoteValue
,handle id, known object, value, serialization options, ownership type, serialization internal map, realm, and session. \n - value is a platform object that implements
HTMLCollection
\n - Let remote value be serialize an Array-like with
script.HTMLCollectionRemoteValue
, handle id, known object, value, serialization options, ownership type, known object, serialization internal map, realm, and session. \n - value is a platform object that implements
Node
\n - \n \n
- value is a platform object that implements
WindowProxy
\n - \n \n
- value is a platform object \n
- 1. Let remote value be a map matching the
script.ObjectRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - IsCallable(value) \n
- Let remote value be a map matching the
script.FunctionRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - Otherwise: \n
- \n \n
",
+ "html": "In the following list of conditions and associated steps, run the first set\n of steps for which the associated condition is true:
\n \n - Type(value) is Symbol \n
- Let remote value be a map matching the
script.SymbolRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - IsArray(value) \n
- Let remote value be serialize an Array-like with session,
script.ArrayRemoteValue
, handle id, known object, value, serialization options, ownership type, serialization internal map, realm, and session. \n - IsRegExp(value) \n
- \n \n
- value has a [[DateValue]] internal slot. \n
- \n \n
- value has a [[MapData]] internal slot \n
- \n \n
- value has a [[SetData]] internal slot \n
- \n \n
- value has a [[WeakMapData]] internal slot \n
- Let remote value be a map matching the
script.WeakMapRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has a [[WeakSetData]] internal slot \n
- Let remote value be a map matching the
script.WeakSetRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has a [[GeneratorState]] internal slot or [[AsyncGeneratorState]] internal slot \n
- Let remote value be a map matching the
script.GeneratorRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has an [[ErrorData]] internal slot \n
- Let remote value be a map matching the
script.ErrorRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has a [[ProxyHandler]] internal slot and a [[ProxyTarget]] internal slot \n
- Let remote value be a map matching the
script.ProxyRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - IsPromise(value) \n
- Let remote value be a map matching the
script.PromiseRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has a [[TypedArrayName]] internal slot \n
- Let remote value be a map matching the
script.TypedArrayRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value has an [[ArrayBufferData]] internal slot \n
- Let remote value be a map matching the
script.ArrayBufferRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - value is a platform object that implements
NodeList
\n - Let remote value be serialize an Array-like with
script.NodeListRemoteValue
,handle id, known object, value, serialization options, ownership type, serialization internal map, realm, and session. \n - value is a platform object that implements
HTMLCollection
\n - Let remote value be serialize an Array-like with
script.HTMLCollectionRemoteValue
, handle id, known object, value, serialization options, ownership type, known object, serialization internal map, realm, and session. \n - value is a platform object that implements
Node
\n - \n \n
- value is a platform object that implements
WindowProxy
\n - \n \n
- value is a platform object \n
- 1. Let remote value be a map matching the
script.ObjectRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - IsCallable(value) \n
- Let remote value be a map matching the
script.FunctionRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise. \n - Otherwise: \n
- \n \n
",
"rationale": "let",
"steps": [
{
@@ -6305,10 +6458,10 @@
"html": "Let flags be ToString(Get(value, \"flags\")).
"
},
{
- "html": "Let serialized be a map matching the script.RegExpValue
production in the local end definition, with the pattern
property set to the pattern and the the flags
property set to the flags.
"
+ "html": "Let serialized be a map matching the script.RegExpValue
production in the local end definition, with the pattern
property set to the pattern and the the flags
property set to the flags.
"
},
{
- "html": "Let remote value be a map matching the script.RegExpRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise, and\n the value
property set to serialized.
"
+ "html": "Let remote value be a map matching the script.RegExpRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise, and\n the value
property set to serialized.
"
}
],
"additional": [
@@ -6323,7 +6476,7 @@
"html": "Assert: serialized is not a throw completion.
"
},
{
- "html": "Let remote value be a map matching the script.DateRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise, and the\n value set to serialized.
"
+ "html": "Let remote value be a map matching the script.DateRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise, and the\n value set to serialized.
"
}
]
},
@@ -6332,7 +6485,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let remote value be a map matching the script.MapRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted\n otherwise.
"
+ "html": "Let remote value be a map matching the script.MapRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted\n otherwise.
"
},
{
"html": "Set internal ids if needed with serialization internal map, remote value and value.
"
@@ -6359,7 +6512,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let remote value be a map matching the script.SetRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted\n otherwise.
"
+ "html": "Let remote value be a map matching the script.SetRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted\n otherwise.
"
},
{
"html": "Set internal ids if needed with serialization internal map, remote value and value.
"
@@ -6389,7 +6542,7 @@
"html": "Let shared id be get shared id for a node with value and session.
"
},
{
- "html": "Let remote value be a map matching the script.NodeRemoteValue
production in the local end definition, with the sharedId
property set to shared id if it’s not null, or omitted otherwise, and the handle
property set to handle id if it’s not null, or omitted\n otherwise.
"
+ "html": "Let remote value be a map matching the script.NodeRemoteValue
production in the local end definition, with the sharedId
property set to shared id if it’s not null, or omitted otherwise, and the handle
property set to handle id if it’s not null, or omitted\n otherwise.
"
},
{
"html": "Set internal ids if needed with serialization internal map, remote value and value.
"
@@ -6402,7 +6555,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let serialized be a map.
"
+ "html": "Let serialized be a map.
"
},
{
"html": "Set serialized[\"nodeType
\"] to Get(value, \"nodeType\").
"
@@ -6426,13 +6579,13 @@
]
},
{
- "html": "Let child node count be the size of value’s children.
"
+ "html": "Let child node count be the size of value’s children.
"
},
{
"html": "Set serialized[\"childNodeCount
\"] to child node count.
"
},
{
- "html": "Otherwise, let children be an empty list and, for each node child in the children of value:",
+ "html": "Otherwise, let children be an empty list and, for each node child in the children of value:",
"rationale": "let",
"steps": [
{
@@ -6457,7 +6610,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let attributes be a new map.
"
+ "html": "Let attributes be a new map.
"
},
{
"html": "For each attribute in value’s attribute list:",
@@ -6515,13 +6668,13 @@
"html": "Let navigable be window’s navigable.
"
},
{
- "html": "Let navigable id be the navigable id for navigable.
"
+ "html": "Let navigable id be the navigable id for navigable.
"
},
{
- "html": "Let serialized be a map matching the script.WindowProxyProperties
production in the local end\n definition with the context
property set to navigable id.
"
+ "html": "Let serialized be a map matching the script.WindowProxyProperties
production in the local end\n definition with the context
property set to navigable id.
"
},
{
- "html": "Let remote value be a map matching the script.WindowProxyRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise, and\n the value
property set to serialized.
"
+ "html": "Let remote value be a map matching the script.WindowProxyRemoteValue
production in the local end definition, with the handle
property set to handle id if it’s not null, or omitted otherwise, and\n the value
property set to serialized.
"
}
]
},
@@ -6533,7 +6686,7 @@
"html": "Assert: type(value) is Object
"
},
{
- "html": "Let remote value be a map matching the script.ObjectRemoteValue
production\n in the local end definition, with the handle
property set\n to handle id if it’s not null, or omitted otherwise.
"
+ "html": "Let remote value be a map matching the script.ObjectRemoteValue
production\n in the local end definition, with the handle
property set\n to handle id if it’s not null, or omitted otherwise.
"
},
{
"html": "Set internal ids if needed with serialization internal map, remote value and value.
"
@@ -6569,7 +6722,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let remote value be a map matching production, with the handle
property set to handle id if it’s not null, or omitted\n otherwise.
"
+ "html": "Let remote value be a map matching production, with the handle
property set to handle id if it’s not null, or omitted\n otherwise.
"
},
{
"html": "Set internal ids if needed with serialization internal map, remote value and value.
"
@@ -6649,7 +6802,7 @@
"html": "Let property be CreateListFromArrayLike(item)
"
},
{
- "html": "Assert: property is a list of size 2
"
+ "html": "Assert: property is a list of size 2
"
},
{
"html": "Let key be property[0] and let value be property[1]
"
@@ -6696,7 +6849,7 @@
"html": "Let url be the result of running the URL serializer, given\n the URL of frame’s script url.
"
},
{
- "html": "Let frame info be a new map matching the script.StackFrame
production, with the url
field set to url, the functionName
field set to frame’s function,\n the lineNumber
field set to frame’s line\n number and the columnNumber
field set to frame’s column number.
"
+ "html": "Let frame info be a new map matching the script.StackFrame
production, with the url
field set to url, the functionName
field set to frame’s function,\n the lineNumber
field set to frame’s line\n number and the columnNumber
field set to frame’s column number.
"
}
]
},
@@ -6704,7 +6857,7 @@
"html": "Append frame info to call frames.
"
},
{
- "html": "Let stack trace be a new map matching the script.StackTrace
production, with the callFrames
property set to call frames.
"
+ "html": "Let stack trace be a new map matching the script.StackTrace
production, with the callFrames
property set to call frames.
"
},
{
"html": "Return stack trace.
"
@@ -6751,12 +6904,12 @@
"html": "Let navigable be document’s node navigable.
"
},
{
- "html": "Let navigable id be the navigable id for navigable if navigable is not null.
"
+ "html": "Let navigable id be the navigable id for navigable if navigable is not null.
"
}
]
},
{
- "html": "Let source be a map matching the script.Source
production with the realm
field set to realm, and the context
field set\n to navigable id if navigable is not null, or unset otherwise.
"
+ "html": "Let source be a map matching the script.Source
production with the realm
field set to realm, and the context
field set\n to navigable id if navigable is not null, or unset otherwise.
"
},
{
"html": "Return source.
"
@@ -6770,7 +6923,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
"html": "If sandbox is null or is an empty string:",
@@ -6788,10 +6941,10 @@
]
},
{
- "html": "Otherwise: let realm be result of trying to get or create a sandbox realm given sandbox and navigable.
"
+ "html": "Otherwise: let realm be result of trying to get or create a sandbox realm given sandbox and navigable.
"
},
{
- "html": "Return success with data realm
"
+ "html": "Return success with data realm
"
}
]
},
@@ -6809,7 +6962,7 @@
"html": "Let sandbox be null.
"
},
{
- "html": "If target contains \"sandbox
\", set sandbox to target[\"sandbox
\"].
"
+ "html": "If target contains \"sandbox
\", set sandbox to target[\"sandbox
\"].
"
},
{
"html": "Let realm be get a realm from a navigable with target[\"context
\"] and sandbox.
"
@@ -6832,7 +6985,7 @@
]
},
{
- "html": "Return success with data realm
"
+ "html": "Return success with data realm
"
}
]
},
@@ -6845,7 +6998,7 @@
"html": "Let function declaration be the functionDeclaration
field of command\n parameters.
"
},
{
- "html": "Let arguments be the arguments
field of command\n parameters if present, or an empty list otherwise.
"
+ "html": "Let arguments be the arguments
field of command\n parameters if present, or an empty list otherwise.
"
},
{
"html": "Let navigables be null.
"
@@ -6855,17 +7008,17 @@
"rationale": "set",
"steps": [
{
- "html": "Set navigables to an empty set.
"
+ "html": "Set navigables to an empty set.
"
},
{
"html": "For each navigable id of command parameters[\"contexts
\"]",
"rationale": "let",
"steps": [
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
- "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
+ "html": "If navigable is not a top-level traversable, return error with error code invalid argument.
"
},
{
"html": "Append navigable to navigables.
"
@@ -6887,7 +7040,7 @@
"html": "Set preload script map[script] to a struct with function\n declaration
function declaration, arguments
arguments, contexts
navigables, and sandbox
sandbox.
"
},
{
- "html": "Return a new map matching the script.AddPreloadScriptResult
with the script
field set to script.
"
+ "html": "Return a new map matching the script.AddPreloadScriptResult
with the script
field set to script.
"
}
]
},
@@ -6897,7 +7050,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let realm be the result of trying to get a realm from a target given the value of the target
field of command parameters.
"
+ "html": "Let realm be the result of trying to get a realm from a target given the value of the target
field of command parameters.
"
},
{
"html": "Let handles the value of the handles
field of command parameters.
"
@@ -6915,7 +7068,7 @@
]
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -6926,14 +7079,14 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let deserialized arguments list be an empty list.
"
+ "html": "Let deserialized arguments list be an empty list.
"
},
{
"html": "For each serialized argument of serialized arguments list:",
"rationale": "let",
"steps": [
{
- "html": "Let deserialized argument be the result of trying to deserialize local value given serialized argument, realm and session.
"
+ "html": "Let deserialized argument be the result of trying to deserialize local value given serialized argument, realm and session.
"
},
{
"html": "Append deserialized argument to the deserialized arguments list.
"
@@ -6941,7 +7094,7 @@
]
},
{
- "html": "Return success with data deserialized arguments list.
"
+ "html": "Return success with data deserialized arguments list.
"
}
]
},
@@ -6977,7 +7130,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let realm be the result of trying to get a realm from a target given the value of the target
field of command parameters.
"
+ "html": "Let realm be the result of trying to get a realm from a target given the value of the target
field of command parameters.
"
},
{
"html": "Let realm id be realm’s realm id.
"
@@ -6989,10 +7142,10 @@
"html": "Let command arguments be the value of the arguments
field\n of command parameters.
"
},
{
- "html": "Let deserialized arguments be an empty list.
"
+ "html": "Let deserialized arguments be an empty list.
"
},
{
- "html": "If command arguments is not null, set deserialized arguments to the result of trying to deserialize arguments given realm, command arguments and session.
"
+ "html": "If command arguments is not null, set deserialized arguments to the result of trying to deserialize arguments given realm, command arguments and session.
"
},
{
"html": "Let this parameter be the value of the this
field\n of command parameters.
"
@@ -7001,7 +7154,7 @@
"html": "Let this object be null.
"
},
{
- "html": "If this parameter is not null, set this object to the result of trying to deserialize local value given this parameter, realm and session.
"
+ "html": "If this parameter is not null, set this object to the result of trying to deserialize local value given this parameter, realm and session.
"
},
{
"html": "Let function declaration be the value of the functionDeclaration
field of command parameters.
"
@@ -7010,7 +7163,7 @@
"html": "Let await promise be the value of the awaitPromise
field of command parameters.
"
},
{
- "html": "Let serialization options be the value of the serializationOptions
field of command parameters, if present,\n or otherwise a map matching the script.SerializationOptions
production with the fields set to their default values.
"
+ "html": "Let serialization options be the value of the serializationOptions
field of command parameters, if present,\n or otherwise a map matching the script.SerializationOptions
production with the fields set to their default values.
"
},
{
"html": "Let result ownership be the value of the resultOwnership
field of command parameters, if present, or none
otherwise.
"
@@ -7032,7 +7185,7 @@
"html": "Let exception details be the result of get exception details given realm, function body evaluation status, result ownership and session.
"
},
{
- "html": "Return a new map matching the script.EvaluateResultException
production, with the exceptionDetails
field set to exception details.
"
+ "html": "Return a new map matching the script.EvaluateResultException
production, with the exceptionDetails
field set to exception details.
"
}
]
},
@@ -7044,7 +7197,7 @@
"rationale": "return",
"steps": [
{
- "html": "Return an error with error code invalid argument
"
+ "html": "Return an error with error code invalid argument
"
}
]
},
@@ -7077,7 +7230,7 @@
"html": "Let exception details be the result of get exception details given realm, evaluation status, result ownership and session.
"
},
{
- "html": "Return a new map matching the script.EvaluateResultException
production, with the exceptionDetails
field set to exception details.
"
+ "html": "Return a new map matching the script.EvaluateResultException
production, with the exceptionDetails
field set to exception details.
"
}
]
},
@@ -7085,10 +7238,10 @@
"html": "Assert: evaluation status.[[Type]] is normal
.
"
},
{
- "html": "Let result be the result of serialize as a remote value with evaluation status.[[Value]], serialization options, result ownership,\n a new map as serialization internal map, realm and session.
"
+ "html": "Let result be the result of serialize as a remote value with evaluation status.[[Value]], serialization options, result ownership,\n a new map as serialization internal map, realm and session.
"
},
{
- "html": "Return a new map matching the script.EvaluateResultSuccess
production, with the realm
field set to realm id,\n and the result
field set to result.
"
+ "html": "Return a new map matching the script.EvaluateResultSuccess
production, with the realm
field set to realm id,\n and the result
field set to result.
"
}
]
},
@@ -7098,7 +7251,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let realm be the result of trying to get a realm from a target given the value of the target
field of command parameters.
"
+ "html": "Let realm be the result of trying to get a realm from a target given the value of the target
field of command parameters.
"
},
{
"html": "Let realm id be realm’s realm id.
"
@@ -7113,7 +7266,7 @@
"html": "Let await promise be the value of the awaitPromise
field of command parameters.
"
},
{
- "html": "Let serialization options be the value of the serializationOptions
field of command parameters, if present,\n or otherwise a map matching the script.SerializationOptions
production with the fields set to their default values.
"
+ "html": "Let serialization options be the value of the serializationOptions
field of command parameters, if present,\n or otherwise a map matching the script.SerializationOptions
production with the fields set to their default values.
"
},
{
"html": "Let result ownership be the value of the resultOwnership
field of command parameters, if present, or none
otherwise.
"
@@ -7156,7 +7309,7 @@
"html": "Let exception details be the result of get exception details with realm, evaluation status, result ownership and session.
"
},
{
- "html": "Return a new map matching the script.EvaluateResultException
production, with the realm
field set to realm id, and the exceptionDetails
field set to exception details.
"
+ "html": "Return a new map matching the script.EvaluateResultException
production, with the realm
field set to realm id, and the exceptionDetails
field set to exception details.
"
}
]
},
@@ -7164,10 +7317,10 @@
"html": "Assert: evaluation status.[[Type]] is normal
.
"
},
{
- "html": "Let result be the result of serialize as a remote value with evaluation status.[[Value]], serialization options, result ownership,\n a new map as serialization internal map, realm and session.
"
+ "html": "Let result be the result of serialize as a remote value with evaluation status.[[Value]], serialization options, result ownership,\n a new map as serialization internal map, realm and session.
"
},
{
- "html": "Return a new map matching the script.EvaluateResultSuccess
production, with the with the realm
field set to realm id, and\n the result
field set to result.
"
+ "html": "Return a new map matching the script.EvaluateResultSuccess
production, with the with the realm
field set to realm id, and\n the result
field set to result.
"
}
]
},
@@ -7177,20 +7330,20 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let environment settings be a list of all the environment settings objects that have their execution ready flag set.
"
+ "html": "Let environment settings be a list of all the environment settings objects that have their execution ready flag set.
"
},
{
"html": "If command parameters contains context
:",
"rationale": "let",
"steps": [
{
- "html": "Let navigable be the result of trying to get a navigable with command parameters[\"context
\"].
"
+ "html": "Let navigable be the result of trying to get a navigable with command parameters[\"context
\"].
"
},
{
"html": "Let document be navigable’s active document.
"
},
{
- "html": "Let navigable environment settings be a list.
"
+ "html": "Let navigable environment settings be a list.
"
},
{
"html": "For each settings of environment settings:",
@@ -7217,7 +7370,7 @@
"html": "Let realm info be the result of get the realm info given settings.
"
},
{
- "html": "If command parameters contains type
and realm\n info[\"type
\"] is not equal to command\n parameters[\"type
\"] then continue.
"
+ "html": "If command parameters contains type
and realm\n info[\"type
\"] is not equal to command\n parameters[\"type
\"] then continue.
"
},
{
"html": "If realm info is not null, append realm info to realms.
"
@@ -7225,10 +7378,10 @@
]
},
{
- "html": "Let body be a map matching the script.GetRealmsResult
production,\n with the realms
field set to realms.
"
+ "html": "Let body be a map matching the script.GetRealmsResult
production,\n with the realms
field set to realms.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -7244,10 +7397,10 @@
"html": "Let preload script map be session’s preload script map.
"
},
{
- "html": "If preload script map does not contain script, return error with error code no such script.
"
+ "html": "If preload script map does not contain script, return error with error code no such script.
"
},
{
- "html": "Remove script from preload script map.
"
+ "html": "Remove script from preload script map.
"
},
{
"html": "Return null
"
@@ -7271,22 +7424,22 @@
"rationale": "if",
"steps": [
{
- "html": "If channel properties contains \"serializationOptions
\", let serialization options be the\n value of the serializationOptions
field of channel\n properties. Otherwise let serialization options be a map matching the script.SerializationOptions
production with the\n fields set to their default values.
"
+ "html": "If channel properties contains \"serializationOptions
\", let serialization options be the\n value of the serializationOptions
field of channel\n properties. Otherwise let serialization options be a map matching the script.SerializationOptions
production with the\n fields set to their default values.
"
},
{
- "html": "Let if channel properties contains \"ownership
\", let ownership type be channel properties[\"ownership
\"]. Otherwise let ownership type be \"none
\".
"
+ "html": "Let if channel properties contains \"ownership
\", let ownership type be channel properties[\"ownership
\"]. Otherwise let ownership type be \"none
\".
"
},
{
- "html": "Let data be the result of serialize as a remote value given message, serialization options, ownership type, a new map as serialization\n internal map and realm.
"
+ "html": "Let data be the result of serialize as a remote value given message, serialization options, ownership type, a new map as serialization\n internal map and realm.
"
},
{
"html": "Let source be the get the source with realm.
"
},
{
- "html": "Let params be a map matching the script.MessageParameters
production, with the channel
field set to channel properties[\"channel
\"],\n the data
field set to data, and the source
field set to source.
"
+ "html": "Let params be a map matching the script.MessageParameters
production, with the channel
field set to channel properties[\"channel
\"],\n the data
field set to data, and the source
field set to source.
"
},
{
- "html": "Let body be a map matching the script.Message
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the script.Message
production, with the params
field set to params.
"
},
{
"html": "Emit an event with session and body.
"
@@ -7313,7 +7466,7 @@
"html": "Let related navigables be the result of get related navigables given environment settings.
"
},
{
- "html": "Let body be a map matching the script.RealmCreated
production, with the params
field set to realm info.
"
+ "html": "Let body be a map matching the script.RealmCreated
production, with the params
field set to realm info.
"
},
{
"html": "For each session in the set of sessions for which an event is enabled given \"script.realmCreated
\" and related navigables:",
@@ -7339,7 +7492,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let related navigables be a new set.
"
+ "html": "Let related navigables be a new set.
"
},
{
"html": "If the associated Document
of settings’ relevant global object is a Document:",
@@ -7369,7 +7522,7 @@
"html": "If realm info is null, continue.
"
},
{
- "html": "Let body be a map matching the script.RealmCreated
production, with the params
field set to realm info.
"
+ "html": "Let body be a map matching the script.RealmCreated
production, with the params
field set to realm info.
"
},
{
"html": "If event is enabled given session,\n \"script.realmCreated
\" and related navigables:",
@@ -7390,10 +7543,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let related navigables be an empty set.
"
+ "html": "Let related navigables be an empty set.
"
},
{
- "html": "Append document’s navigable to related navigables.
"
+ "html": "Append document’s navigable to related navigables.
"
},
{
"html": "For each worklet global scope in document’s worklet global scopes:",
@@ -7406,10 +7559,10 @@
"html": "Let realm id be the realm id for realm.
"
},
{
- "html": "Let params be a map matching the script.RealmDestroyedParameters
production, with the realm
field set of realm id.
"
+ "html": "Let params be a map matching the script.RealmDestroyedParameters
production, with the realm
field set of realm id.
"
},
{
- "html": "Let body be a map matching the script.RealmDestroyed
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the script.RealmDestroyed
production, with the params
field set to params.
"
},
{
"html": "For each session in the set of sessions for which an event is enabled given \"script.realmDestroyed
\" and related navigables:",
@@ -7432,10 +7585,10 @@
"html": "Let realm id be the realm id for realm.
"
},
{
- "html": "Let params be a map matching the script.RealmDestroyedParameters
production, with the realm
field set to realm id.
"
+ "html": "Let params be a map matching the script.RealmDestroyedParameters
production, with the realm
field set to realm id.
"
},
{
- "html": "Let body be a map matching the script.RealmDestroyed
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the script.RealmDestroyed
production, with the params
field set to params.
"
},
{
"html": "For each session in the set of sessions for which an event is enabled given \"script.realmDestroyed
\" and related navigables:",
@@ -7466,10 +7619,10 @@
"html": "Let realm id be the realm id for realm.
"
},
{
- "html": "Let params be a map matching the script.RealmDestroyedParameters
production, with the realm
field set of realm id.
"
+ "html": "Let params be a map matching the script.RealmDestroyedParameters
production, with the realm
field set of realm id.
"
},
{
- "html": "Let body be a map matching the script.RealmDestroyed
production, with the params
field set to params.
"
+ "html": "Let body be a map matching the script.RealmDestroyed
production, with the params
field set to params.
"
}
]
},
@@ -7480,7 +7633,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let deserialized filter to be an empty map.
"
+ "html": "Let deserialized filter to be an empty map.
"
},
{
"html": "For each name → value in filter:",
@@ -7513,7 +7666,7 @@
"rationale": "set",
"steps": [
{
- "html": "Set partition spec to an empty map.
"
+ "html": "Set partition spec to an empty map.
"
}
]
},
@@ -7522,25 +7675,25 @@
"rationale": "let",
"steps": [
{
- "html": "Let navigable be the result of trying to get a navigable given partition spec[\"context
\"].
"
+ "html": "Let navigable be the result of trying to get a navigable given partition spec[\"context
\"].
"
},
{
"html": "Let partition key be the key of navigable’s associated storage partition.
"
},
{
- "html": "Return success with data partition key.
"
+ "html": "Return success with data partition key.
"
}
]
},
{
- "html": "Let partition key be an empty map.
"
+ "html": "Let partition key be an empty map.
"
},
{
"html": "For each name → default value in the default values for storage partition key attributes:",
"rationale": "let",
"steps": [
{
- "html": "Let value be partition spec[name] if it exists or default value otherwise.
"
+ "html": "Let value be partition spec[name] if it exists or default value otherwise.
"
},
{
"html": "Set partition key[name] to value.
"
@@ -7552,7 +7705,7 @@
"rationale": "if",
"steps": [
{
- "html": "If partition spec[name] exists:",
+ "html": "If partition spec[name] exists:",
"rationale": "set",
"steps": [
{
@@ -7565,14 +7718,14 @@
"rationale": "return",
"steps": [
{
- "html": "Return error with error code underspecified storage partition.
"
+ "html": "Return error with error code underspecified storage partition.
"
}
]
}
]
},
{
- "html": "Return success with data partition key.
"
+ "html": "Return success with data partition key.
"
}
]
},
@@ -7590,12 +7743,12 @@
"html": "Let store be the cookie store of that storage partition.
"
},
{
- "html": "Return success with data store.
"
+ "html": "Return success with data store.
"
}
]
},
{
- "html": "Return error with error code no such storage partition.
"
+ "html": "Return error with error code no such storage partition.
"
}
]
},
@@ -7663,16 +7816,16 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let filter be the value of the filter
field of command parameters if it is present or an empty map if it isn’t.
"
+ "html": "Let filter be the value of the filter
field of command parameters if it is present or an empty map if it isn’t.
"
},
{
"html": "Let partition spec be the value of the partition
field of command parameters if it is present or null if it isn’t.
"
},
{
- "html": "Let partition key be the result of trying to expand a storage partition spec with partition spec.
"
+ "html": "Let partition key be the result of trying to expand a storage partition spec with partition spec.
"
},
{
- "html": "Let store be the result of trying to get the cookie store with partition key.
"
+ "html": "Let store be the result of trying to get the cookie store with partition key.
"
},
{
"html": "Let cookies be the result of get matching cookies with store and filter.
"
@@ -7693,10 +7846,10 @@
]
},
{
- "html": "Let body be a map matching the storage.GetCookiesResult
production,\nwith the cookies
field set to serialized cookies and the partitionKey
field set to partition key.
"
+ "html": "Let body be a map matching the storage.GetCookiesResult
production,\nwith the cookies
field set to serialized cookies and the partitionKey
field set to partition key.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -7712,22 +7865,22 @@
"html": "Let partition spec be the value of the partition
field of command parameters if it is present or null if it isn’t.
"
},
{
- "html": "Let partition key be the result of trying to expand a storage partition spec with partition spec.
"
+ "html": "Let partition key be the result of trying to expand a storage partition spec with partition spec.
"
},
{
- "html": "Let store be the result of trying to get the cookie store with partition key.
"
+ "html": "Let store be the result of trying to get the cookie store with partition key.
"
},
{
"html": "Let deserialized value be deserialize protocol bytes with cookie spec[\"value
\"].
"
},
{
- "html": "Create a cookie in store using cookie name cookie spec[\"name
\"], cookie value deserialized value, cookie domain cookie spec[\"domain
\"], and an attribute-value list of the\nfollowing cookie concepts listed in the table for cookie conversion:
\n \n - Cookie path \n
- \n
cookie spec[\"path
\"] if it exists, otherwise \"/
\".
\n - Cookie secure only \n
- \n
cookie spec[\"secure
\"] if it exists, otherwise false.
\n - Cookie HTTP only \n
- \n
cookie spec[\"httpOnly
\"] if it exists, otherwise false.
\n - Cookie expiry time \n
- \n
cookie spec[\"expiry
\"] if it exists, otherwise leave unset to\n indicate that this is a session cookie.
\n - Cookie same site \n
- \n
cookie spec[\"sameSite
\"] if it exists, otherwise leave unset to\n indicate that no same site policy is defined.
\n
\n If this step is aborted without inserting a cookie into the cookie store, return error with error code unable to set cookie.
"
+ "html": "Create a cookie in store using cookie name cookie spec[\"name
\"], cookie value deserialized value, cookie domain cookie spec[\"domain
\"], and an attribute-value list of the\nfollowing cookie concepts listed in the table for cookie conversion:
\n \n - Cookie path \n
- \n
cookie spec[\"path
\"] if it exists, otherwise \"/
\".
\n - Cookie secure only \n
- \n
cookie spec[\"secure
\"] if it exists, otherwise false.
\n - Cookie HTTP only \n
- \n
cookie spec[\"httpOnly
\"] if it exists, otherwise false.
\n - Cookie expiry time \n
- \n
cookie spec[\"expiry
\"] if it exists, otherwise leave unset to\n indicate that this is a session cookie.
\n - Cookie same site \n
- \n
cookie spec[\"sameSite
\"] if it exists, otherwise leave unset to\n indicate that no same site policy is defined.
\n
\n If this step is aborted without inserting a cookie into the cookie store, return error with error code unable to set cookie.
"
},
{
- "html": "Let body be a map matching the storage.SetCookieResult
production,\nwith the partitionKey
field set to partition key.
"
+ "html": "Let body be a map matching the storage.SetCookieResult
production,\nwith the partitionKey
field set to partition key.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -7737,16 +7890,16 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let filter be the value of the filter
field of command parameters if it is present or an empty map if it isn’t.
"
+ "html": "Let filter be the value of the filter
field of command parameters if it is present or an empty map if it isn’t.
"
},
{
"html": "Let partition spec be the value of the partition
field of command parameters if it is present or null if it isn’t.
"
},
{
- "html": "Let partition key be the result of trying to expand a storage partition spec with partition spec.
"
+ "html": "Let partition key be the result of trying to expand a storage partition spec with partition spec.
"
},
{
- "html": "Let store be the result of trying to get the cookie store with partition key.
"
+ "html": "Let store be the result of trying to get the cookie store with partition key.
"
},
{
"html": "Let cookies be the result of get matching cookies with store and filter.
"
@@ -7761,10 +7914,10 @@
]
},
{
- "html": "Let body be a map matching the storage.DeleteCookiesResult
production,\nwith the partitionKey
field set to partition key.
"
+ "html": "Let body be a map matching the storage.DeleteCookiesResult
production,\nwith the partitionKey
field set to partition key.
"
},
{
- "html": "Return success with data body.
"
+ "html": "Return success with data body.
"
}
]
},
@@ -7785,7 +7938,7 @@
"rationale": "append",
"steps": [
{
- "html": "Append the navigable id for navigable to navigable ids.
"
+ "html": "Append the navigable id for navigable to navigable ids.
"
}
]
},
@@ -7794,7 +7947,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let other navigables be an empty list
"
+ "html": "Let other navigables be an empty list
"
},
{
"html": "For each other id in navigable ids:
"
@@ -7852,14 +8005,14 @@
"html": "Let serialized args be a new list.
"
},
{
- "html": "Let serialization options be a map matching the script.SerializationOptions
production with the fields set to\n their default values.
"
+ "html": "Let serialization options be a map matching the script.SerializationOptions
production with the fields set to\n their default values.
"
},
{
"html": "For each arg of args:",
"rationale": "let",
"steps": [
{
- "html": "Let serialized arg be the result of serialize as a remote value with arg as value, serialization options, none
as\n ownership type, a new map as serialization internal map, realm and session.
"
+ "html": "Let serialized arg be the result of serialize as a remote value with arg as value, serialization options, none
as\n ownership type, a new map as serialization internal map, realm and session.
"
},
{
"html": "Add serialized arg to serialized args.
"
@@ -7873,10 +8026,10 @@
"html": "If method is \"assert
\", \"error
\",\n \"trace
\", or \"warn
\", let stack be the current\n stack trace. Otherwise let stack be null.
"
},
{
- "html": "Let entry be a map matching the log.ConsoleLogEntry
production,\n with the the level
field set to level, the text
field set to text, the timestamp
field set to timestamp, the stackTrace
field set to stack if stack is not null, or\n omitted otherwise, the method field set to method, the source
field set to source and the args
field set to serialized\n args.
"
+ "html": "Let entry be a map matching the log.ConsoleLogEntry
production,\n with the the level
field set to level, the text
field set to text, the timestamp
field set to timestamp, the stackTrace
field set to stack if stack is not null, or\n omitted otherwise, the method field set to method, the source
field set to source and the args
field set to serialized\n args.
"
},
{
- "html": "Let body be a map matching the log.EntryAdded
production, with\n the params
field set to entry.
"
+ "html": "Let body be a map matching the log.EntryAdded
production, with\n the params
field set to entry.
"
},
{
"html": "Let settings be the current settings object
"
@@ -7909,7 +8062,7 @@
"html": "Let source be the result of get the source given current Realm Record.
"
},
{
- "html": "Let entry be a map matching the log.JavascriptLogEntry
production,\n with level
set to \"error
\", text
set to message, source
set to source, and the timestamp
field set to timestamp.
"
+ "html": "Let entry be a map matching the log.JavascriptLogEntry
production,\n with level
set to \"error
\", text
set to message, source
set to source, and the timestamp
field set to timestamp.
"
},
{
"html": "Let related navigables be the result of get related navigables given settings.
"
@@ -7935,10 +8088,10 @@
"rationale": "let",
"steps": [
{
- "html": "Let maybe context be the result of getting a navigable given navigable id.
"
+ "html": "Let maybe context be the result of getting a navigable given navigable id.
"
},
{
- "html": "If maybe context is an error, remove navigable id from log event\n buffer and continue.
"
+ "html": "If maybe context is an error, remove navigable id from log event\n buffer and continue.
"
},
{
"html": "Let navigable be maybe context’s data
"
@@ -7981,7 +8134,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If object is a map matching the input.ElementOrigin
production, return true.
"
+ "html": "If object is a map matching the input.ElementOrigin
production, return true.
"
},
{
"html": "Return false.
"
@@ -8014,13 +8167,13 @@
"html": "Let realm be environment settings’ realm execution context's\n Realm component.
"
},
{
- "html": "Let element be the result of trying to deserialize remote reference with reference, realm, and session.
"
+ "html": "Let element be the result of trying to deserialize remote reference with reference, realm, and session.
"
},
{
- "html": "If element doesn’t implement Element
return error with error code no such element.
"
+ "html": "If element doesn’t implement Element
return error with error code no such element.
"
},
{
- "html": "Return success with data element.
"
+ "html": "Return success with data element.
"
}
]
}
@@ -8035,7 +8188,7 @@
"html": "Let navigable id be the value of the context
field of command parameters.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
"html": "Let input state be get the input state with session and navigable’s top-level traversable.
"
@@ -8047,10 +8200,10 @@
"html": "Let actions by tick be the result of trying to with input state, command parameters, and actions options.
"
},
{
- "html": "Try to dispatch actions with input state, actions by tick, navigable, and actions options.
"
+ "html": "Try to dispatch actions with input state, actions by tick, navigable, and actions options.
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -8063,7 +8216,7 @@
"html": "Let navigable id be the value of the context
field of command parameters.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
"html": "Let top-level traversable be navigable’s top-level traversable.
"
@@ -8078,13 +8231,13 @@
"html": "Let undo actions be input state’s input cancel list in reverse order.
"
},
{
- "html": "Try to dispatch tick actions with undo actions, 0, navigable, and actions options.
"
+ "html": "Try to dispatch tick actions with undo actions, 0, navigable, and actions options.
"
},
{
"html": "Reset the input state with session and top-level traversable.
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -8097,7 +8250,7 @@
"html": "Let navigable id be the value of the command\n parameters[\"context
\"] field.
"
},
{
- "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
+ "html": "Let navigable be the result of trying to get a navigable with navigable id.
"
},
{
"html": "Let document be navigable’s active document.
"
@@ -8109,16 +8262,16 @@
"html": "Let realm be environment settings’s realm execution context's\n Realm component.
"
},
{
- "html": "Let element be the result of trying to deserialize remote reference with command parameters[\"element
\"], realm, and session.
"
+ "html": "Let element be the result of trying to deserialize remote reference with command parameters[\"element
\"], realm, and session.
"
},
{
- "html": "If element doesn’t implement Element
, return error with error code no such element.
"
+ "html": "If element doesn’t implement Element
, return error with error code no such element.
"
},
{
- "html": "If element doesn’t implement HTMLInputElement
, element’s type
is not in the File Upload state, or element is disabled,\n return error with error code unable to set file input.
"
+ "html": "If element doesn’t implement HTMLInputElement
, element’s type
is not in the File Upload state, or element is disabled,\n return error with error code unable to set file input.
"
},
{
- "html": "If the size of files is greater than 1 and element’s multiple
attribute is not set, return error with error code unable to set file input.
"
+ "html": "If the size of files is greater than 1 and element’s multiple
attribute is not set, return error with error code unable to set file input.
"
},
{
"html": "Let files be the value of the command parameters[\"files
\"]\n field.
"
@@ -8127,16 +8280,16 @@
"html": "Let selected files be element’s selected files.
"
},
{
- "html": "If the size of the intersection of files and selected\n files is equal to the size of selected files and equal to the size of files, queue an element task on the user interaction task source given element to fire an event named cancel
at element, with\n the bubbles
attribute initialized to true.
"
+ "html": "If the size of the intersection of files and selected\n files is equal to the size of selected files and equal to the size of files, queue an element task on the user interaction task source given element to fire an event named cancel
at element, with\n the bubbles
attribute initialized to true.
"
},
{
"html": "Otherwise, update the file selection for element with files as the\n user’s selection.
"
},
{
- "html": "If, for any reason, the remote end is unable to set the selected files of element to the files with paths given in files,\n return error with error code unsupported operation.
"
+ "html": "If, for any reason, the remote end is unable to set the selected files of element to the files with paths given in files,\n return error with error code unsupported operation.
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -8150,7 +8303,7 @@
"html": "Perform implementation defined steps to decode bytes using the zip compression algorithm. TODO: Find a better reference for zip decoding.
"
},
{
- "html": "If the previous step failed (e.g. because bytes did not represent valid zip-compressed data) then return error with error code invalid web extension. Otherwise let entry be a directory entry containing the extracted filesystem entries.
"
+ "html": "If the previous step failed (e.g. because bytes did not represent valid zip-compressed data) then return error with error code invalid web extension. Otherwise let entry be a directory entry containing the extracted filesystem entries.
"
},
{
"html": "Return entry.
"
@@ -8167,7 +8320,7 @@
"html": "Let type be extension data spec[\"type
\"].
"
},
{
- "html": "If installing a web extension using type isn’t supported return error with error code unsupported operation.
"
+ "html": "If installing a web extension using type isn’t supported return error with error code unsupported operation.
"
},
{
"html": "In the following list of conditions and associated steps, run the first set of steps for which the associated condition is true:
\n \n - type is the string \"
path
\" \n - \n \n
- type is the string \"
archivePath
\" \n - \n \n
- type is the string \"
base64
\" \n - \n \n
",
@@ -8204,7 +8357,7 @@
"html": "Let bytes be archive entry’s binary data.
"
},
{
- "html": "Let entry be the result of trying to given bytes.
"
+ "html": "Let entry be the result of trying to given bytes.
"
}
]
},
@@ -8219,7 +8372,7 @@
"html": "If bytes is failure, return null.
"
},
{
- "html": "Let entry be the result of trying to given bytes.
"
+ "html": "Let entry be the result of trying to given bytes.
"
}
]
}
@@ -8236,25 +8389,25 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If installing web extensions isn’t supported return error with error code unsupported operation.
"
+ "html": "If installing web extensions isn’t supported return error with error code unsupported operation.
"
},
{
"html": "Let extension data spec be command parameters[\"extensionData
\"].
"
},
{
- "html": "Let extension directory entry be the result of trying to expand a web extension data spec with extension data spec.
"
+ "html": "Let extension directory entry be the result of trying to expand a web extension data spec with extension data spec.
"
},
{
- "html": "If extension directory entry| is null, return error with error code invalid web extension.
"
+ "html": "If extension directory entry is null, return error with error code invalid web extension.
"
},
{
- "html": "Perform implementation defined steps to install a web extension from extension directory entry. If this fails, return error with error code invalid web extension. Otherwise let extension id be the unique identifier of the newly installed web extension.
"
+ "html": "Perform implementation defined steps to install a web extension from extension directory entry. If this fails, return error with error code invalid web extension. Otherwise let extension id be the unique identifier of the newly installed web extension.
"
},
{
- "html": "Let result be a map matching the webExtension.InstallResult
production with the extension
field set to extension id.
"
+ "html": "Let result be a map matching the webExtension.InstallResult
production with the extension
field set to extension id.
"
},
{
- "html": "Return success with data result.
"
+ "html": "Return success with data result.
"
}
]
},
@@ -8267,13 +8420,13 @@
"html": "Let extension be command parameters[\"extension
\"].
"
},
{
- "html": "If the remote end has no web extension with id equal to extension, return error with error code no such web extension.
"
+ "html": "If the remote end has no web extension with id equal to extension, return error with error code no such web extension.
"
},
{
- "html": "Perform any implementation-defined steps to remove the web extension from the remote end. If this fails, return error with error code unknown error.
"
+ "html": "Perform any implementation-defined steps to remove the web extension from the remote end. If this fails, return error with error code unknown error.
"
},
{
- "html": "Return success with data null.
"
+ "html": "Return success with data null.
"
}
]
},
@@ -8293,7 +8446,7 @@
"rationale": "if",
"steps": [
{
- "html": "If device pixel ratio overrides contains window’s navigable, return device pixel ratio overrides[window’s navigable].
"
+ "html": "If device pixel ratio overrides contains window’s navigable, return device pixel ratio overrides[window’s navigable].
"
}
]
}
diff --git a/tr/cddl/webdriver-bidi-all.cddl b/tr/cddl/webdriver-bidi-all.cddl
index 202a72699925..a802d7b37dd6 100644
--- a/tr/cddl/webdriver-bidi-all.cddl
+++ b/tr/cddl/webdriver-bidi-all.cddl
@@ -187,11 +187,22 @@ session.UserPromptHandler = {
session.UserPromptHandlerType = "accept" / "dismiss" / "ignore";
+session.Subscription = text
+
session.SubscriptionRequest = {
events: [+text],
? contexts: [+browsingContext.BrowsingContext],
}
+session.UnsubscribeByIDRequest = {
+ subscriptions: [+session.Subscription],
+}
+
+session.UnsubscribeByAttributesRequest = {
+ events: [+text],
+ ? contexts: [+browsingContext.BrowsingContext],
+}
+
session.Status = (
method: "session.status",
params: EmptyParams,
@@ -237,9 +248,13 @@ session.Subscribe = (
params: session.SubscriptionRequest
)
+session.SubscriptionRequestResult = {
+ subscription: session.Subscription,
+}
+
session.Unsubscribe = (
method: "session.unsubscribe",
- params: session.SubscriptionRequest
+ params: session.UnsubscribeByAttributesRequest / session.UnsubscribeByIDRequest,
)
BrowserCommand = (
diff --git a/tr/cddl/webdriver-bidi-local.cddl b/tr/cddl/webdriver-bidi-local.cddl
index 01e16ed867df..2e937baa3a4c 100644
--- a/tr/cddl/webdriver-bidi-local.cddl
+++ b/tr/cddl/webdriver-bidi-local.cddl
@@ -158,6 +158,8 @@ session.UserPromptHandler = {
session.UserPromptHandlerType = "accept" / "dismiss" / "ignore";
+session.Subscription = text
+
session.StatusResult = {
ready: bool,
message: text,
@@ -179,6 +181,10 @@ session.NewResult = {
}
}
+session.SubscriptionRequestResult = {
+ subscription: session.Subscription,
+}
+
BrowserResult = (
browser.CreateUserContextResult /
browser.GetUserContextsResult
diff --git a/tr/cddl/webdriver-bidi-remote.cddl b/tr/cddl/webdriver-bidi-remote.cddl
index db6edf268f7b..9ff084315ac7 100644
--- a/tr/cddl/webdriver-bidi-remote.cddl
+++ b/tr/cddl/webdriver-bidi-remote.cddl
@@ -106,11 +106,22 @@ session.UserPromptHandler = {
session.UserPromptHandlerType = "accept" / "dismiss" / "ignore";
+session.Subscription = text
+
session.SubscriptionRequest = {
events: [+text],
? contexts: [+browsingContext.BrowsingContext],
}
+session.UnsubscribeByIDRequest = {
+ subscriptions: [+session.Subscription],
+}
+
+session.UnsubscribeByAttributesRequest = {
+ events: [+text],
+ ? contexts: [+browsingContext.BrowsingContext],
+}
+
session.Status = (
method: "session.status",
params: EmptyParams,
@@ -137,7 +148,7 @@ session.Subscribe = (
session.Unsubscribe = (
method: "session.unsubscribe",
- params: session.SubscriptionRequest
+ params: session.UnsubscribeByAttributesRequest / session.UnsubscribeByIDRequest,
)
BrowserCommand = (
diff --git a/tr/css/css-color-hdr.json b/tr/css/css-color-hdr.json
new file mode 100644
index 000000000000..cca5db45aedb
--- /dev/null
+++ b/tr/css/css-color-hdr.json
@@ -0,0 +1,117 @@
+{
+ "spec": {
+ "title": "CSS Color HDR Module Level 1",
+ "url": "https://www.w3.org/TR/css-color-hdr-1/"
+ },
+ "properties": [
+ {
+ "name": "dynamic-range-limit",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#propdef-dynamic-range-limit",
+ "value": "standard | high | constrained-high | ",
+ "initial": "high",
+ "appliesTo": "all elements",
+ "inherited": "yes",
+ "percentages": "n/a",
+ "computedValue": "see Computed Value for dynamic-range-limit",
+ "canonicalOrder": "per grammar",
+ "animationType": "by dynamic-range-limit-mix()",
+ "values": [
+ {
+ "name": "standard",
+ "prose": "The highest luminance color that is displayed is the same as media white, i.e. the CSS color white.",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-dynamic-range-limit-standard",
+ "type": "value",
+ "value": "standard"
+ },
+ {
+ "name": "high",
+ "prose": "The highest peak luminance that is displayed is much greater than media white, i.e. the CSS color white; the precise level is not specified.",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-dynamic-range-limit-high",
+ "type": "value",
+ "value": "high"
+ },
+ {
+ "name": "constrained-high",
+ "prose": "The highest peak luminance that is displayed is somewhat greater than media white, i.e. the CSS color white, such that a mix of SDR and HDR content can be comfortably viewed together.",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-dynamic-range-limit-constrained-high",
+ "type": "value",
+ "value": "constrained-high"
+ }
+ ],
+ "styleDeclaration": [
+ "dynamic-range-limit",
+ "dynamicRangeLimit"
+ ]
+ }
+ ],
+ "atrules": [],
+ "selectors": [],
+ "values": [
+ {
+ "name": "dynamic-range-limit-mix()",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#funcdef-dynamic-range-limit-mix",
+ "type": "function",
+ "value": "dynamic-range-limit-mix( [ && ]#)"
+ },
+ {
+ "name": "color()",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#funcdef-color",
+ "type": "function",
+ "value": "color( [from ]? [ / [ | none ] ]? )"
+ },
+ {
+ "name": "",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-colorspace-params",
+ "type": "type",
+ "value": "[ | | | | ]"
+ },
+ {
+ "name": "",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-custom-params",
+ "type": "type",
+ "value": " [ | | none ]+"
+ },
+ {
+ "name": "",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rgb-params",
+ "type": "type",
+ "value": " [ | | none ]{3}"
+ },
+ {
+ "name": "",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-polar-params",
+ "type": "type",
+ "value": "jzczhz [ | | none ]{2} [ | none]"
+ },
+ {
+ "name": "",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rectangular-params",
+ "type": "type",
+ "value": " [ | | none ]{3}"
+ },
+ {
+ "name": "",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rgb",
+ "type": "type",
+ "value": "srgb | srgb-linear | display-p3 | a98-rgb | prophoto-rgb | rec2020 | rec2100-pq | rec2100-hlg | rec2100-linear"
+ },
+ {
+ "name": "",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rectangular",
+ "type": "type",
+ "value": "jzazbz | ictcp"
+ },
+ {
+ "name": "",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-xyz-params",
+ "type": "type",
+ "value": " [ | | none ]{3}"
+ },
+ {
+ "name": "",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-xyz",
+ "type": "type",
+ "value": "xyz | xyz-d50 | xyz-d65"
+ }
+ ]
+}
diff --git a/tr/css/css-overflow-5.json b/tr/css/css-overflow-5.json
new file mode 100644
index 000000000000..3e61a4050af8
--- /dev/null
+++ b/tr/css/css-overflow-5.json
@@ -0,0 +1,191 @@
+{
+ "spec": {
+ "title": "CSS Overflow Module Level 5",
+ "url": "https://www.w3.org/TR/css-overflow-5/"
+ },
+ "properties": [
+ {
+ "name": "scroll-marker-group",
+ "href": "https://www.w3.org/TR/css-overflow-5/#propdef-scroll-marker-group",
+ "value": "none | before | after",
+ "initial": "none",
+ "appliesTo": "scroll containers",
+ "inherited": "no",
+ "percentages": "n/a",
+ "computedValue": "specified value",
+ "canonicalOrder": "per grammar",
+ "animationType": "discrete",
+ "values": [
+ {
+ "name": "none",
+ "prose": "The scroll container does not create a '::scroll-marker-group' pseudo-element.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-marker-group-none",
+ "type": "value",
+ "value": "none"
+ },
+ {
+ "name": "before",
+ "prose": "The scroll container generates a ::scroll-marker-group pseudo-element whose box is an immediate preceding sibling to its originating element.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-marker-group-before",
+ "type": "value",
+ "value": "before"
+ },
+ {
+ "name": "after",
+ "prose": "The scroll container generates a ::scroll-marker-group pseudo-element whose box is an immediate following sibling to its originating element.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-marker-group-after",
+ "type": "value",
+ "value": "after"
+ }
+ ],
+ "styleDeclaration": [
+ "scroll-marker-group",
+ "scrollMarkerGroup"
+ ]
+ },
+ {
+ "name": "continue",
+ "newValues": "overflow | paginate | fragments",
+ "initial": "auto",
+ "appliesTo": "block containers [CSS2], flex containers [CSS3-FLEXBOX], and grid containers [CSS3-GRID-LAYOUT]",
+ "inherited": "no",
+ "percentages": "N/A",
+ "computedValue": "see below",
+ "animationType": "discrete",
+ "values": [
+ {
+ "name": "overflow",
+ "prose": "Content that doesn’t fit overflows, according to the overflow property",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-continue-overflow",
+ "type": "value",
+ "value": "overflow"
+ },
+ {
+ "name": "paginate",
+ "prose": "Content that doesn’t fit paginates. This creates a paginated view inside the element similar to the way that 'overflow: scroll' creates a scrollable view. See paginated overflow",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-continue-paginate",
+ "type": "value",
+ "value": "paginate"
+ },
+ {
+ "name": "fragments",
+ "prose": "content that doesn’t fit causes the element to copy itself and continue laying out. See fragment overflow.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-continue-fragments",
+ "type": "value",
+ "value": "fragments"
+ }
+ ],
+ "styleDeclaration": [
+ "continue"
+ ]
+ }
+ ],
+ "atrules": [],
+ "selectors": [
+ {
+ "name": "::scroll-marker-group",
+ "prose": "The ::scroll-marker-group fully styleable pseudo-element is generated by a scroll container element having a computed scroll-marker-group property that is not none.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-scroll-marker-group"
+ },
+ {
+ "name": "::scroll-marker",
+ "prose": "When the computed content value of a ::scroll-marker pseudo-element is not none and its nearest ancestor scroll container scroll container has a computed scroll-marker-group property that is not none, the pseudo-element generates a box attached as a child of the ::scroll-marker-group pseudo-element’s generated box on its nearest ancestor scroll container. These boxes are added in the tree order of their originating element.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-scroll-marker"
+ },
+ {
+ "name": ":target-current",
+ "prose": "Exactly one scroll marker within each scroll marker group is determined to be active at a time. Such \"active\" scroll markers match the :target-current pseudo-class.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-target-current"
+ },
+ {
+ "name": "::scroll-button()",
+ "value": "::scroll-button( )",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-scroll-button-scroll-button-direction"
+ },
+ {
+ "name": "::nth-fragment()",
+ "prose": "The ::nth-fragment() pseudo-element is a pseudo-element that describes some of the fragment boxes generated by an element. The argument to the pseudo-element takes the same syntax as the argument to the :nth-child() pseudo-class defined in [SELECT], and has the same meaning except that the number is relative to fragment boxes generated by the element instead of siblings of the element.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-nth-fragment"
+ }
+ ],
+ "values": [
+ {
+ "name": "",
+ "prose": "The four ::scroll-button() pseudo-elements are individually selected by the selector’s argument. The possible values are:",
+ "href": "https://www.w3.org/TR/css-overflow-5/#typedef-scroll-button-direction",
+ "type": "type",
+ "values": [
+ {
+ "name": "up",
+ "prose": "Selects the ::scroll-button() corresponding to the given physical direction.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-up",
+ "type": "value",
+ "value": "up"
+ },
+ {
+ "name": "down",
+ "prose": "Selects the ::scroll-button() corresponding to the given physical direction.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-down",
+ "type": "value",
+ "value": "down"
+ },
+ {
+ "name": "left",
+ "prose": "Selects the ::scroll-button() corresponding to the given physical direction.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-left",
+ "type": "value",
+ "value": "left"
+ },
+ {
+ "name": "right",
+ "prose": "Selects the ::scroll-button() corresponding to the given physical direction.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-right",
+ "type": "value",
+ "value": "right"
+ },
+ {
+ "name": "block-start",
+ "prose": "Selects the indicated ::scroll-button() pseudo-element.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-block-start",
+ "type": "value",
+ "value": "block-start"
+ },
+ {
+ "name": "block-end",
+ "prose": "Selects the indicated ::scroll-button() pseudo-element.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-block-end",
+ "type": "value",
+ "value": "block-end"
+ },
+ {
+ "name": "inline-start",
+ "prose": "Selects the indicated ::scroll-button() pseudo-element.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-inline-start",
+ "type": "value",
+ "value": "inline-start"
+ },
+ {
+ "name": "inline-end",
+ "prose": "Selects the indicated ::scroll-button() pseudo-element.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-inline-end",
+ "type": "value",
+ "value": "inline-end"
+ },
+ {
+ "name": "prev",
+ "prose": "Selects either the block-start or inline-start ::scroll-button(), whichever’s axis has more \"scrollable pages\" in the originating element: the originating element’s scrollable overflow height divided by its scrollport height, or the same but for widths. If both dimensions are equally sized, selects the block-start ::scroll-button(). For example, say the originating element was 800px wide and 500px tall, while its scrollable overflow area was 1200px wide and 1000px tall. The horizontal scrolling thus represents 1.5 \"pages\" (1200/800), while the vertical scrolling represents 2 \"pages\" (1000/500), so (assuming the element is in English) the ::scroll-button(prev) selector would select the block-start button.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-prev",
+ "type": "value",
+ "value": "prev"
+ },
+ {
+ "name": "next",
+ "prose": "Identical to prev, except it selects the block-end or inline-end ::scroll-button() instead.",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-next",
+ "type": "value",
+ "value": "next"
+ }
+ ]
+ }
+ ]
+}
diff --git a/tr/dfns/css-color-hdr-1.json b/tr/dfns/css-color-hdr-1.json
new file mode 100644
index 000000000000..84084f2f982d
--- /dev/null
+++ b/tr/dfns/css-color-hdr-1.json
@@ -0,0 +1,489 @@
+{
+ "spec": {
+ "title": "CSS Color HDR Module Level 1",
+ "url": "https://www.w3.org/TR/css-color-hdr-1/"
+ },
+ "dfns": [
+ {
+ "id": "dynamic-range",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#dynamic-range",
+ "linkingText": [
+ "Dynamic range"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "defining-dynamic-range",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#defining-dynamic-range",
+ "title": "Defining Dynamic Range",
+ "number": "2.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "standard-dynamic-range",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#standard-dynamic-range",
+ "linkingText": [
+ "Standard Dynamic Range"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "defining-dynamic-range",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#defining-dynamic-range",
+ "title": "Defining Dynamic Range",
+ "number": "2.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "high-dynamic-range",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#high-dynamic-range",
+ "linkingText": [
+ "High Dynamic Range"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "defining-dynamic-range",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#defining-dynamic-range",
+ "title": "Defining Dynamic Range",
+ "number": "2.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "hdr-headroom",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#hdr-headroom",
+ "linkingText": [
+ "HDR headroom"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "introducing-headroom",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#introducing-headroom",
+ "title": "Introducing Headroom",
+ "number": "2.2"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "propdef-dynamic-range-limit",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#propdef-dynamic-range-limit",
+ "linkingText": [
+ "dynamic-range-limit"
+ ],
+ "localLinkingText": [],
+ "type": "property",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "the-dynamic-range-limit-property",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#the-dynamic-range-limit-property",
+ "title": "The dynamic-range-limit property",
+ "number": "2.3"
+ },
+ "definedIn": "table"
+ },
+ {
+ "id": "valdef-dynamic-range-limit-standard",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-dynamic-range-limit-standard",
+ "linkingText": [
+ "standard"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "dynamic-range-limit"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "the-dynamic-range-limit-property",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#the-dynamic-range-limit-property",
+ "title": "The dynamic-range-limit property",
+ "number": "2.3"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-dynamic-range-limit-high",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-dynamic-range-limit-high",
+ "linkingText": [
+ "high"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "dynamic-range-limit"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "the-dynamic-range-limit-property",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#the-dynamic-range-limit-property",
+ "title": "The dynamic-range-limit property",
+ "number": "2.3"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-dynamic-range-limit-constrained-high",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-dynamic-range-limit-constrained-high",
+ "linkingText": [
+ "constrained-high"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "dynamic-range-limit"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "the-dynamic-range-limit-property",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#the-dynamic-range-limit-property",
+ "title": "The dynamic-range-limit property",
+ "number": "2.3"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "funcdef-dynamic-range-limit-mix",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#funcdef-dynamic-range-limit-mix",
+ "linkingText": [
+ "dynamic-range-limit-mix()"
+ ],
+ "localLinkingText": [],
+ "type": "function",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "dynamic-range-limit-mix",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#dynamic-range-limit-mix",
+ "title": "Mixing Dynamic Range Limits: the dynamic-range-limit-mix() function",
+ "number": "2.4"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "funcdef-color",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#funcdef-color",
+ "linkingText": [
+ "color()"
+ ],
+ "localLinkingText": [],
+ "type": "function",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "typedef-colorspace-params",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-colorspace-params",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "typedef-custom-params",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-custom-params",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "typedef-predefined-rgb-params",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rgb-params",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "typedef-predefined-polar-params",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-polar-params",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "typedef-predefined-rectangular-params",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rectangular-params",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "typedef-predefined-rgb",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rgb",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "typedef-predefined-rectangular",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rectangular",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "typedef-xyz-params",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-xyz-params",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "typedef-xyz",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#typedef-xyz",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ "definedIn": "pre"
+ },
+ {
+ "id": "rec2100-pq",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#rec2100-pq",
+ "linkingText": [
+ "rec2100-pq"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "valdef-color-rec2100-pq",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-color-rec2100-pq",
+ "title": "rec2100-pq",
+ "number": "4.1"
+ },
+ "definedIn": "heading"
+ },
+ {
+ "id": "rec2100-hlg",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#rec2100-hlg",
+ "linkingText": [
+ "rec2100-hlg"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "valdef-color-rec2100-hlg",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-color-rec2100-hlg",
+ "title": "rec2100-hlg",
+ "number": "4.2"
+ },
+ "definedIn": "heading"
+ },
+ {
+ "id": "rec2100-linear",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#rec2100-linear",
+ "linkingText": [
+ "rec2100-linear"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "valdef-color-rec2100-linear",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-color-rec2100-linear",
+ "title": "rec2100-linear",
+ "number": "4.3"
+ },
+ "definedIn": "heading"
+ },
+ {
+ "id": "jzazbz",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#jzazbz",
+ "linkingText": [
+ "Jzazbz"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "Jzazbz",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#Jzazbz",
+ "title": "Jzazbz",
+ "number": "4.4"
+ },
+ "definedIn": "heading"
+ },
+ {
+ "id": "jzczhz",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#jzczhz",
+ "linkingText": [
+ "JzCzHz"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "JzCzHz",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#JzCzHz",
+ "title": "JzCzHz",
+ "number": "4.5"
+ },
+ "definedIn": "heading"
+ },
+ {
+ "id": "ictcp",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#ictcp",
+ "linkingText": [
+ "ICtCp"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "ICtCp",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#ICtCp",
+ "title": "ICtCp",
+ "number": "4.6"
+ },
+ "definedIn": "heading"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/tr/dfns/css-overflow-5.json b/tr/dfns/css-overflow-5.json
new file mode 100644
index 000000000000..241a68bb556b
--- /dev/null
+++ b/tr/dfns/css-overflow-5.json
@@ -0,0 +1,596 @@
+{
+ "spec": {
+ "title": "CSS Overflow Module Level 5",
+ "url": "https://www.w3.org/TR/css-overflow-5/"
+ },
+ "dfns": [
+ {
+ "id": "current-scroll-target",
+ "href": "https://www.w3.org/TR/css-overflow-5/#current-scroll-target",
+ "linkingText": [
+ "current scroll target"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scrolling",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scrolling",
+ "title": "Scrolling overflow",
+ "number": "2.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "scroll-marker",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker",
+ "linkingText": [
+ "scroll marker"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "scroll-markers",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-markers",
+ "title": "Scroll markers",
+ "number": "3.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "scroll-target",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-target",
+ "linkingText": [
+ "scroll target"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "scroll-markers",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-markers",
+ "title": "Scroll markers",
+ "number": "3.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "scroll-marker-group-container",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-container",
+ "linkingText": [
+ "scroll marker group container"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "scroll-marker-grouping",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-grouping",
+ "title": "Scroll marker grouping",
+ "number": "3.1.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "scroll-marker-group",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group",
+ "linkingText": [
+ "scroll marker group"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "scroll-marker-grouping",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-grouping",
+ "title": "Scroll marker grouping",
+ "number": "3.1.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "propdef-scroll-marker-group",
+ "href": "https://www.w3.org/TR/css-overflow-5/#propdef-scroll-marker-group",
+ "linkingText": [
+ "scroll-marker-group"
+ ],
+ "localLinkingText": [],
+ "type": "property",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-marker-group-property",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-property",
+ "title": "The scroll-marker-group property",
+ "number": "3.1.2"
+ },
+ "definedIn": "table"
+ },
+ {
+ "id": "valdef-scroll-marker-group-none",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-marker-group-none",
+ "linkingText": [
+ "none"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "scroll-marker-group"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-marker-group-property",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-property",
+ "title": "The scroll-marker-group property",
+ "number": "3.1.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-marker-group-before",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-marker-group-before",
+ "linkingText": [
+ "before"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "scroll-marker-group"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-marker-group-property",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-property",
+ "title": "The scroll-marker-group property",
+ "number": "3.1.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-marker-group-after",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-marker-group-after",
+ "linkingText": [
+ "after"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "scroll-marker-group"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-marker-group-property",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-property",
+ "title": "The scroll-marker-group property",
+ "number": "3.1.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "selectordef-scroll-marker-group",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-scroll-marker-group",
+ "linkingText": [
+ "::scroll-marker-group"
+ ],
+ "localLinkingText": [],
+ "type": "selector",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-marker-group-pseudo",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-pseudo",
+ "title": "The ::scroll-marker-group pseudo-element",
+ "number": "3.1.3"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "selectordef-scroll-marker",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-scroll-marker",
+ "linkingText": [
+ "::scroll-marker"
+ ],
+ "localLinkingText": [],
+ "type": "selector",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-marker-pseudo",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-pseudo",
+ "title": "The ::scroll-marker pseudo-element",
+ "number": "3.1.4"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "selectordef-target-current",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-target-current",
+ "linkingText": [
+ ":target-current"
+ ],
+ "localLinkingText": [],
+ "type": "selector",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "active-scroll-marker",
+ "href": "https://www.w3.org/TR/css-overflow-5/#active-scroll-marker",
+ "title": "Selecting The Active Scroll Marker: the :target-current pseudo-class",
+ "number": "3.1.5"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "selectordef-scroll-button-scroll-button-direction",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-scroll-button-scroll-button-direction",
+ "linkingText": [
+ "::scroll-button( )"
+ ],
+ "localLinkingText": [],
+ "type": "selector",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "typedef-scroll-button-direction",
+ "href": "https://www.w3.org/TR/css-overflow-5/#typedef-scroll-button-direction",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "valdef-scroll-button-direction-up",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-up",
+ "linkingText": [
+ "up"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-button-direction-down",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-down",
+ "linkingText": [
+ "down"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-button-direction-left",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-left",
+ "linkingText": [
+ "left"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-button-direction-right",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-right",
+ "linkingText": [
+ "right"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-button-direction-block-start",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-block-start",
+ "linkingText": [
+ "block-start"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-button-direction-block-end",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-block-end",
+ "linkingText": [
+ "block-end"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-button-direction-inline-start",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-inline-start",
+ "linkingText": [
+ "inline-start"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-button-direction-inline-end",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-inline-end",
+ "linkingText": [
+ "inline-end"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-button-direction-prev",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-prev",
+ "linkingText": [
+ "prev"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-scroll-button-direction-next",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-next",
+ "linkingText": [
+ "next"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "",
+ "::scroll-button()"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-continue-overflow",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-continue-overflow",
+ "linkingText": [
+ "overflow"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "continue"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "channelling-overflow",
+ "href": "https://www.w3.org/TR/css-overflow-5/#channelling-overflow",
+ "title": "Channeling Overflow: the continue property"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-continue-paginate",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-continue-paginate",
+ "linkingText": [
+ "paginate"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "continue"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "channelling-overflow",
+ "href": "https://www.w3.org/TR/css-overflow-5/#channelling-overflow",
+ "title": "Channeling Overflow: the continue property"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "valdef-continue-fragments",
+ "href": "https://www.w3.org/TR/css-overflow-5/#valdef-continue-fragments",
+ "linkingText": [
+ "fragments"
+ ],
+ "localLinkingText": [],
+ "type": "value",
+ "for": [
+ "continue"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "channelling-overflow",
+ "href": "https://www.w3.org/TR/css-overflow-5/#channelling-overflow",
+ "title": "Channeling Overflow: the continue property"
+ },
+ "definedIn": "dt"
+ },
+ {
+ "id": "fragment-box",
+ "href": "https://www.w3.org/TR/css-overflow-5/#fragment-box",
+ "linkingText": [
+ "fragment box"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "fragment-overflow",
+ "href": "https://www.w3.org/TR/css-overflow-5/#fragment-overflow",
+ "title": "Fragmented Overflow"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "selectordef-nth-fragment",
+ "href": "https://www.w3.org/TR/css-overflow-5/#selectordef-nth-fragment",
+ "linkingText": [
+ "::nth-fragment()"
+ ],
+ "localLinkingText": [],
+ "type": "selector",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "fragment-pseudo-element",
+ "href": "https://www.w3.org/TR/css-overflow-5/#fragment-pseudo-element",
+ "title": "The ::nth-fragment() pseudo-element"
+ },
+ "definedIn": "prose"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/tr/dfns/webdriver-bidi.json b/tr/dfns/webdriver-bidi.json
index 685be20dc06f..9d2a468cf9c9 100644
--- a/tr/dfns/webdriver-bidi.json
+++ b/tr/dfns/webdriver-bidi.json
@@ -817,17 +817,17 @@
"definedIn": "prose"
},
{
- "id": "event-global-event-set",
- "href": "https://www.w3.org/TR/webdriver-bidi/#event-global-event-set",
+ "id": "event-subscriptions",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#event-subscriptions",
"linkingText": [
- "global event set"
+ "subscriptions"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"event"
],
- "access": "public",
+ "access": "private",
"informative": false,
"heading": {
"id": "events",
@@ -838,17 +838,17 @@
"definedIn": "prose"
},
{
- "id": "event-in-the-default-event-set",
- "href": "https://www.w3.org/TR/webdriver-bidi/#event-in-the-default-event-set",
+ "id": "event-known-subscription-ids",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#event-known-subscription-ids",
"linkingText": [
- "in the default event set"
+ "known subscription ids"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"event"
],
- "access": "public",
+ "access": "private",
"informative": false,
"heading": {
"id": "events",
@@ -859,17 +859,17 @@
"definedIn": "prose"
},
{
- "id": "event-navigable-event-map",
- "href": "https://www.w3.org/TR/webdriver-bidi/#event-navigable-event-map",
+ "id": "event-subscription",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#event-subscription",
"linkingText": [
- "navigable event map"
+ "subscription"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"event"
],
- "access": "public",
+ "access": "private",
"informative": false,
"heading": {
"id": "events",
@@ -880,14 +880,79 @@
"definedIn": "prose"
},
{
- "id": "event-enabled-navigables",
- "href": "https://www.w3.org/TR/webdriver-bidi/#event-enabled-navigables",
+ "id": "subscription-subscription-id",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#subscription-subscription-id",
"linkingText": [
- "event enabled navigables"
+ "subscription id"
],
"localLinkingText": [],
"type": "dfn",
- "for": [],
+ "for": [
+ "subscription"
+ ],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "events",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#events",
+ "title": "Events",
+ "number": "3.6"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "subscription-event-names",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#subscription-event-names",
+ "linkingText": [
+ "event names"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [
+ "subscription"
+ ],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "events",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#events",
+ "title": "Events",
+ "number": "3.6"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "subscription-top-level-traversable-ids",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#subscription-top-level-traversable-ids",
+ "linkingText": [
+ "top-level traversable ids"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [
+ "subscription"
+ ],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "events",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#events",
+ "title": "Events",
+ "number": "3.6"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "subscription-global",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#subscription-global",
+ "linkingText": [
+ "global"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [
+ "subscription"
+ ],
"access": "private",
"informative": false,
"heading": {
@@ -937,15 +1002,15 @@
"definedIn": "prose"
},
{
- "id": "obtain-a-set-of-event-names",
- "href": "https://www.w3.org/TR/webdriver-bidi/#obtain-a-set-of-event-names",
+ "id": "set-of-top-level-traversables-for-which-an-event-is-enabled",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#set-of-top-level-traversables-for-which-an-event-is-enabled",
"linkingText": [
- "obtain a set of event names"
+ "set of top-level traversables for which an event is enabled"
],
"localLinkingText": [],
"type": "dfn",
"for": [],
- "access": "private",
+ "access": "public",
"informative": false,
"heading": {
"id": "events",
@@ -1265,6 +1330,44 @@
},
"definedIn": "prose"
},
+ {
+ "id": "get-navigables-by-ids",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#get-navigables-by-ids",
+ "linkingText": [
+ "get navigables by ids"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "transport",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#transport",
+ "title": "Transport",
+ "number": "4"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "get-top-level-traversables",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#get-top-level-traversables",
+ "linkingText": [
+ "get top-level traversables"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "transport",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#transport",
+ "title": "Transport",
+ "number": "4"
+ },
+ "definedIn": "prose"
+ },
{
"id": "emit-an-event",
"href": "https://www.w3.org/TR/webdriver-bidi/#emit-an-event",
@@ -1706,25 +1809,6 @@
},
"definedIn": "prose"
},
- {
- "id": "update-the-event-map",
- "href": "https://www.w3.org/TR/webdriver-bidi/#update-the-event-map",
- "linkingText": [
- "update the event map"
- ],
- "localLinkingText": [],
- "type": "dfn",
- "for": [],
- "access": "private",
- "informative": false,
- "heading": {
- "id": "module-session-definition",
- "href": "https://www.w3.org/TR/webdriver-bidi/#module-session-definition",
- "title": "Definition",
- "number": "7.1.1"
- },
- "definedIn": "prose"
- },
{
"id": "websocket-url",
"href": "https://www.w3.org/TR/webdriver-bidi/#websocket-url",
diff --git a/tr/headings/css-color-hdr-1.json b/tr/headings/css-color-hdr-1.json
new file mode 100644
index 000000000000..67ec1be095a2
--- /dev/null
+++ b/tr/headings/css-color-hdr-1.json
@@ -0,0 +1,281 @@
+{
+ "spec": {
+ "title": "CSS Color HDR Module Level 1",
+ "url": "https://www.w3.org/TR/css-color-hdr-1/"
+ },
+ "headings": [
+ {
+ "id": "title",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#title",
+ "level": 1,
+ "title": "CSS Color HDR Module Level 1"
+ },
+ {
+ "id": "abstract",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#abstract",
+ "level": 2,
+ "title": "Abstract"
+ },
+ {
+ "id": "sotd",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#sotd",
+ "level": 2,
+ "title": "Status of this document"
+ },
+ {
+ "id": "toc",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#toc",
+ "level": 2,
+ "title": "Table of Contents"
+ },
+ {
+ "id": "intro",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#intro",
+ "level": 2,
+ "title": "Introduction",
+ "number": "1"
+ },
+ {
+ "id": "values",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#values",
+ "level": 3,
+ "title": "Value Definitions",
+ "number": "1.1"
+ },
+ {
+ "id": "controlling-dynamic-range",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#controlling-dynamic-range",
+ "level": 2,
+ "title": "Controlling Dynamic Range",
+ "number": "2"
+ },
+ {
+ "id": "defining-dynamic-range",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#defining-dynamic-range",
+ "level": 3,
+ "title": "Defining Dynamic Range",
+ "number": "2.1"
+ },
+ {
+ "id": "introducing-headroom",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#introducing-headroom",
+ "level": 3,
+ "title": "Introducing Headroom",
+ "number": "2.2"
+ },
+ {
+ "id": "the-dynamic-range-limit-property",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#the-dynamic-range-limit-property",
+ "level": 3,
+ "title": "The dynamic-range-limit property",
+ "number": "2.3"
+ },
+ {
+ "id": "dynamic-range-limit-mix",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#dynamic-range-limit-mix",
+ "level": 3,
+ "title": "Mixing Dynamic Range Limits: the dynamic-range-limit-mix() function",
+ "number": "2.4"
+ },
+ {
+ "id": "computing-dynamic-range-limit",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#computing-dynamic-range-limit",
+ "level": 3,
+ "title": "Computed Value for dynamic-range-limit",
+ "number": "2.5"
+ },
+ {
+ "id": "color-function",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "level": 2,
+ "title": "Specifying Predefined and Custom Color Spaces: the color() Function",
+ "number": "3"
+ },
+ {
+ "id": "predefined-HDR",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#predefined-HDR",
+ "level": 2,
+ "title": "Predefined color spaces for HDR:",
+ "number": "4"
+ },
+ {
+ "id": "valdef-color-rec2100-pq",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-color-rec2100-pq",
+ "level": 3,
+ "title": "rec2100-pq",
+ "number": "4.1"
+ },
+ {
+ "id": "valdef-color-rec2100-hlg",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-color-rec2100-hlg",
+ "level": 3,
+ "title": "rec2100-hlg",
+ "number": "4.2"
+ },
+ {
+ "id": "valdef-color-rec2100-linear",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#valdef-color-rec2100-linear",
+ "level": 3,
+ "title": "rec2100-linear",
+ "number": "4.3"
+ },
+ {
+ "id": "Jzazbz",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#Jzazbz",
+ "level": 3,
+ "title": "Jzazbz",
+ "number": "4.4"
+ },
+ {
+ "id": "JzCzHz",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#JzCzHz",
+ "level": 3,
+ "title": "JzCzHz",
+ "number": "4.5"
+ },
+ {
+ "id": "Jzazbz-to-JzCzHz",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#Jzazbz-to-JzCzHz",
+ "level": 4,
+ "title": "Converting Jzazbz colors to JzCzHz colors",
+ "number": "4.5.1"
+ },
+ {
+ "id": "JzCzHz-to-Jzazbz",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#JzCzHz-to-Jzazbz",
+ "level": 4,
+ "title": "Converting JzCzHz colors to Jzazbz colors",
+ "number": "4.5.2"
+ },
+ {
+ "id": "ICtCp",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#ICtCp",
+ "level": 3,
+ "title": "ICtCp",
+ "number": "4.6"
+ },
+ {
+ "id": "Compositing-SDR-HDR",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#Compositing-SDR-HDR",
+ "level": 2,
+ "title": "Compositing SDR and HDR content",
+ "number": "5"
+ },
+ {
+ "id": "serializing-color-values",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#serializing-color-values",
+ "level": 2,
+ "title": "Serializing Values",
+ "number": "6"
+ },
+ {
+ "id": "serializing-color-function-values",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#serializing-color-function-values",
+ "level": 3,
+ "title": "Serializing values of the color() function",
+ "number": "6.1"
+ },
+ {
+ "id": "privacy",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#privacy",
+ "level": 2,
+ "title": "Privacy Considerations"
+ },
+ {
+ "id": "security",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#security",
+ "level": 2,
+ "title": "Security Considerations"
+ },
+ {
+ "id": "a11y",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#a11y",
+ "level": 2,
+ "title": "Accessibility Considerations"
+ },
+ {
+ "id": "w3c-conformance",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#w3c-conformance",
+ "level": 2,
+ "title": "Conformance"
+ },
+ {
+ "id": "w3c-conventions",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#w3c-conventions",
+ "level": 3,
+ "title": "Document conventions"
+ },
+ {
+ "id": "w3c-conformance-classes",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#w3c-conformance-classes",
+ "level": 3,
+ "title": "Conformance classes"
+ },
+ {
+ "id": "w3c-partial",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#w3c-partial",
+ "level": 3,
+ "title": "Partial implementations"
+ },
+ {
+ "id": "w3c-conform-future-proofing",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#w3c-conform-future-proofing",
+ "level": 4,
+ "title": "Implementations of Unstable and Proprietary Features"
+ },
+ {
+ "id": "w3c-testing",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#w3c-testing",
+ "level": 3,
+ "title": "Non-experimental implementations"
+ },
+ {
+ "id": "index",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#index",
+ "level": 2,
+ "title": "Index"
+ },
+ {
+ "id": "index-defined-here",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#index-defined-here",
+ "level": 3,
+ "title": "Terms defined by this specification"
+ },
+ {
+ "id": "index-defined-elsewhere",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#index-defined-elsewhere",
+ "level": 3,
+ "title": "Terms defined by reference"
+ },
+ {
+ "id": "references",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#references",
+ "level": 2,
+ "title": "References"
+ },
+ {
+ "id": "normative",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#normative",
+ "level": 3,
+ "title": "Normative References"
+ },
+ {
+ "id": "informative",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#informative",
+ "level": 3,
+ "title": "Informative References"
+ },
+ {
+ "id": "property-index",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#property-index",
+ "level": 2,
+ "title": "Property Index"
+ },
+ {
+ "id": "issues-index",
+ "href": "https://www.w3.org/TR/css-color-hdr-1/#issues-index",
+ "level": 2,
+ "title": "Issues Index"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/tr/headings/css-overflow-5.json b/tr/headings/css-overflow-5.json
new file mode 100644
index 000000000000..e4bd85a82886
--- /dev/null
+++ b/tr/headings/css-overflow-5.json
@@ -0,0 +1,289 @@
+{
+ "spec": {
+ "title": "CSS Overflow Module Level 5",
+ "url": "https://www.w3.org/TR/css-overflow-5/"
+ },
+ "headings": [
+ {
+ "id": "title",
+ "href": "https://www.w3.org/TR/css-overflow-5/#title",
+ "level": 1,
+ "title": "CSS Overflow Module Level 5"
+ },
+ {
+ "id": "abstract",
+ "href": "https://www.w3.org/TR/css-overflow-5/#abstract",
+ "level": 2,
+ "title": "Abstract"
+ },
+ {
+ "id": "sotd",
+ "href": "https://www.w3.org/TR/css-overflow-5/#sotd",
+ "level": 2,
+ "title": "Status of this document"
+ },
+ {
+ "id": "toc",
+ "href": "https://www.w3.org/TR/css-overflow-5/#toc",
+ "level": 2,
+ "title": "Table of Contents"
+ },
+ {
+ "id": "intro",
+ "href": "https://www.w3.org/TR/css-overflow-5/#intro",
+ "level": 2,
+ "title": "Introduction",
+ "number": "1"
+ },
+ {
+ "id": "overflow-concepts",
+ "href": "https://www.w3.org/TR/css-overflow-5/#overflow-concepts",
+ "level": 2,
+ "title": "Overflow Concepts and Terminology",
+ "number": "2"
+ },
+ {
+ "id": "scrolling",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scrolling",
+ "level": 3,
+ "title": "Scrolling overflow",
+ "number": "2.1"
+ },
+ {
+ "id": "scroll-navigation",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-navigation",
+ "level": 2,
+ "title": "Scroll navigation controls",
+ "number": "3"
+ },
+ {
+ "id": "scroll-markers",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-markers",
+ "level": 3,
+ "title": "Scroll markers",
+ "number": "3.1"
+ },
+ {
+ "id": "scroll-marker-grouping",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-grouping",
+ "level": 4,
+ "title": "Scroll marker grouping",
+ "number": "3.1.1"
+ },
+ {
+ "id": "scroll-marker-group-property",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-property",
+ "level": 4,
+ "title": "The scroll-marker-group property",
+ "number": "3.1.2"
+ },
+ {
+ "id": "scroll-marker-group-pseudo",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-pseudo",
+ "level": 4,
+ "title": "The ::scroll-marker-group pseudo-element",
+ "number": "3.1.3"
+ },
+ {
+ "id": "scroll-marker-pseudo",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-pseudo",
+ "level": 4,
+ "title": "The ::scroll-marker pseudo-element",
+ "number": "3.1.4"
+ },
+ {
+ "id": "active-scroll-marker",
+ "href": "https://www.w3.org/TR/css-overflow-5/#active-scroll-marker",
+ "level": 4,
+ "title": "Selecting The Active Scroll Marker: the :target-current pseudo-class",
+ "number": "3.1.5"
+ },
+ {
+ "id": "scroll-marker-activation",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-marker-activation",
+ "level": 4,
+ "title": "Activation behavior",
+ "number": "3.1.6"
+ },
+ {
+ "id": "scroll-target-focus",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-target-focus",
+ "level": 4,
+ "title": "Focus behavior",
+ "number": "3.1.7"
+ },
+ {
+ "id": "scroll-buttons",
+ "href": "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "level": 3,
+ "title": "Scroll Buttons",
+ "number": "3.2"
+ },
+ {
+ "id": "focus-order",
+ "href": "https://www.w3.org/TR/css-overflow-5/#focus-order",
+ "level": 3,
+ "title": "Focus Navigation Order",
+ "number": "3.3"
+ },
+ {
+ "id": "fragmentation",
+ "href": "https://www.w3.org/TR/css-overflow-5/#fragmentation",
+ "level": 2,
+ "title": "Redirection of Overflow",
+ "number": "A"
+ },
+ {
+ "id": "channelling-overflow",
+ "href": "https://www.w3.org/TR/css-overflow-5/#channelling-overflow",
+ "level": 3,
+ "title": "Channeling Overflow: the continue property"
+ },
+ {
+ "id": "paginated-overflow",
+ "href": "https://www.w3.org/TR/css-overflow-5/#paginated-overflow",
+ "level": 3,
+ "title": "Paginated overflow"
+ },
+ {
+ "id": "fragment-overflow",
+ "href": "https://www.w3.org/TR/css-overflow-5/#fragment-overflow",
+ "level": 3,
+ "title": "Fragmented Overflow"
+ },
+ {
+ "id": "fragment-styling",
+ "href": "https://www.w3.org/TR/css-overflow-5/#fragment-styling",
+ "level": 3,
+ "title": "Fragment styling"
+ },
+ {
+ "id": "fragment-pseudo-element",
+ "href": "https://www.w3.org/TR/css-overflow-5/#fragment-pseudo-element",
+ "level": 4,
+ "title": "The ::nth-fragment() pseudo-element"
+ },
+ {
+ "id": "style-of-fragments",
+ "href": "https://www.w3.org/TR/css-overflow-5/#style-of-fragments",
+ "level": 4,
+ "title": "Styling of fragments"
+ },
+ {
+ "id": "style-in-fragments",
+ "href": "https://www.w3.org/TR/css-overflow-5/#style-in-fragments",
+ "level": 4,
+ "title": "Styling inside fragments"
+ },
+ {
+ "id": "privacy",
+ "href": "https://www.w3.org/TR/css-overflow-5/#privacy",
+ "level": 2,
+ "title": "Privacy Considerations",
+ "number": "C"
+ },
+ {
+ "id": "security",
+ "href": "https://www.w3.org/TR/css-overflow-5/#security",
+ "level": 2,
+ "title": "Security Considerations",
+ "number": "D"
+ },
+ {
+ "id": "changes-l4",
+ "href": "https://www.w3.org/TR/css-overflow-5/#changes-l4",
+ "level": 2,
+ "title": "Changes Since Level 4"
+ },
+ {
+ "id": "acknowledgments",
+ "href": "https://www.w3.org/TR/css-overflow-5/#acknowledgments",
+ "level": 2,
+ "title": "Acknowledgments"
+ },
+ {
+ "id": "w3c-conformance",
+ "href": "https://www.w3.org/TR/css-overflow-5/#w3c-conformance",
+ "level": 2,
+ "title": "Conformance"
+ },
+ {
+ "id": "w3c-conventions",
+ "href": "https://www.w3.org/TR/css-overflow-5/#w3c-conventions",
+ "level": 3,
+ "title": "Document conventions"
+ },
+ {
+ "id": "w3c-conformance-classes",
+ "href": "https://www.w3.org/TR/css-overflow-5/#w3c-conformance-classes",
+ "level": 3,
+ "title": "Conformance classes"
+ },
+ {
+ "id": "w3c-partial",
+ "href": "https://www.w3.org/TR/css-overflow-5/#w3c-partial",
+ "level": 3,
+ "title": "Partial implementations"
+ },
+ {
+ "id": "w3c-conform-future-proofing",
+ "href": "https://www.w3.org/TR/css-overflow-5/#w3c-conform-future-proofing",
+ "level": 4,
+ "title": "Implementations of Unstable and Proprietary Features"
+ },
+ {
+ "id": "w3c-testing",
+ "href": "https://www.w3.org/TR/css-overflow-5/#w3c-testing",
+ "level": 3,
+ "title": "Non-experimental implementations"
+ },
+ {
+ "id": "index",
+ "href": "https://www.w3.org/TR/css-overflow-5/#index",
+ "level": 2,
+ "title": "Index"
+ },
+ {
+ "id": "index-defined-here",
+ "href": "https://www.w3.org/TR/css-overflow-5/#index-defined-here",
+ "level": 3,
+ "title": "Terms defined by this specification"
+ },
+ {
+ "id": "index-defined-elsewhere",
+ "href": "https://www.w3.org/TR/css-overflow-5/#index-defined-elsewhere",
+ "level": 3,
+ "title": "Terms defined by reference"
+ },
+ {
+ "id": "references",
+ "href": "https://www.w3.org/TR/css-overflow-5/#references",
+ "level": 2,
+ "title": "References"
+ },
+ {
+ "id": "normative",
+ "href": "https://www.w3.org/TR/css-overflow-5/#normative",
+ "level": 3,
+ "title": "Normative References"
+ },
+ {
+ "id": "informative",
+ "href": "https://www.w3.org/TR/css-overflow-5/#informative",
+ "level": 3,
+ "title": "Informative References"
+ },
+ {
+ "id": "property-index",
+ "href": "https://www.w3.org/TR/css-overflow-5/#property-index",
+ "level": 2,
+ "title": "Property Index"
+ },
+ {
+ "id": "issues-index",
+ "href": "https://www.w3.org/TR/css-overflow-5/#issues-index",
+ "level": 2,
+ "title": "Issues Index"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/tr/headings/vc-data-model-2.0.json b/tr/headings/vc-data-model-2.0.json
index a004ea86ee7d..18bd2c0d4153 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-FPfOooNUUk8g-qOwgmtAU-cRvWiGQTEyvqVESdyp6OQ",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FPfOooNUUk8g-qOwgmtAU-cRvWiGQTEyvqVESdyp6OQ",
+ "id": "sd-jwt-claim-DnQ7kKMrwsQdP0MXnFcxv2zrTAGMLrIsdtJu6A-5dDY",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-DnQ7kKMrwsQdP0MXnFcxv2zrTAGMLrIsdtJu6A-5dDY",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-KkMFKJQKivoV4fQO7pKm_i8EB56OIKn9IcTUuJkn1fs",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-KkMFKJQKivoV4fQO7pKm_i8EB56OIKn9IcTUuJkn1fs",
+ "id": "sd-jwt-claim-d8ceo3-2ymreAZw1hHvtLhWMZa8h3vIjf33--cIoQgI",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-d8ceo3-2ymreAZw1hHvtLhWMZa8h3vIjf33--cIoQgI",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-IS1LBVCDfrRIxD_fxd2bYJ8uyD1fRKvXKiKNGIiCdPQ",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-IS1LBVCDfrRIxD_fxd2bYJ8uyD1fRKvXKiKNGIiCdPQ",
+ "id": "sd-jwt-claim-FO-wXMolQhJiJPDgWdgmUHqVJWBjQOL2LBRY-gKu1rk",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FO-wXMolQhJiJPDgWdgmUHqVJWBjQOL2LBRY-gKu1rk",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-7qMxOFWROXk5LKl9QOpyNm-SLAgEFmFbCQlhxXyoSqw",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-7qMxOFWROXk5LKl9QOpyNm-SLAgEFmFbCQlhxXyoSqw",
+ "id": "sd-jwt-claim-UeK-W5TtQELotTZpyuSOuMgL4JuHY2otoLd6DGCebnw",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-UeK-W5TtQELotTZpyuSOuMgL4JuHY2otoLd6DGCebnw",
"level": 3,
"title": "Claim: type"
},
@@ -146,26 +146,26 @@
"number": "4.5"
},
{
- "id": "sd-jwt-claim-Tb9NHsGQJNQgUdrev8XHoE6htxDmFeNY_O-CN4UCDFM",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Tb9NHsGQJNQgUdrev8XHoE6htxDmFeNY_O-CN4UCDFM",
+ "id": "sd-jwt-claim-8o5FFa9WaB9T8EkiOP_AVMcVPl2ZLd5fJ-AkmlkhJeQ",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-8o5FFa9WaB9T8EkiOP_AVMcVPl2ZLd5fJ-AkmlkhJeQ",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-NU2vLzvmeadvwqkUSUKCCr3-Tw1SNShiqrkNwiHpMGo",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-NU2vLzvmeadvwqkUSUKCCr3-Tw1SNShiqrkNwiHpMGo",
+ "id": "sd-jwt-claim-uHqBc0Ivo2pV4Bqk1OGO7bQzAlgiR3hiJYD2p9wW3e0",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-uHqBc0Ivo2pV4Bqk1OGO7bQzAlgiR3hiJYD2p9wW3e0",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-juil2wx_LO6y__2vqYabRAJyy6M4W6FpqdFbqDwFy9c",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-juil2wx_LO6y__2vqYabRAJyy6M4W6FpqdFbqDwFy9c",
+ "id": "sd-jwt-claim-ple_t_Z1U3b_kG4meiIYth1Kp7JinBYhxMhgtx3M9Ko",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ple_t_Z1U3b_kG4meiIYth1Kp7JinBYhxMhgtx3M9Ko",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-BZxCLBM706R3jGeCjXfxFaXUcfMQHb_tlQB4OQ_oeuo",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-BZxCLBM706R3jGeCjXfxFaXUcfMQHb_tlQB4OQ_oeuo",
+ "id": "sd-jwt-claim-mgKXH1mwWqpWJ_Sf0DAy7D1wv-m2_m8AiE5p0Aadhgg",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mgKXH1mwWqpWJ_Sf0DAy7D1wv-m2_m8AiE5p0Aadhgg",
"level": 3,
"title": "Claim: type"
},
@@ -177,32 +177,32 @@
"number": "4.6"
},
{
- "id": "sd-jwt-claim-4nkpml-Z5rHw0z5G9XWeWSNFQG3dPgXQJ38gf5AGBtU",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4nkpml-Z5rHw0z5G9XWeWSNFQG3dPgXQJ38gf5AGBtU",
+ "id": "sd-jwt-claim-MAUt_lXb2ergutyi3VMTslsrC27Aiqb7AyGjQ3SNcI8",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-MAUt_lXb2ergutyi3VMTslsrC27Aiqb7AyGjQ3SNcI8",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-MX2ziRcdwmZwF_PnS78aEwM1wc2xBO7_wlbMZPI_1MU",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-MX2ziRcdwmZwF_PnS78aEwM1wc2xBO7_wlbMZPI_1MU",
+ "id": "sd-jwt-claim-yNwJmju-mV1zCWas5w49hy5YYCzTvJJhSZdARd490y4",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-yNwJmju-mV1zCWas5w49hy5YYCzTvJJhSZdARd490y4",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-vXDDN4Er_nr328jHE-ZkhBHBEXXx_GlWNLwoD00_3vg",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-vXDDN4Er_nr328jHE-ZkhBHBEXXx_GlWNLwoD00_3vg",
+ "id": "sd-jwt-claim-eFpEabxpMSYXXwdYeva_s6Wrltb-SzU7ewi4oDaqmFI",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-eFpEabxpMSYXXwdYeva_s6Wrltb-SzU7ewi4oDaqmFI",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-uOeG8W6wcuTpfEpZ6vrcni1ixuKvfXkJYM9VAn6wawQ",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-uOeG8W6wcuTpfEpZ6vrcni1ixuKvfXkJYM9VAn6wawQ",
+ "id": "sd-jwt-claim-O2ReSe7alzRADXvbIXAJdvKkQV74NZKQ6tm5JqXe3jI",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-O2ReSe7alzRADXvbIXAJdvKkQV74NZKQ6tm5JqXe3jI",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-87L31VLZM0Qf9_f1thTB0wAt3RvAjC2THES3tzMYges",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-87L31VLZM0Qf9_f1thTB0wAt3RvAjC2THES3tzMYges",
+ "id": "sd-jwt-claim-6oTlk068Taa34v-YPi09GDKvXprO3R-ITt3nc8hOn7g",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6oTlk068Taa34v-YPi09GDKvXprO3R-ITt3nc8hOn7g",
"level": 3,
"title": "Claim: type"
},
@@ -214,56 +214,56 @@
"number": "4.7"
},
{
- "id": "sd-jwt-claim-96rLfjvhaeLQEsyBst9FUQBW_bAYJtDpA-6Jb4Znpe0",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-96rLfjvhaeLQEsyBst9FUQBW_bAYJtDpA-6Jb4Znpe0",
+ "id": "sd-jwt-claim-pxYrPGUvHhvtvvgy1v_iJUA0eTMhwfSYs0j7Pj_TEOg",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pxYrPGUvHhvtvvgy1v_iJUA0eTMhwfSYs0j7Pj_TEOg",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-eGyAgBGkLzdGbW3iK4NmsYatvg883Aa1qpFSdsl-u0w",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-eGyAgBGkLzdGbW3iK4NmsYatvg883Aa1qpFSdsl-u0w",
+ "id": "sd-jwt-claim-66xB2xX7x_nJiKcydlb-9SWk1-mH3d9rFk84-oKgkhI",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-66xB2xX7x_nJiKcydlb-9SWk1-mH3d9rFk84-oKgkhI",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-xz1UXuhZuRRfrnVVmHs8O_fIOvOTf71uHP8q0mM9Y9s",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-xz1UXuhZuRRfrnVVmHs8O_fIOvOTf71uHP8q0mM9Y9s",
+ "id": "sd-jwt-claim-Cj2dR0U4VnTbtn78GgZ0TnDWPc8VPp2AKUPxfmVAXPA",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Cj2dR0U4VnTbtn78GgZ0TnDWPc8VPp2AKUPxfmVAXPA",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-q9s4y824tbugerdmfG5Xk7lcNdtxOt73V1WF0ooGJAU",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-q9s4y824tbugerdmfG5Xk7lcNdtxOt73V1WF0ooGJAU",
+ "id": "sd-jwt-claim-aU4RgAdA1CR5OWlWbOhkgCgMc7hCE5lKtBbLjAEZ0Hk",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-aU4RgAdA1CR5OWlWbOhkgCgMc7hCE5lKtBbLjAEZ0Hk",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-rKq6NAcr7jL1QfCVatNex9Ley5Dl3x84V7DV1lqBxM0",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-rKq6NAcr7jL1QfCVatNex9Ley5Dl3x84V7DV1lqBxM0",
+ "id": "sd-jwt-claim-iSazltGADkh4M2v89Lo64VDGrham5Ye-mHVn_3txfoU",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-iSazltGADkh4M2v89Lo64VDGrham5Ye-mHVn_3txfoU",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-fUiN3jYG-HxHabdDEUg-mMXyYWc4S6FlS7M2njvO2yc",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-fUiN3jYG-HxHabdDEUg-mMXyYWc4S6FlS7M2njvO2yc",
+ "id": "sd-jwt-claim-FtMWkau2wEZ2GxVriQIFY-EBjGMVprJm22K53RDzCo8",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FtMWkau2wEZ2GxVriQIFY-EBjGMVprJm22K53RDzCo8",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-pTd-9293kfkqKAtygxVBTzQvHGoLpXRYEpf97Nfi5nE",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pTd-9293kfkqKAtygxVBTzQvHGoLpXRYEpf97Nfi5nE",
+ "id": "sd-jwt-claim-gN_1uN1WFLGTfKRClfEnxrTM5rFGnVlhTSNxh_ioEvE",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-gN_1uN1WFLGTfKRClfEnxrTM5rFGnVlhTSNxh_ioEvE",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-e9oN-ekiBILXtgc5MYz4daztKg4Feep0qLmjnf2oeLM",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-e9oN-ekiBILXtgc5MYz4daztKg4Feep0qLmjnf2oeLM",
+ "id": "sd-jwt-claim-up9FriAYAYfCAStu4zKAWhFi-gufaE85I5WpPrQHV4Y",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-up9FriAYAYfCAStu4zKAWhFi-gufaE85I5WpPrQHV4Y",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-C2bAdVdwTs32t5L1K6koIpheR63Z6xcaVbAh2eqxTc8",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-C2bAdVdwTs32t5L1K6koIpheR63Z6xcaVbAh2eqxTc8",
+ "id": "sd-jwt-claim-EvvuxYC1aqfxHcKGWWDnRVFHXySboLJrUxfUQ5ovN-k",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-EvvuxYC1aqfxHcKGWWDnRVFHXySboLJrUxfUQ5ovN-k",
"level": 3,
"title": "Claim: type"
},
@@ -275,26 +275,26 @@
"number": "4.8"
},
{
- "id": "sd-jwt-claim-7tow-7Uy0ryaG_NpsBoO8QIbsqfRp-K_lFh3WT4jDgM",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-7tow-7Uy0ryaG_NpsBoO8QIbsqfRp-K_lFh3WT4jDgM",
+ "id": "sd-jwt-claim-6jyCdyBcjjnU5e_H4DESu5eHob73HZ6QPru6bmQuPdo",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6jyCdyBcjjnU5e_H4DESu5eHob73HZ6QPru6bmQuPdo",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-S1UuYHGwWElrVyVSDpvTDwEwFFczYcaMdSb_LKa9kqk",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-S1UuYHGwWElrVyVSDpvTDwEwFFczYcaMdSb_LKa9kqk",
+ "id": "sd-jwt-claim-ynQTG6w9V2aoJFg6VKGfztCybd7tZ9UMZYA9KUK_gKw",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ynQTG6w9V2aoJFg6VKGfztCybd7tZ9UMZYA9KUK_gKw",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-bgEwU8AVCb47MvuEpbbwB3BMaTsj39C0aJPnczrF5MY",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-bgEwU8AVCb47MvuEpbbwB3BMaTsj39C0aJPnczrF5MY",
+ "id": "sd-jwt-claim-4WDs965sjYStB9rgXDqhND4rsp5nnyCQa7kUpM0AftI",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4WDs965sjYStB9rgXDqhND4rsp5nnyCQa7kUpM0AftI",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-wPFpcfDgnYp19UT-jyFGsO9pdb9gQtfpBTee3B7cCPg",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-wPFpcfDgnYp19UT-jyFGsO9pdb9gQtfpBTee3B7cCPg",
+ "id": "sd-jwt-claim-JcUCN8TYnFiBydJHtHU9E3a90Pt56wRBNgPFFUwrv5Q",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-JcUCN8TYnFiBydJHtHU9E3a90Pt56wRBNgPFFUwrv5Q",
"level": 3,
"title": "Claim: type"
},
@@ -306,26 +306,26 @@
"number": "4.9"
},
{
- "id": "sd-jwt-claim-Ur3MX24RKM34KipAKmDbCQJMQyU9ud7QnoeGxbx35Wk",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Ur3MX24RKM34KipAKmDbCQJMQyU9ud7QnoeGxbx35Wk",
+ "id": "sd-jwt-claim-g7QsJlmRBQGvJggXHqYls6ipIx0H-zm8ue_B3HhJ-1c",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-g7QsJlmRBQGvJggXHqYls6ipIx0H-zm8ue_B3HhJ-1c",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-6nc8aixxdqngHB0farXXxaG9DsMEwycEKHT_iGRAXmk",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6nc8aixxdqngHB0farXXxaG9DsMEwycEKHT_iGRAXmk",
+ "id": "sd-jwt-claim-mY4oSxE-KG9lZmwAoguWt5vTIFtUurVj_lEbYUhlgZI",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mY4oSxE-KG9lZmwAoguWt5vTIFtUurVj_lEbYUhlgZI",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-4e1Z2tAzvOOoWb878VjIEek6Rqq0n74FJSgnL0CnMOU",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4e1Z2tAzvOOoWb878VjIEek6Rqq0n74FJSgnL0CnMOU",
+ "id": "sd-jwt-claim-tg7gqeniLXECMSd2Gs0uyKq-wKXZp-YWULwQ3dKNt4E",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-tg7gqeniLXECMSd2Gs0uyKq-wKXZp-YWULwQ3dKNt4E",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-ltHMSB9iZYPZYU9uFtHMGtMfazMkSizS02oUvGmC26A",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ltHMSB9iZYPZYU9uFtHMGtMfazMkSizS02oUvGmC26A",
+ "id": "sd-jwt-claim-z6PLWQx5NhHNdCvRjZVUgR3buYy1r3_uvlfbEZ_0QL4",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-z6PLWQx5NhHNdCvRjZVUgR3buYy1r3_uvlfbEZ_0QL4",
"level": 3,
"title": "Claim: type"
},
@@ -403,20 +403,20 @@
"number": "5.2"
},
{
- "id": "sd-jwt-claim-9jO3U_WPQWm9PTd1MTeeKYq0CqAYVnYryXDn3CzsWpE",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-9jO3U_WPQWm9PTd1MTeeKYq0CqAYVnYryXDn3CzsWpE",
+ "id": "sd-jwt-claim-N_hYI9rj_do8VOQ0RHfB0TiK2nwewbnIsRye-BXMWWo",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-N_hYI9rj_do8VOQ0RHfB0TiK2nwewbnIsRye-BXMWWo",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-OijKfp0KtFwDR5cZXsWFYhvHw81EenLGo8cV9j2iwFQ",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-OijKfp0KtFwDR5cZXsWFYhvHw81EenLGo8cV9j2iwFQ",
+ "id": "sd-jwt-claim-1fefOc3ypw42Tl74gP-tLO-_KmsJzR5D99H1kUCnFi4",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-1fefOc3ypw42Tl74gP-tLO-_KmsJzR5D99H1kUCnFi4",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-_HZLcB8OtnBR3VQ4bjt8E1BYzCAXixm5M09D4VaVH3M",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-_HZLcB8OtnBR3VQ4bjt8E1BYzCAXixm5M09D4VaVH3M",
+ "id": "sd-jwt-claim-rBJbgzwAPYI32aw9UBJlz-vUnlSacVhJPNxv2ANg3kQ",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-rBJbgzwAPYI32aw9UBJlz-vUnlSacVhJPNxv2ANg3kQ",
"level": 3,
"title": "Claim: id"
},
@@ -654,20 +654,20 @@
"number": "8.10"
},
{
- "id": "sd-jwt-claim-gLPleUxdTtZ-vvmYMb1KnrMeNxdWOoUWzExHZnhlQ0k",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-gLPleUxdTtZ-vvmYMb1KnrMeNxdWOoUWzExHZnhlQ0k",
+ "id": "sd-jwt-claim-23VG3HSs8doKOoOmavIp0l9VUm1AQZAmViU-LbEYgPc",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-23VG3HSs8doKOoOmavIp0l9VUm1AQZAmViU-LbEYgPc",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-pXgCWNvLuTyX7_t0QOhsFNrTlSF7XvT2E5NllSe6xLk",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pXgCWNvLuTyX7_t0QOhsFNrTlSF7XvT2E5NllSe6xLk",
+ "id": "sd-jwt-claim-SByixDW50A09wNo7LGgelGCf_2DRD74wLWkmxApwNxM",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-SByixDW50A09wNo7LGgelGCf_2DRD74wLWkmxApwNxM",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-uWsNGl8Ro-95ImGbHmBsOF-OCChus66G0ddCZnDq4nA",
- "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-uWsNGl8Ro-95ImGbHmBsOF-OCChus66G0ddCZnDq4nA",
+ "id": "sd-jwt-claim-6mFwwkwXc1JBonXxWW3AuWMCQ9JgRtfBQdvguf1lfYs",
+ "href": "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6mFwwkwXc1JBonXxWW3AuWMCQ9JgRtfBQdvguf1lfYs",
"level": 3,
"title": "Claim: type"
},
diff --git a/tr/headings/webdriver-bidi.json b/tr/headings/webdriver-bidi.json
index 24aeebb6493e..3f0f7f51eade 100644
--- a/tr/headings/webdriver-bidi.json
+++ b/tr/headings/webdriver-bidi.json
@@ -203,12 +203,33 @@
"title": "The session.UserPromptHandlerType Type",
"number": "7.1.2.5"
},
+ {
+ "id": "type-session-Subscription",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-Subscription",
+ "level": 5,
+ "title": "The session.Subscription Type",
+ "number": "7.1.2.6"
+ },
{
"id": "type-session-SubscriptionRequest",
"href": "https://www.w3.org/TR/webdriver-bidi/#type-session-SubscriptionRequest",
"level": 5,
"title": "The session.SubscriptionRequest Type",
- "number": "7.1.2.6"
+ "number": "7.1.2.7"
+ },
+ {
+ "id": "type-session-UnsubscribeByIDRequest",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-UnsubscribeByIDRequest",
+ "level": 5,
+ "title": "The session.UnsubscribeByIDRequest Type",
+ "number": "7.1.2.8"
+ },
+ {
+ "id": "type-session-UnsubscribeByAttributesRequest",
+ "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-UnsubscribeByAttributesRequest",
+ "level": 5,
+ "title": "The session.UnsubscribeByAttributesRequest Type",
+ "number": "7.1.2.9"
},
{
"id": "module-session-commands",
diff --git a/tr/ids/css-color-hdr-1.json b/tr/ids/css-color-hdr-1.json
new file mode 100644
index 000000000000..388ba5459ffa
--- /dev/null
+++ b/tr/ids/css-color-hdr-1.json
@@ -0,0 +1,258 @@
+{
+ "spec": {
+ "title": "CSS Color HDR Module Level 1",
+ "url": "https://www.w3.org/TR/css-color-hdr-1/"
+ },
+ "ids": [
+ "https://www.w3.org/TR/css-color-hdr-1/#toc-nav",
+ "https://www.w3.org/TR/css-color-hdr-1/#toc-jump",
+ "https://www.w3.org/TR/css-color-hdr-1/#toc-toggle",
+ "https://www.w3.org/TR/css-color-hdr-1/#toc-theme-toggle",
+ "https://www.w3.org/TR/css-color-hdr-1/#title",
+ "https://www.w3.org/TR/css-color-hdr-1/#w3c-state",
+ "https://www.w3.org/TR/css-color-hdr-1/#abstract",
+ "https://www.w3.org/TR/css-color-hdr-1/#sotd",
+ "https://www.w3.org/TR/css-color-hdr-1/#w3c_process_revision",
+ "https://www.w3.org/TR/css-color-hdr-1/#toc",
+ "https://www.w3.org/TR/css-color-hdr-1/#contents",
+ "https://www.w3.org/TR/css-color-hdr-1/#intro",
+ "https://www.w3.org/TR/css-color-hdr-1/#fig-eotf",
+ "https://www.w3.org/TR/css-color-hdr-1/#values",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-css-wide-keywords",
+ "https://www.w3.org/TR/css-color-hdr-1/#controlling-dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#defining-dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-luminance",
+ "https://www.w3.org/TR/css-color-hdr-1/#standard-dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#ex-SDR-dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-sRGB-space",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-luminance%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ex-SDR-brighter-dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-sRGB-space%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#high-dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#ex-HDR-dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-luminance%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ex-HDR-PQ-dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#introducing-headroom",
+ "https://www.w3.org/TR/css-color-hdr-1/#hdr-headroom",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-standard-dynamic-range",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-hdr-headroom",
+ "https://www.w3.org/TR/css-color-hdr-1/#ex-low-headroom",
+ "https://www.w3.org/TR/css-color-hdr-1/#ex-high-headroom",
+ "https://www.w3.org/TR/css-color-hdr-1/#headroom-privacy",
+ "https://www.w3.org/TR/css-color-hdr-1/#constrained-headroom",
+ "https://www.w3.org/TR/css-color-hdr-1/#ex-photo-grid",
+ "https://www.w3.org/TR/css-color-hdr-1/#the-dynamic-range-limit-property",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-propdef-dynamic-range-limit",
+ "https://www.w3.org/TR/css-color-hdr-1/#propdef-dynamic-range-limit",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-dynamic-range-limit-mix",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-dynamic-range-limit-mix%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#valdef-dynamic-range-limit-standard",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-color-white",
+ "https://www.w3.org/TR/css-color-hdr-1/#valdef-dynamic-range-limit-high",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-color-white%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#valdef-dynamic-range-limit-constrained-high",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-color-white%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ex-hdr-limit-photogrid",
+ "https://www.w3.org/TR/css-color-hdr-1/#dynamic-range-limit-mix",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-dynamic-range-limit-mix%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-propdef-dynamic-range-limit%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#funcdef-dynamic-range-limit-mix",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-ident",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-all",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-percentage-value",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-mult-comma",
+ "https://www.w3.org/TR/css-color-hdr-1/#computing-dynamic-range-limit",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-propdef-dynamic-range-limit%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-standard",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-constrained-high",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-high",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-dynamic-range-limit-mix%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-standard%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-constrained-high%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-high%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-standard%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-constrained-high%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-high%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-dynamic-range-limit-mix%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-standard%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-constrained-high%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-high%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ex-hdr-limit-mix",
+ "https://www.w3.org/TR/css-color-hdr-1/#color-function",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-color",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-color%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-color-space",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-color%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#funcdef-color",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-color",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-mult-opt",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-colorspace-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-color-alpha-value",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-mult-opt%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#typedef-colorspace-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-custom-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-predefined-rgb-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A4",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-predefined-polar-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A5",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-predefined-rectangular-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A6",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-xyz-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#typedef-custom-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-dashed-ident",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-number-value",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A7",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-percentage-value%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A8",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-mult-one-plus",
+ "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rgb-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-predefined-rgb",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-number-value%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-percentage-value%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-mult-num",
+ "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-polar-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-number-value%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-percentage-value%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-mult-num%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-hue",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rectangular-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-predefined-rectangular",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-number-value%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-percentage-value%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-mult-num%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rgb",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#typedef-predefined-rectangular",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/css-color-hdr-1/#typedef-xyz-params",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-xyz",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-number-value%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%91%A5",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-percentage-value%E2%91%A4",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-mult-num%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#typedef-xyz",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-comb-one%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/css-color-hdr-1/#predefined-HDR",
+ "https://www.w3.org/TR/css-color-hdr-1/#valdef-color-rec2100-pq",
+ "https://www.w3.org/TR/css-color-hdr-1/#rec2100-pq",
+ "https://www.w3.org/TR/css-color-hdr-1/#issue-b905ab0c",
+ "https://www.w3.org/TR/css-color-hdr-1/#example-dbd71f8e",
+ "https://www.w3.org/TR/css-color-hdr-1/#example-f604e8a3",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-color-white%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#issue-3762b88c",
+ "https://www.w3.org/TR/css-color-hdr-1/#valdef-color-rec2100-hlg",
+ "https://www.w3.org/TR/css-color-hdr-1/#rec2100-hlg",
+ "https://www.w3.org/TR/css-color-hdr-1/#issue-63bd5f3d",
+ "https://www.w3.org/TR/css-color-hdr-1/#example-8d914a69",
+ "https://www.w3.org/TR/css-color-hdr-1/#issue-fb589d17",
+ "https://www.w3.org/TR/css-color-hdr-1/#valdef-color-rec2100-linear",
+ "https://www.w3.org/TR/css-color-hdr-1/#rec2100-linear",
+ "https://www.w3.org/TR/css-color-hdr-1/#example-9e27a38c",
+ "https://www.w3.org/TR/css-color-hdr-1/#example-071a1469",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-color-white%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#Jzazbz",
+ "https://www.w3.org/TR/css-color-hdr-1/#jzazbz",
+ "https://www.w3.org/TR/css-color-hdr-1/#example-ff468b89",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-color-white%E2%91%A4",
+ "https://www.w3.org/TR/css-color-hdr-1/#JzCzHz",
+ "https://www.w3.org/TR/css-color-hdr-1/#jzczhz",
+ "https://www.w3.org/TR/css-color-hdr-1/#example-34868c8f",
+ "https://www.w3.org/TR/css-color-hdr-1/#Jzazbz-to-JzCzHz",
+ "https://www.w3.org/TR/css-color-hdr-1/#JzCzHz-to-Jzazbz",
+ "https://www.w3.org/TR/css-color-hdr-1/#ICtCp",
+ "https://www.w3.org/TR/css-color-hdr-1/#ictcp",
+ "https://www.w3.org/TR/css-color-hdr-1/#example-c4316f3d",
+ "https://www.w3.org/TR/css-color-hdr-1/#example-2c7022c8",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-color-white%E2%91%A5",
+ "https://www.w3.org/TR/css-color-hdr-1/#Compositing-SDR-HDR",
+ "https://www.w3.org/TR/css-color-hdr-1/#serializing-color-values",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-typedef-color%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#serializing-color-function-values",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-color%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-color%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-computed-value",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-funcdef-color%E2%91%A4",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-number-value%E2%91%A4",
+ "https://www.w3.org/TR/css-color-hdr-1/#predefined-precision-table",
+ "https://www.w3.org/TR/css-color-hdr-1/#issue-ffacc2d5",
+ "https://www.w3.org/TR/css-color-hdr-1/#privacy",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-hdr-headroom%E2%91%A0",
+ "https://www.w3.org/TR/css-color-hdr-1/#security",
+ "https://www.w3.org/TR/css-color-hdr-1/#a11y",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-standard%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-valdef-dynamic-range-limit-constrained-high%E2%91%A3",
+ "https://www.w3.org/TR/css-color-hdr-1/#w3c-conformance",
+ "https://www.w3.org/TR/css-color-hdr-1/#w3c-conventions",
+ "https://www.w3.org/TR/css-color-hdr-1/#w3c-example",
+ "https://www.w3.org/TR/css-color-hdr-1/#w3c-conformance-classes",
+ "https://www.w3.org/TR/css-color-hdr-1/#w3c-partial",
+ "https://www.w3.org/TR/css-color-hdr-1/#w3c-conform-future-proofing",
+ "https://www.w3.org/TR/css-color-hdr-1/#w3c-testing",
+ "https://www.w3.org/TR/css-color-hdr-1/#index",
+ "https://www.w3.org/TR/css-color-hdr-1/#index-defined-here",
+ "https://www.w3.org/TR/css-color-hdr-1/#index-defined-elsewhere",
+ "https://www.w3.org/TR/css-color-hdr-1/#8c8e51b4",
+ "https://www.w3.org/TR/css-color-hdr-1/#e5db470f",
+ "https://www.w3.org/TR/css-color-hdr-1/#33347c0e",
+ "https://www.w3.org/TR/css-color-hdr-1/#f6f69187",
+ "https://www.w3.org/TR/css-color-hdr-1/#33c7b9d0",
+ "https://www.w3.org/TR/css-color-hdr-1/#bd774466",
+ "https://www.w3.org/TR/css-color-hdr-1/#17858dc9",
+ "https://www.w3.org/TR/css-color-hdr-1/#d04b6986",
+ "https://www.w3.org/TR/css-color-hdr-1/#c297b070",
+ "https://www.w3.org/TR/css-color-hdr-1/#bdb4e757",
+ "https://www.w3.org/TR/css-color-hdr-1/#af4a190d",
+ "https://www.w3.org/TR/css-color-hdr-1/#f5b34cad",
+ "https://www.w3.org/TR/css-color-hdr-1/#dcecfc13",
+ "https://www.w3.org/TR/css-color-hdr-1/#61bb5e44",
+ "https://www.w3.org/TR/css-color-hdr-1/#128295ac",
+ "https://www.w3.org/TR/css-color-hdr-1/#d4441b24",
+ "https://www.w3.org/TR/css-color-hdr-1/#8a110a7b",
+ "https://www.w3.org/TR/css-color-hdr-1/#8cbc2b3b",
+ "https://www.w3.org/TR/css-color-hdr-1/#4eb9d37e",
+ "https://www.w3.org/TR/css-color-hdr-1/#references",
+ "https://www.w3.org/TR/css-color-hdr-1/#normative",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-css-cascade-5",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-css-color-4",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-css-color-5",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-css-values-3",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-css-values-4",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-css2",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-rec2020",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-rec_bt2100",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-rec_bt2390",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-rfc2119",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-rpt_bt2408",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-safdar-pucs",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-smpte-st-2084",
+ "https://www.w3.org/TR/css-color-hdr-1/#informative",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-arib_std-b67",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-displayhdr",
+ "https://www.w3.org/TR/css-color-hdr-1/#biblio-rec_bt814",
+ "https://www.w3.org/TR/css-color-hdr-1/#property-index",
+ "https://www.w3.org/TR/css-color-hdr-1/#ref-for-propdef-dynamic-range-limit%E2%91%A2",
+ "https://www.w3.org/TR/css-color-hdr-1/#issues-index"
+ ]
+}
\ No newline at end of file
diff --git a/tr/ids/css-overflow-5.json b/tr/ids/css-overflow-5.json
new file mode 100644
index 000000000000..723bdd8c0ba7
--- /dev/null
+++ b/tr/ids/css-overflow-5.json
@@ -0,0 +1,484 @@
+{
+ "spec": {
+ "title": "CSS Overflow Module Level 5",
+ "url": "https://www.w3.org/TR/css-overflow-5/"
+ },
+ "ids": [
+ "https://www.w3.org/TR/css-overflow-5/#toc-nav",
+ "https://www.w3.org/TR/css-overflow-5/#toc-jump",
+ "https://www.w3.org/TR/css-overflow-5/#toc-toggle",
+ "https://www.w3.org/TR/css-overflow-5/#toc-theme-toggle",
+ "https://www.w3.org/TR/css-overflow-5/#title",
+ "https://www.w3.org/TR/css-overflow-5/#w3c-state",
+ "https://www.w3.org/TR/css-overflow-5/#abstract",
+ "https://www.w3.org/TR/css-overflow-5/#sotd",
+ "https://www.w3.org/TR/css-overflow-5/#w3c_process_revision",
+ "https://www.w3.org/TR/css-overflow-5/#toc",
+ "https://www.w3.org/TR/css-overflow-5/#contents",
+ "https://www.w3.org/TR/css-overflow-5/#intro",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-target-current",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragmentation-container",
+ "https://www.w3.org/TR/css-overflow-5/#overflow-concepts",
+ "https://www.w3.org/TR/css-overflow-5/#issue-50246bc5",
+ "https://www.w3.org/TR/css-overflow-5/#scrolling",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container",
+ "https://www.w3.org/TR/css-overflow-5/#current-scroll-target",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-current-scroll-target",
+ "https://www.w3.org/TR/css-overflow-5/#issue-fc26a707",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-a-target-into-view",
+ "https://www.w3.org/TR/css-overflow-5/#issue-e9bdeb4d",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-anchor-priority-candidates",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-navigation",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-markers",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-marker",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-target",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-element",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-the-indicated-part-of-the-document",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#issue-41eecb3e",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-marker-grouping",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-container",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker-group-container",
+ "https://www.w3.org/TR/css-overflow-5/#issue-a5475f7a",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker-group-container%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker-group",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-property",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group",
+ "https://www.w3.org/TR/css-overflow-5/#propdef-scroll-marker-group",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-comb-one",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-comb-one%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-marker-group-none",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-marker-group-before",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-marker-group-after",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-marker-group-pseudo",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#selectordef-scroll-marker-group",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fully-styleable",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-scroll-marker-group-none",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-marker-pseudo",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-before",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-after",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-content",
+ "https://www.w3.org/TR/css-overflow-5/#selectordef-scroll-marker",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-content-none",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-scroll-marker-group-none%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-concept-tree-order",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#active-scroll-marker",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-target-current%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker-group%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#selectordef-target-current",
+ "https://www.w3.org/TR/css-overflow-5/#example-7a0e4019",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker-group%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker-group%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker-group%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#example-d2ca6884",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker-group%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-current-scroll-target%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-current-scroll-target%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-determine-the-scroll-into-view-position",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scrollable-overflow-region",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker-group%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-marker-activation",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-a-target-into-view%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-following-hyperlinks-2",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-target-focus",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-marker%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-target%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#scroll-buttons",
+ "https://www.w3.org/TR/css-overflow-5/#selectordef-scroll-button-scroll-button-direction",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-typedef-scroll-button-direction",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-content%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-content-none%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-content%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-flow-relative",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-writing-mode",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-block-start",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-inline-start",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-block-end",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-inline-end",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scrollport",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-intended-direction-and-end-position",
+ "https://www.w3.org/TR/css-overflow-5/#issue-086bdb0b",
+ "https://www.w3.org/TR/css-overflow-5/#issue-cdbe0ac3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#typedef-scroll-button-direction",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-typedef-scroll-button-direction%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-up",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-down",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-left",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-right",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-block-start",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-block-end",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-inline-start",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-inline-end",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-prev",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-block-start%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-inline-start%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scrollable-overflow-region%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scrollport%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-block-start%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#example-af1a5884",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scrollable-overflow-region%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-block-start%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-scroll-button-direction-next",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-scroll-button-direction-prev",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-block-end%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-inline-end%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#issue-62e6d969",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fully-styleable%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-disabled-pseudo",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-originating-element%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#issue-c93cbaf3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-the-button-element",
+ "https://www.w3.org/TR/css-overflow-5/#issue-894e4eee",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-appearance",
+ "https://www.w3.org/TR/css-overflow-5/#focus-order",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-button-scroll-button-direction%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-scroll-marker-group%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-scroll-container%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#fragmentation",
+ "https://www.w3.org/TR/css-overflow-5/#issue-3406e15b",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-overflow",
+ "https://www.w3.org/TR/css-overflow-5/#channelling-overflow",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-comb-one%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-comb-one%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#issue-70dec9cf",
+ "https://www.w3.org/TR/css-overflow-5/#issue-b201bbf9",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-region-fragment",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-region-fragment%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-auto",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-css-region",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-region-chain",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-auto%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#issue-cb5399d1",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-continue-overflow",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-overflow%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-continue-paginate",
+ "https://www.w3.org/TR/css-overflow-5/#valdef-continue-fragments",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-layout-containment",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-auto%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-fragments",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-overflow",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-auto%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-css-region%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-region-chain%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-auto%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-paginate",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-fragments%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-overflow%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-fragments%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-paginate%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#issue-7e96806f",
+ "https://www.w3.org/TR/css-overflow-5/#paginated-overflow",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-paginate%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#issue-001d5014",
+ "https://www.w3.org/TR/css-overflow-5/#issue-338ad0f3",
+ "https://www.w3.org/TR/css-overflow-5/#issue-20e2f78e",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-auto%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#issue-87a37458",
+ "https://www.w3.org/TR/css-overflow-5/#issue-64583cf9",
+ "https://www.w3.org/TR/css-overflow-5/#issue-c27ed5ea",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-paginate%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#issue-e78fc89d",
+ "https://www.w3.org/TR/css-overflow-5/#issue-2261daab",
+ "https://www.w3.org/TR/css-overflow-5/#issue-6bc0b289",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#fragment-overflow",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-fragments%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-fragments%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#fragment-box",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-fragments%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#issue-c87585cb",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#issue-6629852d",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-overflow-columns",
+ "https://www.w3.org/TR/css-overflow-5/#issue-74cf5d92",
+ "https://www.w3.org/TR/css-overflow-5/#issue-ca84b506",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#issue-82870b15",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment",
+ "https://www.w3.org/TR/css-overflow-5/#example-e465abc6",
+ "https://www.w3.org/TR/css-overflow-5/#example-7bf90bf1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-max-lines",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-height",
+ "https://www.w3.org/TR/css-overflow-5/#issue-4d452eb2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#issue-0df4918a",
+ "https://www.w3.org/TR/css-overflow-5/#issue-1d1c38d2",
+ "https://www.w3.org/TR/css-overflow-5/#fragment-styling",
+ "https://www.w3.org/TR/css-overflow-5/#fragment-pseudo-element",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#selectordef-nth-fragment",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#issue-978c73c1",
+ "https://www.w3.org/TR/css-overflow-5/#style-of-fragments",
+ "https://www.w3.org/TR/css-overflow-5/#issue-ce652c3d",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selector-subject",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#issue-40daaa94",
+ "https://www.w3.org/TR/css-overflow-5/#example-9b7707f8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-continue-fragments%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-content%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-content%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-display",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-display%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-position",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-float",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-inner-display-type",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-continue%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#issue-d723335f",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/css-overflow-5/#issue-0fc783b4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-valdef-all-inherit",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-first-letter",
+ "https://www.w3.org/TR/css-overflow-5/#example-aa99a4f4",
+ "https://www.w3.org/TR/css-overflow-5/#style-in-fragments",
+ "https://www.w3.org/TR/css-overflow-5/#issue-4a9707fc",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-first-line",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-first-letter%E2%91%A0",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-first-letter%E2%91%A1",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-first-letter%E2%91%A2",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-selectordef-nth-fragment%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-fragment-box%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#example-ddb63e18",
+ "https://www.w3.org/TR/css-overflow-5/#privacy",
+ "https://www.w3.org/TR/css-overflow-5/#security",
+ "https://www.w3.org/TR/css-overflow-5/#changes-l4",
+ "https://www.w3.org/TR/css-overflow-5/#issue-d4908b1e",
+ "https://www.w3.org/TR/css-overflow-5/#acknowledgments",
+ "https://www.w3.org/TR/css-overflow-5/#w3c-conformance",
+ "https://www.w3.org/TR/css-overflow-5/#w3c-conventions",
+ "https://www.w3.org/TR/css-overflow-5/#w3c-example",
+ "https://www.w3.org/TR/css-overflow-5/#w3c-conformance-classes",
+ "https://www.w3.org/TR/css-overflow-5/#w3c-partial",
+ "https://www.w3.org/TR/css-overflow-5/#w3c-conform-future-proofing",
+ "https://www.w3.org/TR/css-overflow-5/#w3c-testing",
+ "https://www.w3.org/TR/css-overflow-5/#index",
+ "https://www.w3.org/TR/css-overflow-5/#index-defined-here",
+ "https://www.w3.org/TR/css-overflow-5/#index-defined-elsewhere",
+ "https://www.w3.org/TR/css-overflow-5/#4904f647",
+ "https://www.w3.org/TR/css-overflow-5/#d0dc95c3",
+ "https://www.w3.org/TR/css-overflow-5/#7507b495",
+ "https://www.w3.org/TR/css-overflow-5/#f3e8378c",
+ "https://www.w3.org/TR/css-overflow-5/#85ca4a34",
+ "https://www.w3.org/TR/css-overflow-5/#2ccfe434",
+ "https://www.w3.org/TR/css-overflow-5/#b7bfe5ca",
+ "https://www.w3.org/TR/css-overflow-5/#bb384093",
+ "https://www.w3.org/TR/css-overflow-5/#add377f4",
+ "https://www.w3.org/TR/css-overflow-5/#a3cabdb1",
+ "https://www.w3.org/TR/css-overflow-5/#3ed7991e",
+ "https://www.w3.org/TR/css-overflow-5/#700ea31d",
+ "https://www.w3.org/TR/css-overflow-5/#072002d2",
+ "https://www.w3.org/TR/css-overflow-5/#42ff6ed0",
+ "https://www.w3.org/TR/css-overflow-5/#072f08da",
+ "https://www.w3.org/TR/css-overflow-5/#b8c34db8",
+ "https://www.w3.org/TR/css-overflow-5/#70503bd6",
+ "https://www.w3.org/TR/css-overflow-5/#7c6f51b7",
+ "https://www.w3.org/TR/css-overflow-5/#63b59bd9",
+ "https://www.w3.org/TR/css-overflow-5/#4bda66a9",
+ "https://www.w3.org/TR/css-overflow-5/#3b733e03",
+ "https://www.w3.org/TR/css-overflow-5/#6ff64730",
+ "https://www.w3.org/TR/css-overflow-5/#9b457f64",
+ "https://www.w3.org/TR/css-overflow-5/#8ddccf89",
+ "https://www.w3.org/TR/css-overflow-5/#df83f8bf",
+ "https://www.w3.org/TR/css-overflow-5/#6292f440",
+ "https://www.w3.org/TR/css-overflow-5/#5ad01cca",
+ "https://www.w3.org/TR/css-overflow-5/#727bd17b",
+ "https://www.w3.org/TR/css-overflow-5/#4eb9d37e",
+ "https://www.w3.org/TR/css-overflow-5/#83d2ef35",
+ "https://www.w3.org/TR/css-overflow-5/#1118d052",
+ "https://www.w3.org/TR/css-overflow-5/#303c8d41",
+ "https://www.w3.org/TR/css-overflow-5/#4da3b716",
+ "https://www.w3.org/TR/css-overflow-5/#0da67e16",
+ "https://www.w3.org/TR/css-overflow-5/#eb6008ce",
+ "https://www.w3.org/TR/css-overflow-5/#0570259e",
+ "https://www.w3.org/TR/css-overflow-5/#0cda95c2",
+ "https://www.w3.org/TR/css-overflow-5/#2cbb079e",
+ "https://www.w3.org/TR/css-overflow-5/#296f3551",
+ "https://www.w3.org/TR/css-overflow-5/#25538777",
+ "https://www.w3.org/TR/css-overflow-5/#bfff6250",
+ "https://www.w3.org/TR/css-overflow-5/#f0246dc8",
+ "https://www.w3.org/TR/css-overflow-5/#9ea68b61",
+ "https://www.w3.org/TR/css-overflow-5/#86538792",
+ "https://www.w3.org/TR/css-overflow-5/#7b5d8638",
+ "https://www.w3.org/TR/css-overflow-5/#aa4e3328",
+ "https://www.w3.org/TR/css-overflow-5/#references",
+ "https://www.w3.org/TR/css-overflow-5/#normative",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-break-3",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-break-4",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-cascade-5",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-contain-1",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-contain-2",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-content-3",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-display-3",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-multicol-1",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-overflow-3",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-overflow-4",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-position-3",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-pseudo-4",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-regions-1",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-scroll-anchoring-1",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-scroll-snap-1",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-ui-4",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-values-4",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-writing-modes-4",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css2",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css22",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css3-flexbox",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css3-grid-layout",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-cssom-view-1",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-dom",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-html",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-rfc2119",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-select",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-selectors-4",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-svg2",
+ "https://www.w3.org/TR/css-overflow-5/#informative",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css-sizing-3",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css1",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css3-marquee",
+ "https://www.w3.org/TR/css-overflow-5/#biblio-css3gcpm",
+ "https://www.w3.org/TR/css-overflow-5/#property-index",
+ "https://www.w3.org/TR/css-overflow-5/#ref-for-propdef-scroll-marker-group%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/css-overflow-5/#issues-index"
+ ]
+}
\ No newline at end of file
diff --git a/tr/ids/vc-data-model-2.0.json b/tr/ids/vc-data-model-2.0.json
index 0a6a767e321f..06de05b5d5fc 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-6ypb9pq-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-6ypb9pq-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-6ypb9pq-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-6ypb9pq-content-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-6ypb9pq-content-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-6ypb9pq-content-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FPfOooNUUk8g-qOwgmtAU-cRvWiGQTEyvqVESdyp6OQ",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-KkMFKJQKivoV4fQO7pKm_i8EB56OIKn9IcTUuJkn1fs",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-IS1LBVCDfrRIxD_fxd2bYJ8uyD1fRKvXKiKNGIiCdPQ",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-7qMxOFWROXk5LKl9QOpyNm-SLAgEFmFbCQlhxXyoSqw",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-pvucjef-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-pvucjef-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-pvucjef-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-pvucjef-content-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-pvucjef-content-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-1-pvucjef-content-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-DnQ7kKMrwsQdP0MXnFcxv2zrTAGMLrIsdtJu6A-5dDY",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-d8ceo3-2ymreAZw1hHvtLhWMZa8h3vIjf33--cIoQgI",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FO-wXMolQhJiJPDgWdgmUHqVJWBjQOL2LBRY-gKu1rk",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-UeK-W5TtQELotTZpyuSOuMgL4JuHY2otoLd6DGCebnw",
"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-zztvjzo-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-zztvjzo-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-zztvjzo-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-zztvjzo-content-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-zztvjzo-content-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-zztvjzo-content-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Tb9NHsGQJNQgUdrev8XHoE6htxDmFeNY_O-CN4UCDFM",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-NU2vLzvmeadvwqkUSUKCCr3-Tw1SNShiqrkNwiHpMGo",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-juil2wx_LO6y__2vqYabRAJyy6M4W6FpqdFbqDwFy9c",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-BZxCLBM706R3jGeCjXfxFaXUcfMQHb_tlQB4OQ_oeuo",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-vwwr35f-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-vwwr35f-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-vwwr35f-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-vwwr35f-content-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-vwwr35f-content-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-2-vwwr35f-content-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-8o5FFa9WaB9T8EkiOP_AVMcVPl2ZLd5fJ-AkmlkhJeQ",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-uHqBc0Ivo2pV4Bqk1OGO7bQzAlgiR3hiJYD2p9wW3e0",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ple_t_Z1U3b_kG4meiIYth1Kp7JinBYhxMhgtx3M9Ko",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mgKXH1mwWqpWJ_Sf0DAy7D1wv-m2_m8AiE5p0Aadhgg",
"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-5ggjjvs-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-5ggjjvs-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-5ggjjvs-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-5ggjjvs-content-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-5ggjjvs-content-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-5ggjjvs-content-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4nkpml-Z5rHw0z5G9XWeWSNFQG3dPgXQJ38gf5AGBtU",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-MX2ziRcdwmZwF_PnS78aEwM1wc2xBO7_wlbMZPI_1MU",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-vXDDN4Er_nr328jHE-ZkhBHBEXXx_GlWNLwoD00_3vg",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-uOeG8W6wcuTpfEpZ6vrcni1ixuKvfXkJYM9VAn6wawQ",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-87L31VLZM0Qf9_f1thTB0wAt3RvAjC2THES3tzMYges",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-h7nv7cu-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-h7nv7cu-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-h7nv7cu-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-h7nv7cu-content-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-h7nv7cu-content-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-3-h7nv7cu-content-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-MAUt_lXb2ergutyi3VMTslsrC27Aiqb7AyGjQ3SNcI8",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-yNwJmju-mV1zCWas5w49hy5YYCzTvJJhSZdARd490y4",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-eFpEabxpMSYXXwdYeva_s6Wrltb-SzU7ewi4oDaqmFI",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-O2ReSe7alzRADXvbIXAJdvKkQV74NZKQ6tm5JqXe3jI",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6oTlk068Taa34v-YPi09GDKvXprO3R-ITt3nc8hOn7g",
"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-uuobb2n-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-uuobb2n-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-uuobb2n-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-uuobb2n-content-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-uuobb2n-content-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-uuobb2n-content-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-96rLfjvhaeLQEsyBst9FUQBW_bAYJtDpA-6Jb4Znpe0",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-eGyAgBGkLzdGbW3iK4NmsYatvg883Aa1qpFSdsl-u0w",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-xz1UXuhZuRRfrnVVmHs8O_fIOvOTf71uHP8q0mM9Y9s",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-q9s4y824tbugerdmfG5Xk7lcNdtxOt73V1WF0ooGJAU",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-1s2zsd9-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-1s2zsd9-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-1s2zsd9-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-1s2zsd9-content-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-1s2zsd9-content-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-4-1s2zsd9-content-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pxYrPGUvHhvtvvgy1v_iJUA0eTMhwfSYs0j7Pj_TEOg",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-66xB2xX7x_nJiKcydlb-9SWk1-mH3d9rFk84-oKgkhI",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Cj2dR0U4VnTbtn78GgZ0TnDWPc8VPp2AKUPxfmVAXPA",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-aU4RgAdA1CR5OWlWbOhkgCgMc7hCE5lKtBbLjAEZ0Hk",
"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-0tq4n84-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-0tq4n84-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-0tq4n84-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-0tq4n84-content-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-0tq4n84-content-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-0tq4n84-content-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-rKq6NAcr7jL1QfCVatNex9Ley5Dl3x84V7DV1lqBxM0",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-fUiN3jYG-HxHabdDEUg-mMXyYWc4S6FlS7M2njvO2yc",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pTd-9293kfkqKAtygxVBTzQvHGoLpXRYEpf97Nfi5nE",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-e9oN-ekiBILXtgc5MYz4daztKg4Feep0qLmjnf2oeLM",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-C2bAdVdwTs32t5L1K6koIpheR63Z6xcaVbAh2eqxTc8",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-7y79err-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-7y79err-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-7y79err-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-7y79err-content-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-7y79err-content-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-5-7y79err-content-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-iSazltGADkh4M2v89Lo64VDGrham5Ye-mHVn_3txfoU",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-FtMWkau2wEZ2GxVriQIFY-EBjGMVprJm22K53RDzCo8",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-gN_1uN1WFLGTfKRClfEnxrTM5rFGnVlhTSNxh_ioEvE",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-up9FriAYAYfCAStu4zKAWhFi-gufaE85I5WpPrQHV4Y",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-EvvuxYC1aqfxHcKGWWDnRVFHXySboLJrUxfUQ5ovN-k",
"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-x2bxs7a-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-x2bxs7a-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-x2bxs7a-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-x2bxs7a-content-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-x2bxs7a-content-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-x2bxs7a-content-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-7tow-7Uy0ryaG_NpsBoO8QIbsqfRp-K_lFh3WT4jDgM",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-S1UuYHGwWElrVyVSDpvTDwEwFFczYcaMdSb_LKa9kqk",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-bgEwU8AVCb47MvuEpbbwB3BMaTsj39C0aJPnczrF5MY",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-wPFpcfDgnYp19UT-jyFGsO9pdb9gQtfpBTee3B7cCPg",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-y87o46z-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-y87o46z-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-y87o46z-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-y87o46z-content-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-y87o46z-content-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-6-y87o46z-content-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6jyCdyBcjjnU5e_H4DESu5eHob73HZ6QPru6bmQuPdo",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ynQTG6w9V2aoJFg6VKGfztCybd7tZ9UMZYA9KUK_gKw",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4WDs965sjYStB9rgXDqhND4rsp5nnyCQa7kUpM0AftI",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-JcUCN8TYnFiBydJHtHU9E3a90Pt56wRBNgPFFUwrv5Q",
"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-heiyj0s-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-heiyj0s-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-heiyj0s-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-heiyj0s-content-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-heiyj0s-content-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-heiyj0s-content-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-Ur3MX24RKM34KipAKmDbCQJMQyU9ud7QnoeGxbx35Wk",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6nc8aixxdqngHB0farXXxaG9DsMEwycEKHT_iGRAXmk",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-4e1Z2tAzvOOoWb878VjIEek6Rqq0n74FJSgnL0CnMOU",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-ltHMSB9iZYPZYU9uFtHMGtMfazMkSizS02oUvGmC26A",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-3aizmky-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-3aizmky-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-3aizmky-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-3aizmky-content-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-3aizmky-content-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-7-3aizmky-content-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-g7QsJlmRBQGvJggXHqYls6ipIx0H-zm8ue_B3HhJ-1c",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-mY4oSxE-KG9lZmwAoguWt5vTIFtUurVj_lEbYUhlgZI",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-tg7gqeniLXECMSd2Gs0uyKq-wKXZp-YWULwQ3dKNt4E",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-z6PLWQx5NhHNdCvRjZVUgR3buYy1r3_uvlfbEZ_0QL4",
"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-goykf50-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-goykf50-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-goykf50-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-goykf50-content-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-goykf50-content-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-goykf50-content-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-9jO3U_WPQWm9PTd1MTeeKYq0CqAYVnYryXDn3CzsWpE",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-OijKfp0KtFwDR5cZXsWFYhvHw81EenLGo8cV9j2iwFQ",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-_HZLcB8OtnBR3VQ4bjt8E1BYzCAXixm5M09D4VaVH3M",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-396bvah-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-396bvah-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-396bvah-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-396bvah-content-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-396bvah-content-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-8-396bvah-content-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-N_hYI9rj_do8VOQ0RHfB0TiK2nwewbnIsRye-BXMWWo",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-1fefOc3ypw42Tl74gP-tLO-_KmsJzR5D99H1kUCnFi4",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-rBJbgzwAPYI32aw9UBJlz-vUnlSacVhJPNxv2ANg3kQ",
"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",
@@ -1583,15 +1583,15 @@
"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-0hei8z6-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-0hei8z6-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-0hei8z6-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-0hei8z6-content-encoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-0hei8z6-content-decoded",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-0hei8z6-content-disclosures",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-gLPleUxdTtZ-vvmYMb1KnrMeNxdWOoUWzExHZnhlQ0k",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-pXgCWNvLuTyX7_t0QOhsFNrTlSF7XvT2E5NllSe6xLk",
- "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-uWsNGl8Ro-95ImGbHmBsOF-OCChus66G0ddCZnDq4nA",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-n2a4dgk-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-n2a4dgk-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-n2a4dgk-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-n2a4dgk-content-encoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-n2a4dgk-content-decoded",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-9-n2a4dgk-content-disclosures",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-23VG3HSs8doKOoOmavIp0l9VUm1AQZAmViU-LbEYgPc",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-SByixDW50A09wNo7LGgelGCf_2DRD74wLWkmxApwNxM",
+ "https://www.w3.org/TR/vc-data-model-2.0/#sd-jwt-claim-6mFwwkwXc1JBonXxWW3AuWMCQ9JgRtfBQdvguf1lfYs",
"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-86",
"https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-86",
diff --git a/tr/ids/webdriver-bidi.json b/tr/ids/webdriver-bidi.json
index 13c28f0a6d11..175ff336581d 100644
--- a/tr/ids/webdriver-bidi.json
+++ b/tr/ids/webdriver-bidi.json
@@ -75,7 +75,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-module-module-name%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-extension-modules",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-name%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-event-names",
"https://www.w3.org/TR/webdriver-bidi/#commands",
"https://www.w3.org/TR/webdriver-bidi/#command",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A1",
@@ -139,53 +139,61 @@
"https://www.w3.org/TR/webdriver-bidi/#event-remote-end-subscribe-steps",
"https://www.w3.org/TR/webdriver-bidi/#event-subscribe-priority",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#event-global-event-set",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#event-in-the-default-event-set",
+ "https://www.w3.org/TR/webdriver-bidi/#event-subscriptions",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#event-navigable-event-map",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable",
+ "https://www.w3.org/TR/webdriver-bidi/#event-known-subscription-ids",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-subscription-id",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#event-subscription",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct",
+ "https://www.w3.org/TR/webdriver-bidi/#subscription-subscription-id",
+ "https://www.w3.org/TR/webdriver-bidi/#subscription-event-names",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#event-enabled-navigables",
+ "https://www.w3.org/TR/webdriver-bidi/#subscription-top-level-traversable-ids",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-navigable-event-map",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscription",
+ "https://www.w3.org/TR/webdriver-bidi/#subscription-global",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-top-level-traversable-ids",
"https://www.w3.org/TR/webdriver-bidi/#set-of-sessions-for-which-an-event-is-enabled",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-active-bidi-sessions",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled",
"https://www.w3.org/TR/webdriver-bidi/#event-is-enabled",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-shared-workers",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-navigable-event-map%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-top-level-traversables",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-event-names%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-global-event-set",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-continue",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-global",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-navigables-by-ids",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-top-level-traversable-ids%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-intersection",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty",
+ "https://www.w3.org/TR/webdriver-bidi/#set-of-top-level-traversables-for-which-an-event-is-enabled",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-event-names%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#obtain-a-set-of-event-names",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-module-module-name%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-continue%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-global%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-break",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-navigables-by-ids%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-top-level-traversable-ids%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#transport",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-command%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#websocket-listener",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener",
"https://www.w3.org/TR/webdriver-bidi/#listener-host",
@@ -198,15 +206,15 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-port",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-secure-flag",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#active-listeners",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#websocket-connections-not-associated-with-a-session",
"https://www.w3.org/TR/webdriver-bidi/#websocket-connection",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#session-websocket-connections",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A4",
@@ -262,7 +270,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-list-of-websocket-resources%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-construct-a-websocket-resource-name%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-list-of-websocket-resources%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-active-listeners%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-intermediary-nodes",
@@ -273,7 +281,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-section-5.2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-assert",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-scalar-value-string",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-section-8.1",
@@ -285,40 +293,40 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connections-not-associated-with-a-session%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-parse-a-json-string-to-an-infra-value",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-name%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-static-command",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-session-id",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-parameters%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-command-result-type%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-name%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-id%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-session-websocket-connections%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connections-not-associated-with-a-session%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-infra-value-to-json-bytes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-all-command-names",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unknown-command",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#get-related-navigables",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-settings-object",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-window",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A0",
@@ -330,17 +338,29 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-WorkerGlobalScope-owner-set",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#get-navigables-by-ids",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#get-top-level-traversables",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top",
"https://www.w3.org/TR/webdriver-bidi/#emit-an-event",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-assert%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-size",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-infra-value-to-json-bytes%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-list-iterate",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-session-websocket-connections%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#send-an-error-response",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-infra-value-to-json-bytes%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A1",
@@ -383,16 +403,16 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxproxy",
"https://www.w3.org/TR/webdriver-bidi/#get-or-create-a-sandbox-realm",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-window",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sandbox-map",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sandbox-map%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sandbox-map%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-create-a-sandbox-realm",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success",
"https://www.w3.org/TR/webdriver-bidi/#create-a-sandbox-realm",
"https://www.w3.org/TR/webdriver-bidi/#issue-cd353b2b",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxwindowproxy%E2%91%A0",
@@ -415,7 +435,7 @@
"https://www.w3.org/TR/webdriver-bidi/#issue-5dc87d67",
"https://www.w3.org/TR/webdriver-bidi/#user-contexts",
"https://www.w3.org/TR/webdriver-bidi/#user-context",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition",
@@ -426,17 +446,17 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#user-context-user-context-id",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#associated-user-context",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#issue-155d94b0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#issue-155d94b0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-child-navigable",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A2",
@@ -444,16 +464,16 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#empty-user-context",
"https://www.w3.org/TR/webdriver-bidi/#default-user-context",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id",
"https://www.w3.org/TR/webdriver-bidi/#set-of-user-contexts",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-user-context",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A1",
@@ -477,12 +497,12 @@
"https://www.w3.org/TR/webdriver-bidi/#end-the-session",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-webdriver-active-flag",
"https://www.w3.org/TR/webdriver-bidi/#cleanup-the-session",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-close-the-websocket-connections",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-cleanup-remote-end-state",
"https://www.w3.org/TR/webdriver-bidi/#cleanup-remote-end-state",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clear",
@@ -491,34 +511,6 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clear%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#update-the-event-map",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-clone",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-global-event-set%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-navigable-event-map%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-clone%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-obtain-a-set-of-event-names",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-enabled-navigables",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-global-event-set%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-navigable-event-map%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#module-session-types",
"https://www.w3.org/TR/webdriver-bidi/#type-session-CapabilitiesRequest",
"https://www.w3.org/TR/webdriver-bidi/#type-session-CapabilityRequest",
@@ -527,13 +519,13 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-additional-webdriver-capability",
"https://www.w3.org/TR/webdriver-bidi/#websocket-url",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-additional-capability-deserialization-algorithm",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-matched-capability-serialization-algorithm",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#type-session-ProxyConfiguration",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A0",
@@ -543,43 +535,46 @@
"https://www.w3.org/TR/webdriver-bidi/#type-session-UserPromptHandlerType",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#type-session-Subscription",
"https://www.w3.org/TR/webdriver-bidi/#type-session-SubscriptionRequest",
+ "https://www.w3.org/TR/webdriver-bidi/#type-session-UnsubscribeByIDRequest",
+ "https://www.w3.org/TR/webdriver-bidi/#type-session-UnsubscribeByAttributesRequest",
"https://www.w3.org/TR/webdriver-bidi/#module-session-commands",
"https://www.w3.org/TR/webdriver-bidi/#command-session-status",
"https://www.w3.org/TR/webdriver-bidi/#commands-sessionstatus",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-static-command%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-readiness-state",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-readiness-state%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#command-session-new",
"https://www.w3.org/TR/webdriver-bidi/#commands-sessionnew",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-static-command%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-not-created",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-not-created%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-capabilities-processing",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-convert-a-json-derived-javascript-value-to-an-infra-value",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-create-a-session",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-flag%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-id%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#command-session-end",
"https://www.w3.org/TR/webdriver-bidi/#commands-sessionend",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-end-the-session",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#issue-c10fe58d",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-cleanup-the-session",
@@ -587,27 +582,106 @@
"https://www.w3.org/TR/webdriver-bidi/#commands-sessionsubscribe",
"https://www.w3.org/TR/webdriver-bidi/#issue-6c21351e",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-event-map",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-create",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-create%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-navigables-by-ids%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-top-level-traversables%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscription%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-subscription-id%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-event-names%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-top-level-traversable-ids%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-top-level-traversables-for-which-an-event-is-enabled",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-difference",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-subscription-id%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-known-subscription-ids",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-sort-in-ascending-order",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscribe-priority",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-global%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#command-session-unsubscribe",
"https://www.w3.org/TR/webdriver-bidi/#commands-sessionunsubscribe",
"https://www.w3.org/TR/webdriver-bidi/#issue-07250e04",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-event-map%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-create%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-create%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-navigables-by-ids%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-top-level-traversables%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-intersection%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-event-names%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-event-names%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-event-names%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-global%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-event-names%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-clone",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-top-level-traversable-ids%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-difference%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscription%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-subscription-id%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-subscription-id%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-event-names%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-top-level-traversable-ids%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-create%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-difference%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-known-subscription-ids%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-subscription-id%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-known-subscription-ids%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-difference%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-known-subscription-ids%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#module-browser",
"https://www.w3.org/TR/webdriver-bidi/#modules-browser",
"https://www.w3.org/TR/webdriver-bidi/#module-browser-definition",
@@ -652,17 +726,17 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#restore-client-window-is-supported",
"https://www.w3.org/TR/webdriver-bidi/#get-the-client-window-state",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-visibility-state%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-fullscreen-element",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-height%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A2",
@@ -671,40 +745,40 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-web-exposed-screen-area%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#set-the-client-window-state",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-client-window-state",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-fullscreen-is-supported",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-restore-client-window-is-supported",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-maximize-client-window-is-supported",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-minimize-client-window-is-supported",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-client-window",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-fully-exit-fullscreen",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-visibility-state%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-fullscreen-an-element",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ref-for-dom-document-documentelement",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-break",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-break%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-restore-the-client-window",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-maximize-the-client-window",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-minimize-the-client-window",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#module-browser-types",
"https://www.w3.org/TR/webdriver-bidi/#type-browser-ClientWindow",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A7",
@@ -716,7 +790,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-system-focus",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-x-coordinate%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-y-coordinate%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A3",
@@ -731,9 +805,9 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-end-the-session%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-unable-to-close-browser",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-in-parallel%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A3",
@@ -741,102 +815,102 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-end-the-session%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-cleanup-the-session%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-in-parallel%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-cleanup-the-session%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-close-a-top-level-traversable",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-prompt-to-unload-a-document",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#command-browser-createUserContext",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsercreateusercontext",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#command-browser-getClientWindows",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsergetclientwindows",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-id%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-client-window-info",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#command-browser-getUserContexts",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsergetusercontexts",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#command-browser-removeUserContext",
"https://www.w3.org/TR/webdriver-bidi/#commands-browserremoveusercontext",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-user-context",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-user-context",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-user-context",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-close-a-top-level-traversable%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-prompt-to-unload-a-document%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#command-browser-setClientWindowState",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsersetclientwindowstate",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-id%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-client-window%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-the-client-window-state",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-x-coordinate%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-y-coordinate%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-client-window-info%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#module-browsingContext",
"https://www.w3.org/TR/webdriver-bidi/#modules-browsingcontext",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-navigation-status",
"https://www.w3.org/TR/webdriver-bidi/#navigation-status-id",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigation-id",
@@ -848,55 +922,55 @@
"https://www.w3.org/TR/webdriver-bidi/#module-browsingContext-definition",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#device-pixel-ratio-overrides",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#module-browsingcontext-types",
"https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Browsingcontext",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#navigable-id",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-window-handles",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-window-handles%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#associated-storage-partition",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#original-opener",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#get-a-navigable",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-frame",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Info",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#get-the-child-navigables",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-child-navigable%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#get-the-navigable-info",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-parent%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-url",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-child-navigables",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable-info",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-original-opener",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-original-opener%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-id%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A1%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#await-a-navigation",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigate",
@@ -906,23 +980,23 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-history-handling-behavior",
"https://www.w3.org/TR/webdriver-bidi/#issue-40db6a3c",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unknown-error",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unknown-error%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#issue-ceba1469",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Locator",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A7",
@@ -932,9 +1006,9 @@
"https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-NavigationInfo",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#get-the-navigation-info",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-time-values-and-time-range",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-ReadinessState",
"https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-UserPromptType",
@@ -945,25 +1019,25 @@
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextactivate",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-activate-a-navigable",
"https://www.w3.org/TR/webdriver-bidi/#activate-a-navigable",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-system-focus%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-focused-area-of-the-document",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-captureScreenshot",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextcapturescreenshot",
"https://www.w3.org/TR/webdriver-bidi/#normalize-rect",
@@ -1029,7 +1103,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-visualviewport-pagetop",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ref-for-dom-document-documentelement%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-domrectreadonly%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A0%E2%93%AA",
@@ -1038,31 +1112,31 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-element-scrollheight",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-element-scrollwidth",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-run-the-animation-frame-callbacks",
"https://www.w3.org/TR/webdriver-bidi/#issue-b2b83ca0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-origin-rectangle",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-reference",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-element",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-element",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-node-document",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-element%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-origin-rectangle%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-element-get-the-bounding-box",
@@ -1077,55 +1151,55 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-intersection",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unable-to-capture-screen",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-render-document-to-a-canvas",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-encode-a-canvas-as-base64",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-close",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextclose",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-close-a-top-level-traversable%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-close-a-top-level-traversable%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-prompt-to-unload-a-document%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#issue-04e2b4be",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-create",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextcreate",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-user-context%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-user-context%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-user-context%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-creating-a-new-top-level-traversable",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A0%E2%93%AA",
@@ -1140,205 +1214,205 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-activate-a-navigable%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-focusing-steps",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-getTree",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextgettree",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable-info%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-handleUserPrompt",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontexthandleuserprompt",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-alert",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-confirm",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-prompt",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-prompt-to-unload-a-document%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-alert",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-locateNodes",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextlocatenodes",
"https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-css",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-parse-a-selector",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-selector",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-match-a-selector-against-a-tree",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-root",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-scoping-root",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-xpath",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-xpathevaluatorbase-evaluate",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-xpathresult-ordered_node_snapshot_type",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-syntaxerror",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-idl-DOMException",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-selector%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-selector%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unknown-error%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-xpathresult-snapshotitem",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-inner-text",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-selector%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-G34078",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-G34944",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-document%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-documentfragment",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-list-extend",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-inner-text",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-htmlelement",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-continue",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-continue%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-innertext",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-this",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-G34078%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-G34944%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-code-point-substring",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-string-is",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-inner-text%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-list-extend%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#collect-nodes-using-accessibility-attributes",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-roleMappingComputedRole",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-string-is%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-accessible-name",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-string-is%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-break%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-break%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-collect-nodes-using-accessibility-attributes",
"https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-accessibility-attributes",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-selector%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-collect-nodes-using-accessibility-attributes%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-navigable",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ref-for-dom-document-documentelement%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-shared-reference",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-css",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-xpath",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-inner-text%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-accessibility-attributes",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-navigate",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextnavigate",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-script-base-url",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-script-base-url%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-await-a-navigation",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-print",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextprint",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-absolute-lengths",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-run-the-animation-frame-callbacks%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#issue-b2b83ca0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-media-type",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-parse-a-page-range",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-section-4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-reload",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextreload",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-url%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request%E2%91%A1",
@@ -1346,23 +1420,23 @@
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-setViewport",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextsetviewport",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-layout-viewport",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-layout-viewport",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-layout-viewport%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-layout-viewport%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-layout-viewport%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-descendant-navigables",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-select-an-image-source-from-a-source-set",
@@ -1371,32 +1445,32 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-device-pixel-ratio-overrides",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-select-an-image-source-from-a-source-set%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resolution%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-device-pixel-ratio-overrides%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-evaluate-media-queries-and-report-changes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-traverseHistory",
"https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontexttraversehistory",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-queue-a-task",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-tn-session-history-traversal-queue",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-getting-all-used-history-steps",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-tn-current-session-history-step",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-history-entry",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-traverse-the-history-by-a-delta",
"https://www.w3.org/TR/webdriver-bidi/#issue-0ad20a58",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-page-show",
"https://www.w3.org/TR/webdriver-bidi/#issue-df07ef00",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0",
@@ -1409,13 +1483,13 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-recursively-emit-context-created-events",
"https://www.w3.org/TR/webdriver-bidi/#emit-a-context-created-event",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable-info%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigable-created",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-original-opener%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-a-context-created-event%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps%E2%91%A1",
@@ -1426,19 +1500,31 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigable-destroyed",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable-info%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-parent%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-top-level-traversable-ids%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-top-level-traversable-ids%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-subscription-top-level-traversable-ids%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscriptions%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#issue-4e122e13",
"https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationStarted",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-started",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1",
@@ -1446,8 +1532,8 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-fragment-navigated",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A2",
@@ -1458,10 +1544,10 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-bc",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-url%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-bc%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A3",
@@ -1469,8 +1555,8 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-dom-content-loaded",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A4",
@@ -1478,8 +1564,8 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-load-complete",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A5",
@@ -1487,8 +1573,8 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-download-started",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A6",
@@ -1496,8 +1582,8 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-aborted",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A7",
@@ -1505,8 +1591,8 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-failed",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A8",
@@ -1514,22 +1600,22 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-user-prompt-closed",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-userPromptOpened",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-user-prompt-opened",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-the-prompt-handler",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-handler",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#module-network",
@@ -1537,67 +1623,67 @@
"https://www.w3.org/TR/webdriver-bidi/#module-network-definition",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#before-request-sent-map",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#default-cache-behavior",
+ "https://www.w3.org/TR/webdriver-bidi/#before-request-sent-map",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#default-cache-behavior",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#navigable-cache-behavior-map",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#network-intercepts",
"https://www.w3.org/TR/webdriver-bidi/#network-intercept",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#intercept-map",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#blocked-request-map",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#get-the-network-intercepts",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-intercept-map",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-url",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-match-url-pattern",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#update-the-response",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status-message",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-header-list",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-header",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-fields.names",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-header-value",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-header-value",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-header-list%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-lowercase",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-set-cookie-header",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#issue-2a7f19c6",
"https://www.w3.org/TR/webdriver-bidi/#module-network-types",
"https://www.w3.org/TR/webdriver-bidi/#type-network-AuthChallenge",
@@ -1605,14 +1691,14 @@
"https://www.w3.org/TR/webdriver-bidi/#issue-f2aa8157",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#issue-fb11fbae",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-case-insensitive",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-tuple",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-decode",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#type-network-AuthCredentials",
"https://www.w3.org/TR/webdriver-bidi/#type-network-BaseParameters",
"https://www.w3.org/TR/webdriver-bidi/#issue-f8347230",
@@ -1622,17 +1708,17 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-window",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-window%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-window%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-settings-object-global",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-network-intercepts",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-redirect-count",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-time-values-and-time-range%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#type-network-BytesValue",
"https://www.w3.org/TR/webdriver-bidi/#deserialize-protocol-bytes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence",
@@ -1641,9 +1727,9 @@
"https://www.w3.org/TR/webdriver-bidi/#serialize-protocol-bytes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-decode-without-bom-or-fail",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-forgiving-base64-encode%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#type-network-Cookie",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A2",
@@ -1692,7 +1778,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-final-network-response-start-time",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-end-time",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#type-network-Header",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A4",
@@ -1711,7 +1797,7 @@
"https://www.w3.org/TR/webdriver-bidi/#get-the-initiator",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-request-initiator-type",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-current-stack-trace",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#type-network-Intercept",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A6",
@@ -1773,7 +1859,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-encoded-body-size",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-response-content-info",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-extract-challenges",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#type-network-SetCookieHeader",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#serialize-an-integer",
@@ -1784,89 +1870,89 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-integer",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#type-network-UrlPattern",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#unescape-url-pattern",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#parse-url-pattern",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#parse-url-pattern",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-alphanumeric",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-lowercase",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-is-special",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-digit",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-digit",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-starts-with",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-starts-with",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-starts-with%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-starts-with%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-host",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A1",
@@ -1881,10 +1967,10 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-port%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-url-path-serializer",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-path",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-query",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-query%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#match-url-pattern",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A4",
@@ -1906,132 +1992,132 @@
"https://www.w3.org/TR/webdriver-bidi/#commands-networkaddintercept",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A3%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-intercept-map%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-parse-url-pattern",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#command-network-continueRequest",
"https://www.w3.org/TR/webdriver-bidi/#commands-networkcontinuerequest",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#issue-674c4ab4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-script-base-url%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#issue-674c4ab4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-url%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-script-base-url%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-method.overview",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-url%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-method.overview",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-method%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-header-list%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-header%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-fields.names%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-header-value%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-header-value%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-header-list%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-cookie-header",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-header-list%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-lowercase%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-header%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-header-list%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-body%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#command-network-continueResponse",
"https://www.w3.org/TR/webdriver-bidi/#commands-networkcontinueresponse",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-response",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#command-network-continueWithAuth",
"https://www.w3.org/TR/webdriver-bidi/#commands-networkcontinuewithauth",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#command-network-failRequest",
"https://www.w3.org/TR/webdriver-bidi/#commands-networkfailrequest",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-network-error",
"https://www.w3.org/TR/webdriver-bidi/#issue-6015124b",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#command-network-provideResponse",
"https://www.w3.org/TR/webdriver-bidi/#commands-networkprovideresponse",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-response%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-body",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence-as-a-body",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#command-network-removeIntercept",
"https://www.w3.org/TR/webdriver-bidi/#commands-networkremoveintercept",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-intercept-map%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-intercept",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-null-value",
"https://www.w3.org/TR/webdriver-bidi/#command-network-setCacheBehavior",
"https://www.w3.org/TR/webdriver-bidi/#commands-networksetcachebehavior",
@@ -2039,48 +2125,48 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-window%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-window%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-window%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-settings-object-global%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-browsing-context",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-cache-behavior%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#navigable-cache-behavior",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-cache-behavior%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-cache-behavior%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clear%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A3%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-browsing-context%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-browsing-context%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-browsing-context%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-cache-behavior%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#module-network-event",
"https://www.w3.org/TR/webdriver-bidi/#event-network-authRequired",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A2",
@@ -2094,12 +2180,12 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-process-a-network-event",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-response-data",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#event-network-beforeSendRequest",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-before-request-sent",
@@ -2119,7 +2205,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#event-network-fetchError",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-fetch-error",
@@ -2162,7 +2248,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#module-script",
"https://www.w3.org/TR/webdriver-bidi/#modules-script",
"https://www.w3.org/TR/webdriver-bidi/#module-script-definition",
@@ -2173,19 +2259,19 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#preload-script-map",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-struct-item",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#run-webdriver-bidi-preload-scripts",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-active-bidi-sessions%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script-map",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-getting-the-values%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-or-create-a-sandbox-realm",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A1",
@@ -2209,12 +2295,12 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#scriptchannel",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#type-script-ChannelValue",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#type-script-ChannelValue",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#create-a-channel",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-current-realm",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-a-script-message",
@@ -2227,18 +2313,18 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#get-exception-details",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-stack-trace-for-an-exception",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#type-script-Handle",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#handle-object-map",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#type-script-InternalId",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A6",
@@ -2249,61 +2335,61 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-scriptremotereference",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-scriptchannel",
"https://www.w3.org/TR/webdriver-bidi/#deserialize-key-value-list",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#deserialize-value-list",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#deserialize-local-value",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-scriptremotereference%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-reference%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-scriptprimitiveprotocolvalue",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-primitive-protocol-value",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-create-a-channel%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-value-list",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-date-time-string-format",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-construct",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-date-constructor",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-key-value-list",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-map-iterable",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-key-value-list%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object.fromentries",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-regexp-pattern-flags",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-value-list%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-set-objects",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#type-script-PreloadScript",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A7",
@@ -2314,18 +2400,18 @@
"https://www.w3.org/TR/webdriver-bidi/#realm-id",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-object-map",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#get-a-realm",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-frame%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#issue-89e6b783",
"https://www.w3.org/TR/webdriver-bidi/#type-script-PrimitiveProtocolValue",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%93%AA",
@@ -2333,49 +2419,49 @@
"https://www.w3.org/TR/webdriver-bidi/#scriptprimitiveprotocolvalue",
"https://www.w3.org/TR/webdriver-bidi/#serialize-primitive-protocol-value",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#issue-d33a79cf",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-tostring",
"https://www.w3.org/TR/webdriver-bidi/#deserialize-primitive-protocol-value",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-undefined-value%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-null-value%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-stringtonumber",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-stringtobigint",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-stringtobigint",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#type-script-RealmInfo",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#get-the-navigable",
@@ -2387,7 +2473,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#get-the-workers-owners",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-workerglobalscope%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-WorkerGlobalScope-owner-set%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-relevant-settings-object",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-realm-info",
@@ -2400,30 +2486,30 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxwindowproxy%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-sandbox-name",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dedicatedworkerglobalscope",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-workers-owners",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sharedworkerglobalscope",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serviceworkerglobalscope",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-workerglobalscope%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-paintworkletglobalscope",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-AudioWorkletGlobalScope",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-workletglobalscope",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-workerglobalscope%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-workletglobalscope%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#type-script-RealmType",
@@ -2441,19 +2527,19 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-object-reference",
"https://www.w3.org/TR/webdriver-bidi/#deserialize-remote-object-reference",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-object-map%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-handle",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#deserialize-shared-reference",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-node",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-a-node",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-node%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A3",
@@ -2461,13 +2547,13 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-origin",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-same-origin-domain",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-settings-object-origin",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-node%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-realm-global%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxwindowproxy%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxproxy%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A8",
@@ -2488,7 +2574,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-primitive-protocol-value",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-for-an-object",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-isarray",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-array-like",
@@ -2497,53 +2583,53 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-tostring%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-call%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-date.prototype.toisostring",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-mapping",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createmapiterator",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-list",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createsetiterator",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ispromise",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-platform-object",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nodelist",
@@ -2554,26 +2640,26 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-platform-object%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-node%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-shared-id-for-a-node",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-attr",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-shadowroot",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-shadowroot-mode",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clone",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-element-attribute",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-attribute-qualified-name",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-attribute-value",
@@ -2585,27 +2671,27 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-windowproxy",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-platform-object%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-iscallable%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-assert%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-mapping%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-enumerableownpropertynames",
"https://www.w3.org/TR/webdriver-bidi/#issue-4a5a93fc",
"https://www.w3.org/TR/webdriver-bidi/#serialize-an-array-like",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-list%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayiterator",
@@ -2619,7 +2705,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-getiterator%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-isarray%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createlistfromarraylike",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clone%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A5",
@@ -2648,11 +2734,11 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-stackframe-script-url",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-stackframe-function",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-stackframe-line-number",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-stackframe-column-number",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#current-stack-trace",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-construct-a-stack-trace",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-list-of-stack-frames",
@@ -2671,58 +2757,58 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#type-script-Target",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#get-a-realm-from-a-navigable",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-or-create-a-sandbox-realm%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#issue-89e6b783%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#get-a-realm-from-a-target",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-navigable%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#issue-89e6b783%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#module-script-commands",
"https://www.w3.org/TR/webdriver-bidi/#command-script-addPreloadScript",
"https://www.w3.org/TR/webdriver-bidi/#commands-scriptaddpreloadscript",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script-map%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#command-script-disown",
"https://www.w3.org/TR/webdriver-bidi/#commands-scriptdisown",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-target",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-object-map%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#command-script-callFunction",
"https://www.w3.org/TR/webdriver-bidi/#commands-scriptcallfunction",
"https://www.w3.org/TR/webdriver-bidi/#issue-6eade172",
"https://www.w3.org/TR/webdriver-bidi/#deserialize-arguments",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#evaluate-function-body",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-string-concatenate",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-creating-a-classic-script",
@@ -2730,26 +2816,26 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-runtime-semantics-scriptevaluation",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-clean-up-after-running-script%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-target%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-arguments",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-api-base-url%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-script-fetch-options%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-evaluate-function-body%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-exception-details",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-iscallable%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-activation-notification",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-prepare-to-run-script%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-call%E2%91%A1",
@@ -2757,19 +2843,19 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-await",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-clean-up-after-running-script%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-exception-details%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#command-script-evaluate",
"https://www.w3.org/TR/webdriver-bidi/#commands-scriptevaluate",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-target%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-script-fetch-options%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-api-base-url%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-creating-a-classic-script%E2%91%A0",
@@ -2780,32 +2866,32 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-await%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-clean-up-after-running-script%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-exception-details%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#command-script-getRealms",
"https://www.w3.org/TR/webdriver-bidi/#commands-scriptgetrealms",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-environment-execution-ready-flag",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-realm-global%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-workerglobalscope%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-WorkerGlobalScope-owner-set%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-realm-info%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-continue%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-continue%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#issue-ac9113ee",
"https://www.w3.org/TR/webdriver-bidi/#issue-b6525c5d",
"https://www.w3.org/TR/webdriver-bidi/#command-script-removePreloadScript",
@@ -2813,11 +2899,11 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script-map%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-script",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#module-script-events",
"https://www.w3.org/TR/webdriver-bidi/#event-script-message",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A7",
@@ -2826,14 +2912,14 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A0%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-source",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#event-script-realmCreated",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A8",
@@ -2843,14 +2929,14 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-realm-info%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscribe-priority%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-environment-execution-ready-flag%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A3%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document%E2%91%A1",
@@ -2859,20 +2945,20 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-realm-info%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#issue-74a40be3",
"https://www.w3.org/TR/webdriver-bidi/#event-script-realmDestroyed",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-unloading-document-cleanup-steps",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A3%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-worklet-global-scopes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-realm",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%91%A1",
@@ -2880,8 +2966,8 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-worker-event-loop-2",
@@ -2891,14 +2977,14 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object's-realm",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#module-storage",
"https://www.w3.org/TR/webdriver-bidi/#modules-storage",
"https://www.w3.org/TR/webdriver-bidi/#storage-partition",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-something",
"https://www.w3.org/TR/webdriver-bidi/#storage-partition-key",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#module-storage-definition",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A8",
@@ -2908,55 +2994,55 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition-key",
"https://www.w3.org/TR/webdriver-bidi/#table-of-standard-storage-partition-key-attributes",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-extension-storage-partition-key-attributes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-serialisation-of-an-origin%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#extension-storage-partition-key-attributes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#extension-storage-partition-key-attributes",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#default-values-for-storage-partition-key-attributes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-table-of-standard-storage-partition-key-attributes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition-key%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-extension-storage-partition-key-attributes%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#required-partition-key-attributes",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-table-of-standard-storage-partition-key-attributes%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition-key%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-extension-storage-partition-key-attributes%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-values-for-storage-partition-key-attributes",
"https://www.w3.org/TR/webdriver-bidi/#deserialize-filter",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-table-for-cookie-conversion",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-set%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#expand-a-storage-partition-spec",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition-key%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-storage-partition",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-default-values-for-storage-partition-key-attributes%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-set%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-required-partition-key-attributes",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-map-set%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-underspecified-storage-partition",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#get-the-cookie-store",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-model%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-storage-partition",
"https://www.w3.org/TR/webdriver-bidi/#match-cookie",
"https://www.w3.org/TR/webdriver-bidi/#get-matching-cookies",
@@ -2968,22 +3054,22 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-something%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-match-cookie%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-expand-a-storage-partition-spec",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-cookie-store",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-matching-cookies",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-cookie%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#command-storage-setCookie",
"https://www.w3.org/TR/webdriver-bidi/#commands-storagesetcookie",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-something%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-expand-a-storage-partition-spec%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-cookie-store%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-creating-a-cookie",
@@ -2996,34 +3082,34 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-http-only",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-expiry-time",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-same-site",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-unable-to-set-cookie",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#command-storage-deleteCookies",
"https://www.w3.org/TR/webdriver-bidi/#commands-storagedeletecookies",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-something%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-match-cookie%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-expand-a-storage-partition-spec%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-cookie-store%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-matching-cookies%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#module-log",
"https://www.w3.org/TR/webdriver-bidi/#modules-log",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#log-event-buffer",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#buffer-a-log-event",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-log-event-buffer",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#issue-938098d0",
"https://www.w3.org/TR/webdriver-bidi/#module-log-definition",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A5",
@@ -3043,14 +3129,14 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-tostring%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-current-realm%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-source%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-current-realm%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-current-stack-trace%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-current-settings-object",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled%E2%91%A2",
@@ -3061,7 +3147,7 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-stack-trace-for-an-exception%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-source%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-current-realm%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-active-bidi-sessions%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled%E2%91%A3",
@@ -3072,8 +3158,8 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscribe-priority%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-log-event-buffer%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A8",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-log-event-buffer%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1%E2%91%A3",
@@ -3087,27 +3173,27 @@
"https://www.w3.org/TR/webdriver-bidi/#type-input-origin",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#is-inputelementorigin",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#get-element-from-inputelementorigin-steps",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A0%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-reference%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-element%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#module-input-commands",
"https://www.w3.org/TR/webdriver-bidi/#command-input-performActions",
"https://www.w3.org/TR/webdriver-bidi/#commands-inputperformactions",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-actions",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-the-input-state",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-actions-options",
@@ -3116,14 +3202,14 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-element-origin",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-element-from-inputelementorigin-steps",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-extract-an-action-sequence",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-dispatch-actions",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#command-input-releaseActions",
"https://www.w3.org/TR/webdriver-bidi/#commands-inputreleaseactions",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-the-input-state%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-actions-options%E2%91%A0",
@@ -3132,51 +3218,51 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-element-origin%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-get-element-from-inputelementorigin-steps%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-input-cancel-list",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-dispatch-tick-actions",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-reset-the-input-state",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#command-input-setFiles",
"https://www.w3.org/TR/webdriver-bidi/#commands-inputsetfiles",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A3",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A1%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-reference%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-element%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-htmlinputelement",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-attr-input-type",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-file-upload-state-(type%3Dfile)",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-fe-disabled",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-unable-to-set-file-input",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%93%AA",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-attr-input-multiple",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-unable-to-set-file-input%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-input-type-file-selected",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-intersection",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-intersection%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A6",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-queue-an-element-task",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-user-interaction-task-source",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-file-selection",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-input-type-file-selected%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A0%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-input-type-file-selected%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#module-webExtension",
"https://www.w3.org/TR/webdriver-bidi/#modules-webextension",
"https://www.w3.org/TR/webdriver-bidi/#module-webExtension-definition",
@@ -3184,18 +3270,18 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#module-webExtension-types",
"https://www.w3.org/TR/webdriver-bidi/#type-webExtension-Extension",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#module-webExtension-commands",
"https://www.w3.org/TR/webdriver-bidi/#command-webExtension-install",
"https://www.w3.org/TR/webdriver-bidi/#commands-webextensioninstall",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#extract-a-zip-archive",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-invalid-web-extension",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-directory",
"https://www.w3.org/TR/webdriver-bidi/#expand-a-web-extension-data-spec",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA%E2%93%AA",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A0%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-directory-locator",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-locator-path",
@@ -3206,37 +3292,37 @@
"https://www.w3.org/TR/webdriver-bidi/#ref-for-locator-root%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-locating-an-entry%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-file-entry-binary-data",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-extract-a-zip-archive",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-forgiving-base64-decode%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A4",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-extract-a-zip-archive%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA%E2%93%AA",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A0%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-expand-a-web-extension-data-spec",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA%E2%91%A0",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A3",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-invalid-web-extension%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA%E2%91%A1",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-invalid-web-extension%E2%91%A0",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-invalid-web-extension%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A1",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#command-webExtension-uninstall",
"https://www.w3.org/TR/webdriver-bidi/#commands-webextensionuninstall",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A5",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A5",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A6",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA%E2%91%A2",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A5",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-web-extension",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A8",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA%E2%91%A3",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A6",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-web-extension",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A7",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA%E2%91%A4",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unknown-error%E2%91%A2",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A7",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A4",
"https://www.w3.org/TR/webdriver-bidi/#patches",
"https://www.w3.org/TR/webdriver-bidi/#patches-html",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-report-the-error",
@@ -3249,7 +3335,7 @@
"https://www.w3.org/TR/webdriver-bidi/#patchs-determine-the-device-pixel-ratio",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-determine-the-device-pixel-ratio%E2%91%A0",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-device-pixel-ratio-overrides%E2%91%A1",
- "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A8",
+ "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A7",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-device-pixel-ratio-overrides%E2%91%A2",
"https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable%E2%91%A3",
@@ -3525,6 +3611,8 @@
"https://www.w3.org/TR/webdriver-bidi/#a326add7",
"https://www.w3.org/TR/webdriver-bidi/#f937b7b6",
"https://www.w3.org/TR/webdriver-bidi/#b4fecc2d",
+ "https://www.w3.org/TR/webdriver-bidi/#de04a344",
+ "https://www.w3.org/TR/webdriver-bidi/#a1797ffb",
"https://www.w3.org/TR/webdriver-bidi/#03afaf9c",
"https://www.w3.org/TR/webdriver-bidi/#1243a891",
"https://www.w3.org/TR/webdriver-bidi/#d8f8bd6e",
diff --git a/tr/index.json b/tr/index.json
index 7fe959189a20..bc744ea88697 100644
--- a/tr/index.json
+++ b/tr/index.json
@@ -1,7 +1,7 @@
{
"type": "crawl",
"title": "Reffy crawl",
- "date": "2024-12-20T01:35:29.995Z",
+ "date": "2024-12-21T01:51:03.181Z",
"options": {
"fallback": "tr/index.json",
"output": "report",
@@ -27,7 +27,6 @@
"css-backgrounds-4",
"css-borders-4",
"css-color-6",
- "css-color-hdr-1",
"css-conditional-values-1",
"css-display-4",
"css-env-1",
@@ -39,7 +38,6 @@
"css-link-params-1",
"css-mixins-1",
"css-multicol-2",
- "css-overflow-5",
"css-page-4",
"css-position-4",
"css-shapes-2",
@@ -353,6 +351,7 @@
"css-color-4",
"css-color-5",
"css-color-adjust-1",
+ "css-color-hdr-1",
"css-conditional-3",
"css-conditional-4",
"css-conditional-5",
@@ -387,6 +386,7 @@
"css-nesting-1",
"css-overflow-3",
"css-overflow-4",
+ "css-overflow-5",
"css-overscroll-1",
"css-page-3",
"css-page-floats-3",
@@ -674,10 +674,10 @@
]
},
"stats": {
- "crawled": 338,
+ "crawled": 340,
"errors": 0
},
- "crawler": "reffy-18.1.1",
+ "crawler": "reffy-18.1.2",
"results": [
{
"url": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf",
@@ -723,7 +723,7 @@
"https://aomediacodec.github.io/av1-spec/"
],
"crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf",
- "date": "20 December 2024",
+ "date": "21 December 2024",
"links": "links/av1-spec.json",
"cddl": []
},
@@ -3471,6 +3471,72 @@
"ids": "ids/css-color-adjust-1.json",
"cddl": []
},
+ {
+ "url": "https://www.w3.org/TR/css-color-hdr-1/",
+ "seriesComposition": "full",
+ "shortname": "css-color-hdr-1",
+ "series": {
+ "shortname": "css-color-hdr",
+ "currentSpecification": "css-color-hdr-1",
+ "title": "CSS Color HDR Module",
+ "shortTitle": "CSS Color HDR",
+ "releaseUrl": "https://www.w3.org/TR/css-color-hdr/",
+ "nightlyUrl": "https://drafts.csswg.org/css-color-hdr/"
+ },
+ "seriesVersion": "1",
+ "formerNames": [
+ "css-color-hdr"
+ ],
+ "organization": "W3C",
+ "groups": [
+ {
+ "name": "Cascading Style Sheets (CSS) Working Group",
+ "url": "https://www.w3.org/Style/CSS/"
+ }
+ ],
+ "release": {
+ "url": "https://www.w3.org/TR/css-color-hdr-1/",
+ "status": "First Public Working Draft",
+ "filename": "Overview.html"
+ },
+ "nightly": {
+ "url": "https://drafts.csswg.org/css-color-hdr-1/",
+ "status": "Editor's Draft",
+ "alternateUrls": [
+ "https://w3c.github.io/csswg-drafts/css-color-hdr-1/",
+ "https://w3c.github.io/csswg-drafts/css-color-hdr/"
+ ],
+ "repository": "https://github.com/w3c/csswg-drafts",
+ "sourcePath": "css-color-hdr-1/Overview.bs",
+ "filename": "index.html"
+ },
+ "title": "CSS Color HDR Module Level 1",
+ "source": "w3c",
+ "shortTitle": "CSS Color HDR 1",
+ "categories": [
+ "browser"
+ ],
+ "standing": "good",
+ "versions": [
+ "https://www.w3.org/TR/css-color-hdr-1/",
+ "https://drafts.csswg.org/css-color-hdr-1/"
+ ],
+ "crawled": "https://www.w3.org/TR/css-color-hdr-1/",
+ "crawlCacheInfo": {
+ "lastModified": "Wed, 11 Dec 2024 20:33:31 GMT"
+ },
+ "generator": "bikeshed",
+ "date": "17 December 2024",
+ "revision": "97f683a0274c6386a874a31ed1dfa99a6f19b034",
+ "algorithms": "algorithms/css-color-hdr-1.json",
+ "links": "links/css-color-hdr-1.json",
+ "refs": "refs/css-color-hdr-1.json",
+ "css": "css/css-color-hdr.json",
+ "dfns": "dfns/css-color-hdr-1.json",
+ "headings": "headings/css-color-hdr-1.json",
+ "ids": "ids/css-color-hdr-1.json",
+ "cddl": []
+ },
{
"url": "https://www.w3.org/TR/css-conditional-3/",
"seriesComposition": "full",
@@ -5796,6 +5862,75 @@
"ids": "ids/css-overflow-4.json",
"cddl": []
},
+ {
+ "url": "https://www.w3.org/TR/css-overflow-5/",
+ "seriesComposition": "delta",
+ "shortname": "css-overflow-5",
+ "series": {
+ "shortname": "css-overflow",
+ "currentSpecification": "css-overflow-3",
+ "title": "CSS Overflow",
+ "shortTitle": "CSS Overflow",
+ "releaseUrl": "https://www.w3.org/TR/css-overflow/",
+ "nightlyUrl": "https://drafts.csswg.org/css-overflow/"
+ },
+ "seriesVersion": "5",
+ "seriesPrevious": "css-overflow-4",
+ "organization": "W3C",
+ "groups": [
+ {
+ "name": "Cascading Style Sheets (CSS) Working Group",
+ "url": "https://www.w3.org/Style/CSS/"
+ }
+ ],
+ "release": {
+ "url": "https://www.w3.org/TR/css-overflow-5/",
+ "status": "First Public Working Draft",
+ "filename": "Overview.html"
+ },
+ "nightly": {
+ "url": "https://drafts.csswg.org/css-overflow-5/",
+ "status": "Editor's Draft",
+ "alternateUrls": [
+ "https://w3c.github.io/csswg-drafts/css-overflow-5/"
+ ],
+ "repository": "https://github.com/w3c/csswg-drafts",
+ "sourcePath": "css-overflow-5/Overview.bs",
+ "filename": "index.html"
+ },
+ "title": "CSS Overflow Module Level 5",
+ "source": "w3c",
+ "shortTitle": "CSS Overflow 5",
+ "categories": [
+ "browser"
+ ],
+ "standing": "good",
+ "tests": {
+ "repository": "https://github.com/web-platform-tests/wpt",
+ "testPaths": [
+ "css/css-overflow"
+ ]
+ },
+ "versions": [
+ "https://www.w3.org/TR/css-overflow-5/",
+ "https://drafts.csswg.org/css-overflow-5/"
+ ],
+ "crawled": "https://www.w3.org/TR/css-overflow-5/",
+ "crawlCacheInfo": {
+ "lastModified": "Fri, 13 Dec 2024 15:56:37 GMT"
+ },
+ "generator": "bikeshed",
+ "date": "17 December 2024",
+ "revision": "8bd3177e7135460e31016be1684138993b1b852b",
+ "algorithms": "algorithms/css-overflow-5.json",
+ "links": "links/css-overflow-5.json",
+ "refs": "refs/css-overflow-5.json",
+ "css": "css/css-overflow-5.json",
+ "dfns": "dfns/css-overflow-5.json",
+ "headings": "headings/css-overflow-5.json",
+ "ids": "ids/css-overflow-5.json",
+ "cddl": []
+ },
{
"url": "https://www.w3.org/TR/css-overscroll-1/",
"seriesComposition": "full",
@@ -9635,11 +9770,11 @@
],
"crawled": "https://www.w3.org/TR/edit-context/",
"crawlCacheInfo": {
- "lastModified": "Tue, 17 Dec 2024 19:39:12 GMT"
+ "lastModified": "Sat, 21 Dec 2024 01:02:08 GMT"
},
"generator": "respec",
- "date": "17 December 2024",
- "revision": "2632c28f1d8fc60841f633037bcb47c1ea4f8067",
+ "date": "21 December 2024",
+ "revision": "3dedc6e4d24e6cdf8c4c97d5d6af33346e44608d",
"algorithms": "algorithms/edit-context.json",
"links": "links/edit-context.json",
"refs": "refs/edit-context.json",
@@ -14951,11 +15086,11 @@
],
"crawled": "https://www.w3.org/TR/permissions/",
"crawlCacheInfo": {
- "lastModified": "Thu, 19 Dec 2024 21:36:58 GMT"
+ "lastModified": "Fri, 20 Dec 2024 16:01:24 GMT"
},
"generator": "respec",
- "date": "19 December 2024",
- "revision": "18a039f089b89b84f4ca0370889537af390b2ba5",
+ "date": "20 December 2024",
+ "revision": "77f8bc702808180da6d1d39fa117bbc483e05ee5",
"algorithms": "algorithms/permissions.json",
"links": "links/permissions.json",
"refs": "refs/permissions.json",
@@ -16268,8 +16403,8 @@
"series": {
"shortname": "requestidlecallback",
"currentSpecification": "requestidlecallback",
- "title": "requestIdleCallback() Cooperative Scheduling of Background Tasks",
- "shortTitle": "requestIdleCallback() Cooperative Scheduling of Background Tasks",
+ "title": "requestIdleCallback()",
+ "shortTitle": "requestIdleCallback()",
"releaseUrl": "https://www.w3.org/TR/requestidlecallback/",
"nightlyUrl": "https://w3c.github.io/requestidlecallback/"
},
@@ -16295,7 +16430,7 @@
},
"title": "requestIdleCallback()",
"source": "w3c",
- "shortTitle": "requestIdleCallback() Cooperative Scheduling of Background Tasks",
+ "shortTitle": "requestIdleCallback()",
"categories": [
"browser"
],
@@ -18827,7 +18962,7 @@
],
"release": {
"url": "https://www.w3.org/TR/vc-data-integrity/",
- "status": "Candidate Recommendation Draft",
+ "status": "Candidate Recommendation Snapshot",
"filename": "Overview.html"
},
"nightly": {
@@ -18883,7 +19018,7 @@
],
"release": {
"url": "https://www.w3.org/TR/vc-data-model-2.0/",
- "status": "Candidate Recommendation Draft",
+ "status": "Candidate Recommendation Snapshot",
"filename": "Overview.html"
},
"nightly": {
@@ -18904,11 +19039,10 @@
],
"crawled": "https://www.w3.org/TR/vc-data-model-2.0/",
"crawlCacheInfo": {
- "lastModified": "Tue, 17 Dec 2024 16:20:32 GMT"
+ "lastModified": "Sun, 15 Dec 2024 08:37:08 GMT"
},
"generator": "respec",
- "date": "17 December 2024",
- "revision": "a78384a16fe9d6ac33e4fc2adfa2a44aa309fe74",
+ "date": "19 December 2024",
"algorithms": "algorithms/vc-data-model-2.0.json",
"links": "links/vc-data-model-2.0.json",
"refs": "refs/vc-data-model-2.0.json",
@@ -19219,7 +19353,7 @@
],
"release": {
"url": "https://www.w3.org/TR/wasm-core-2/",
- "status": "Working Draft",
+ "status": "Candidate Recommendation Draft",
"filename": "Overview.html"
},
"title": "WebAssembly Core Specification",
@@ -19278,7 +19412,7 @@
],
"release": {
"url": "https://www.w3.org/TR/wasm-js-api-2/",
- "status": "Working Draft",
+ "status": "Candidate Recommendation Draft",
"filename": "Overview.html"
},
"nightly": {
@@ -19344,7 +19478,7 @@
],
"release": {
"url": "https://www.w3.org/TR/wasm-web-api-2/",
- "status": "Working Draft",
+ "status": "Candidate Recommendation Draft",
"filename": "Overview.html"
},
"nightly": {
@@ -20891,11 +21025,11 @@
],
"crawled": "https://www.w3.org/TR/webdriver-bidi/",
"crawlCacheInfo": {
- "lastModified": "Thu, 19 Dec 2024 11:27:20 GMT"
+ "lastModified": "Fri, 20 Dec 2024 16:01:14 GMT"
},
"generator": "bikeshed",
- "date": "19 December 2024",
- "revision": "4a85452154d7d06c5076ca3796e055c69e1b0d2f",
+ "date": "20 December 2024",
+ "revision": "e08792b377d83630d697ad881860312ad091ecfe",
"algorithms": "algorithms/webdriver-bidi.json",
"links": "links/webdriver-bidi.json",
"refs": "refs/webdriver-bidi.json",
@@ -21010,7 +21144,7 @@
],
"release": {
"url": "https://www.w3.org/TR/webgpu/",
- "status": "Working Draft",
+ "status": "Candidate Recommendation Snapshot",
"filename": "Overview.html"
},
"nightly": {
@@ -22316,7 +22450,7 @@
],
"release": {
"url": "https://www.w3.org/TR/WGSL/",
- "status": "Working Draft",
+ "status": "Candidate Recommendation Snapshot",
"filename": "Overview.html"
},
"title": "WebGPU Shading Language",
diff --git a/tr/links/css-color-hdr-1.json b/tr/links/css-color-hdr-1.json
new file mode 100644
index 000000000000..679a3e988372
--- /dev/null
+++ b/tr/links/css-color-hdr-1.json
@@ -0,0 +1,176 @@
+{
+ "spec": {
+ "title": "CSS Color HDR Module Level 1",
+ "url": "https://www.w3.org/TR/css-color-hdr-1/"
+ },
+ "links": {
+ "rawlinks": {
+ "http://wpt.live/css/css-color-hdr/computed.html": {},
+ "http://wpt.live/css/css-color-hdr/inheritance.html": {},
+ "http://wpt.live/css/css-color-hdr/interpolation.html": {},
+ "http://wpt.live/css/css-color-hdr/parsing.html": {},
+ "http://www.itu.int/rec/R-REC-BT.2020/en": {},
+ "https://datatracker.ietf.org/doc/html/rfc2119": {},
+ "https://displayhdr.org/": {},
+ "https://displayhdr.org/performance-criteria/": {},
+ "https://drafts.csswg.org/css-color-4/": {
+ "anchors": [
+ "predefined"
+ ]
+ },
+ "https://drafts.csswg.org/css-values-4/": {
+ "anchors": [
+ "combine-integers"
+ ]
+ },
+ "https://github.com/w3c/csswg-drafts/issues": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/css/css-color-hdr/computed.html": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/css/css-color-hdr/inheritance.html": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/css/css-color-hdr/interpolation.html": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/css/css-color-hdr/parsing.html": {},
+ "https://infra.spec.whatwg.org/": {
+ "anchors": [
+ "ascii-lowercase"
+ ]
+ },
+ "https://lists.w3.org/Archives/Public/public-css-archive/": {},
+ "https://lists.w3.org/Archives/Public/public-css-testsuite": {},
+ "https://lists.w3.org/Archives/Public/www-style/": {},
+ "https://opg.optica.org/oe/fulltext.cfm?uri=oe-25-13-15131&id=368272": {},
+ "https://pub.smpte.org/latest/st2084/st2084-2014.pdf": {},
+ "https://wpt.fyi/results/css/css-color-hdr/computed.html": {},
+ "https://wpt.fyi/results/css/css-color-hdr/inheritance.html": {},
+ "https://wpt.fyi/results/css/css-color-hdr/interpolation.html": {},
+ "https://wpt.fyi/results/css/css-color-hdr/parsing.html": {},
+ "https://www.arib.or.jp/english/html/overview/doc/2-STD-B67v1_0.pdf": {},
+ "https://www.itu.int/dms_pub/itu-r/opb/rep/R-REP-BT.2390-8-2020-PDF-E.pdf": {},
+ "https://www.itu.int/dms_pub/itu-r/opb/rep/R-REP-BT.2408-2017-PDF-E.pdf": {},
+ "https://www.itu.int/dms_pubrec/itu-r/rec/bt/R-REC-BT.2100-2-201807-I!!PDF-E.pdf": {},
+ "https://www.itu.int/dms_pubrec/itu-r/rec/bt/R-REC-BT.814-4-201807-I!!PDF-E.pdf": {},
+ "https://www.w3.org/Style/CSS/Test/": {},
+ "https://www.w3.org/TR/": {},
+ "https://www.w3.org/TR/CSS/": {
+ "anchors": [
+ "future-proofing",
+ "unstable",
+ "proprietary-extension"
+ ]
+ },
+ "https://www.w3.org/TR/CSS2/about.html": {
+ "anchors": [
+ "property-defs"
+ ]
+ },
+ "https://www.w3.org/TR/CSS21/": {},
+ "https://www.w3.org/TR/CSS21/conform.html": {
+ "anchors": [
+ "style-sheet",
+ "user-agent",
+ "ignore"
+ ]
+ },
+ "https://www.w3.org/TR/css-cascade-5/": {},
+ "https://www.w3.org/TR/css-cascade/": {
+ "anchors": [
+ "initial-values",
+ "applies-to",
+ "inherited-property",
+ "computed"
+ ]
+ },
+ "https://www.w3.org/TR/css-color-4/": {
+ "anchors": [
+ "predefined",
+ "serializing-color-values",
+ "serializing-color-function-values"
+ ]
+ },
+ "https://www.w3.org/TR/css-color-5/": {
+ "anchors": [
+ "relative-colors"
+ ]
+ },
+ "https://www.w3.org/TR/css-pseudo/": {
+ "anchors": [
+ "generated-content"
+ ]
+ },
+ "https://www.w3.org/TR/css-values-3/": {
+ "anchors": [
+ "value-defs"
+ ]
+ },
+ "https://www.w3.org/TR/css-values-4/": {},
+ "https://www.w3.org/TR/css-values/": {
+ "anchors": [
+ "value-defs",
+ "percentages"
+ ]
+ },
+ "https://www.w3.org/TR/cssom/": {
+ "anchors": [
+ "serializing-css-values"
+ ]
+ },
+ "https://www.w3.org/TR/web-animations/": {
+ "anchors": [
+ "animation-type"
+ ]
+ },
+ "https://www.w3.org/groups/wg/css": {},
+ "https://www.w3.org/groups/wg/css/ipr": {},
+ "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://drafts.csswg.org/css-color-4/": {
+ "anchors": [
+ "luminance"
+ ]
+ },
+ "https://www.w3.org/TR/css-cascade-5/": {
+ "anchors": [
+ "computed-value"
+ ]
+ },
+ "https://www.w3.org/TR/css-color-4/": {
+ "anchors": [
+ "sRGB-space",
+ "valdef-color-white",
+ "color-space",
+ "typedef-color-alpha-value",
+ "typedef-hue"
+ ]
+ },
+ "https://www.w3.org/TR/css-color-5/": {
+ "anchors": [
+ "typedef-color"
+ ]
+ },
+ "https://www.w3.org/TR/css-values-4/": {
+ "anchors": [
+ "css-wide-keywords",
+ "comb-one",
+ "typedef-ident",
+ "comb-all",
+ "percentage-value",
+ "mult-comma",
+ "mult-opt",
+ "typedef-dashed-ident",
+ "number-value",
+ "mult-one-plus",
+ "mult-num"
+ ]
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tr/links/css-overflow-5.json b/tr/links/css-overflow-5.json
new file mode 100644
index 000000000000..6d4c9ba0c7f5
--- /dev/null
+++ b/tr/links/css-overflow-5.json
@@ -0,0 +1,287 @@
+{
+ "spec": {
+ "title": "CSS Overflow Module Level 5",
+ "url": "https://www.w3.org/TR/css-overflow-5/"
+ },
+ "links": {
+ "rawlinks": {
+ "https://datatracker.ietf.org/doc/html/rfc2119": {},
+ "https://dom.spec.whatwg.org/": {},
+ "https://en.wiktionary.org/wiki/example": {},
+ "https://github.com/w3c/csswg-drafts/issues": {},
+ "https://github.com/w3c/csswg-drafts/issues/10914": {
+ "anchors": [
+ "issuecomment-2380139977"
+ ]
+ },
+ "https://html.spec.whatwg.org/multipage/": {},
+ "https://html.spec.whatwg.org/multipage/interaction.html": {
+ "anchors": [
+ "attr-tabindex"
+ ]
+ },
+ "https://html.spec.whatwg.org/multipage/text-level-semantics.html": {
+ "anchors": [
+ "the-a-element"
+ ]
+ },
+ "https://lists.w3.org/Archives/Public/public-css-archive/": {},
+ "https://lists.w3.org/Archives/Public/public-css-testsuite": {},
+ "https://lists.w3.org/Archives/Public/www-style/": {},
+ "https://lists.w3.org/Archives/Public/www-style/2012May/1197.html": {},
+ "https://lists.w3.org/Archives/Public/www-style/2015Jan/0357.html": {},
+ "https://lists.w3.org/Archives/Public/www-style/2015Mar/0241.html": {},
+ "https://open-ui.org/components/focusgroup.explainer/": {
+ "anchors": [
+ "guaranteed-tab-stop",
+ "last-focused-memory"
+ ]
+ },
+ "https://www.w3.org/Provider/Style/IntoContext.html": {},
+ "https://www.w3.org/Style/CSS/Test/": {},
+ "https://www.w3.org/TR/": {},
+ "https://www.w3.org/TR/CSS/": {
+ "anchors": [
+ "future-proofing",
+ "unstable",
+ "proprietary-extension"
+ ]
+ },
+ "https://www.w3.org/TR/CSS1/": {},
+ "https://www.w3.org/TR/CSS21/": {},
+ "https://www.w3.org/TR/CSS21/conform.html": {
+ "anchors": [
+ "style-sheet",
+ "user-agent",
+ "ignore"
+ ]
+ },
+ "https://www.w3.org/TR/CSS22/": {},
+ "https://www.w3.org/TR/SVG2/": {},
+ "https://www.w3.org/TR/SVG2/linking.html": {
+ "anchors": [
+ "Links"
+ ]
+ },
+ "https://www.w3.org/TR/css-break-3/": {},
+ "https://www.w3.org/TR/css-break-4/": {},
+ "https://www.w3.org/TR/css-cascade-5/": {},
+ "https://www.w3.org/TR/css-cascade/": {
+ "anchors": [
+ "initial-values",
+ "applies-to",
+ "inherited-property",
+ "computed"
+ ]
+ },
+ "https://www.w3.org/TR/css-contain-1/": {},
+ "https://www.w3.org/TR/css-contain-2/": {},
+ "https://www.w3.org/TR/css-content-3/": {},
+ "https://www.w3.org/TR/css-display-3/": {},
+ "https://www.w3.org/TR/css-flexbox-1/": {},
+ "https://www.w3.org/TR/css-gcpm-3/": {},
+ "https://www.w3.org/TR/css-grid-1/": {},
+ "https://www.w3.org/TR/css-multicol-1/": {},
+ "https://www.w3.org/TR/css-overflow-3/": {
+ "anchors": [
+ "overflow-concepts"
+ ]
+ },
+ "https://www.w3.org/TR/css-overflow-4/": {
+ "anchors": [
+ "continue"
+ ]
+ },
+ "https://www.w3.org/TR/css-position-3/": {},
+ "https://www.w3.org/TR/css-pseudo-4/": {},
+ "https://www.w3.org/TR/css-regions-1/": {},
+ "https://www.w3.org/TR/css-scroll-anchoring-1/": {},
+ "https://www.w3.org/TR/css-scroll-snap-1/": {},
+ "https://www.w3.org/TR/css-sizing-3/": {},
+ "https://www.w3.org/TR/css-ui-4/": {},
+ "https://www.w3.org/TR/css-values-4/": {},
+ "https://www.w3.org/TR/css-values/": {
+ "anchors": [
+ "value-defs",
+ "percentages"
+ ]
+ },
+ "https://www.w3.org/TR/css-writing-modes-4/": {},
+ "https://www.w3.org/TR/css3-marquee/": {},
+ "https://www.w3.org/TR/cssom-view-1/": {},
+ "https://www.w3.org/TR/cssom/": {
+ "anchors": [
+ "serializing-css-values"
+ ]
+ },
+ "https://www.w3.org/TR/selectors-3/": {},
+ "https://www.w3.org/TR/selectors-4/": {},
+ "https://www.w3.org/TR/web-animations/": {
+ "anchors": [
+ "animation-type"
+ ]
+ },
+ "https://www.w3.org/groups/wg/css": {},
+ "https://www.w3.org/groups/wg/css/ipr": {},
+ "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/": {
+ "anchors": [
+ "element",
+ "concept-tree-order"
+ ]
+ },
+ "https://drafts.csswg.org/css-pseudo-4/": {
+ "anchors": [
+ "fully-styleable"
+ ]
+ },
+ "https://drafts.csswg.org/css-scroll-anchoring-1/": {
+ "anchors": [
+ "anchor-priority-candidates"
+ ]
+ },
+ "https://drafts.csswg.org/css2/": {
+ "anchors": [
+ "propdef-float"
+ ]
+ },
+ "https://drafts.csswg.org/cssom-view-1/": {
+ "anchors": [
+ "scroll-a-target-into-view",
+ "determine-the-scroll-into-view-position"
+ ]
+ },
+ "https://html.spec.whatwg.org/multipage/browsing-the-web.html": {
+ "anchors": [
+ "the-indicated-part-of-the-document"
+ ]
+ },
+ "https://html.spec.whatwg.org/multipage/form-elements.html": {
+ "anchors": [
+ "the-button-element"
+ ]
+ },
+ "https://html.spec.whatwg.org/multipage/links.html": {
+ "anchors": [
+ "following-hyperlinks-2"
+ ]
+ },
+ "https://www.w3.org/TR/css-break-4/": {
+ "anchors": [
+ "fragmentation-container"
+ ]
+ },
+ "https://www.w3.org/TR/css-cascade-5/": {
+ "anchors": [
+ "valdef-all-inherit"
+ ]
+ },
+ "https://www.w3.org/TR/css-contain-2/": {
+ "anchors": [
+ "layout-containment"
+ ]
+ },
+ "https://www.w3.org/TR/css-content-3/": {
+ "anchors": [
+ "propdef-content",
+ "valdef-content-none"
+ ]
+ },
+ "https://www.w3.org/TR/css-display-3/": {
+ "anchors": [
+ "propdef-display",
+ "inner-display-type"
+ ]
+ },
+ "https://www.w3.org/TR/css-multicol-1/": {
+ "anchors": [
+ "overflow-columns"
+ ]
+ },
+ "https://www.w3.org/TR/css-overflow-3/": {
+ "anchors": [
+ "scroll-container",
+ "scrollable-overflow-region",
+ "scrollport",
+ "propdef-overflow"
+ ]
+ },
+ "https://www.w3.org/TR/css-overflow-4/": {
+ "anchors": [
+ "propdef-continue",
+ "valdef-continue-auto",
+ "propdef-max-lines"
+ ]
+ },
+ "https://www.w3.org/TR/css-position-3/": {
+ "anchors": [
+ "propdef-position"
+ ]
+ },
+ "https://www.w3.org/TR/css-pseudo-4/": {
+ "anchors": [
+ "selectordef-before",
+ "selectordef-after",
+ "selectordef-first-letter",
+ "selectordef-first-line"
+ ]
+ },
+ "https://www.w3.org/TR/css-regions-1/": {
+ "anchors": [
+ "propdef-region-fragment",
+ "css-region",
+ "region-chain"
+ ]
+ },
+ "https://www.w3.org/TR/css-scroll-snap-1/": {
+ "anchors": [
+ "intended-direction-and-end-position"
+ ]
+ },
+ "https://www.w3.org/TR/css-sizing-3/": {
+ "anchors": [
+ "propdef-height"
+ ]
+ },
+ "https://www.w3.org/TR/css-ui-4/": {
+ "anchors": [
+ "propdef-appearance"
+ ]
+ },
+ "https://www.w3.org/TR/css-values-4/": {
+ "anchors": [
+ "comb-one"
+ ]
+ },
+ "https://www.w3.org/TR/css-writing-modes-4/": {
+ "anchors": [
+ "flow-relative",
+ "writing-mode",
+ "block-start",
+ "inline-start",
+ "block-end",
+ "inline-end"
+ ]
+ },
+ "https://www.w3.org/TR/selectors-4/": {
+ "anchors": [
+ "originating-element",
+ "disabled-pseudo",
+ "selector-subject"
+ ]
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tr/links/vc-data-model-2.0.json b/tr/links/vc-data-model-2.0.json
index 179d54735847..e35caf78d959 100644
--- a/tr/links/vc-data-model-2.0.json
+++ b/tr/links/vc-data-model-2.0.json
@@ -194,13 +194,15 @@
"https://www.w3.org/ns/credentials/status/v1": {},
"https://www.w3.org/policies/patent-policy/": {
"anchors": [
+ "sec-Requirements",
"def-essential",
"sec-Disclosure"
]
},
"https://www.w3.org/policies/process/20231103/": {
"anchors": [
- "recs-and-notes"
+ "recs-and-notes",
+ "dfn-wide-review"
]
}
},
diff --git a/tr/links/webdriver-bidi.json b/tr/links/webdriver-bidi.json
index 67edd7b4070a..b4096c93f2d3 100644
--- a/tr/links/webdriver-bidi.json
+++ b/tr/links/webdriver-bidi.json
@@ -301,10 +301,10 @@
"https://html.spec.whatwg.org/multipage/document-sequences.html": {
"anchors": [
"top-level-traversable",
- "nav-top",
"node-navigable",
- "nav-window",
"navigables",
+ "nav-top",
+ "nav-window",
"child-navigable",
"nav-parent",
"nav-document",
@@ -444,34 +444,37 @@
"ordered-map",
"list",
"ordered-set",
- "map-exists",
+ "struct",
"list-contain",
- "implementation-defined",
+ "iteration-continue",
+ "set-intersection",
+ "list-empty",
"set-append",
+ "iteration-break",
+ "implementation-defined",
"assert",
"scalar-value-string",
"parse-a-json-string-to-an-infra-value",
+ "map-exists",
"serialize-an-infra-value-to-json-bytes",
"map-size",
"list-iterate",
"list-remove",
"map-getting-the-values",
- "list-empty",
"map-clear",
- "list-clone",
"convert-a-json-derived-javascript-value-to-an-infra-value",
+ "set-create",
+ "list-size",
+ "set-difference",
"map-sort-in-ascending-order",
"list-append",
- "iteration-break",
+ "list-clone",
+ "map-remove",
"forgiving-base64-encode",
- "list-size",
"list-extend",
- "iteration-continue",
"code-point-substring",
"string-is",
"map-set",
- "map-remove",
- "struct",
"byte-lowercase",
"byte-case-insensitive",
"tuple",
@@ -488,8 +491,7 @@
"map-is-empty",
"struct-item",
"map-clone",
- "string-concatenate",
- "set-intersection"
+ "string-concatenate"
]
},
"https://mimesniff.spec.whatwg.org/": {
@@ -578,25 +580,25 @@
"dfn-active-sessions",
"dfn-remote-end-steps",
"dfn-error-code",
- "dfn-success",
- "errors",
- "dfn-invalid-argument",
"dfn-session-id",
"dfn-intermediary-nodes",
"dfn-endpoint-node",
+ "dfn-invalid-argument",
"dfn-invalid-session-id",
+ "errors",
"dfn-unknown-command",
"dfn-webdriver-new-session-algorithms",
"dfn-getting-properties",
"dfn-set-a-property",
"dfn-http-session",
+ "dfn-success",
"dfn-webdriver-active-flag",
- "dfn-try",
"dfn-additional-webdriver-capability",
"dfn-additional-capability-deserialization-algorithm",
"dfn-matched-capability-serialization-algorithm",
"dfn-readiness-state",
"dfn-session-not-created",
+ "dfn-try",
"dfn-capabilities-processing",
"dfn-create-a-session",
"dfn-unsupported-operation",
diff --git a/tr/refs/css-color-hdr-1.json b/tr/refs/css-color-hdr-1.json
new file mode 100644
index 000000000000..0c0670e63541
--- /dev/null
+++ b/tr/refs/css-color-hdr-1.json
@@ -0,0 +1,76 @@
+{
+ "spec": {
+ "title": "CSS Color HDR Module Level 1",
+ "url": "https://www.w3.org/TR/css-color-hdr-1/"
+ },
+ "refs": {
+ "normative": [
+ {
+ "name": "CSS-CASCADE-5",
+ "url": "https://www.w3.org/TR/css-cascade-5/"
+ },
+ {
+ "name": "CSS-COLOR-4",
+ "url": "https://www.w3.org/TR/css-color-4/"
+ },
+ {
+ "name": "CSS-COLOR-5",
+ "url": "https://www.w3.org/TR/css-color-5/"
+ },
+ {
+ "name": "CSS-VALUES-3",
+ "url": "https://www.w3.org/TR/css-values-3/"
+ },
+ {
+ "name": "CSS-VALUES-4",
+ "url": "https://www.w3.org/TR/css-values-4/"
+ },
+ {
+ "name": "CSS2",
+ "url": "https://www.w3.org/TR/CSS21/"
+ },
+ {
+ "name": "Rec.2020",
+ "url": "http://www.itu.int/rec/R-REC-BT.2020/en"
+ },
+ {
+ "name": "Rec_BT.2100",
+ "url": "https://www.itu.int/dms_pubrec/itu-r/rec/bt/R-REC-BT.2100-2-201807-I!!PDF-E.pdf"
+ },
+ {
+ "name": "Rec_BT.2390",
+ "url": "https://www.itu.int/dms_pub/itu-r/opb/rep/R-REP-BT.2390-8-2020-PDF-E.pdf"
+ },
+ {
+ "name": "RFC2119",
+ "url": "https://datatracker.ietf.org/doc/html/rfc2119"
+ },
+ {
+ "name": "Rpt_BT.2408",
+ "url": "https://www.itu.int/dms_pub/itu-r/opb/rep/R-REP-BT.2408-2017-PDF-E.pdf"
+ },
+ {
+ "name": "Safdar-PUCS",
+ "url": "https://opg.optica.org/oe/fulltext.cfm?uri=oe-25-13-15131&id=368272"
+ },
+ {
+ "name": "SMPTE-ST-2084",
+ "url": "https://pub.smpte.org/latest/st2084/st2084-2014.pdf"
+ }
+ ],
+ "informative": [
+ {
+ "name": "ARIB_STD-B67",
+ "url": "https://www.arib.or.jp/english/html/overview/doc/2-STD-B67v1_0.pdf"
+ },
+ {
+ "name": "DisplayHDR",
+ "url": "https://displayhdr.org/performance-criteria/"
+ },
+ {
+ "name": "Rec_BT.814",
+ "url": "https://www.itu.int/dms_pubrec/itu-r/rec/bt/R-REC-BT.814-4-201807-I!!PDF-E.pdf"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tr/refs/css-overflow-5.json b/tr/refs/css-overflow-5.json
new file mode 100644
index 000000000000..275d1e5235ab
--- /dev/null
+++ b/tr/refs/css-overflow-5.json
@@ -0,0 +1,144 @@
+{
+ "spec": {
+ "title": "CSS Overflow Module Level 5",
+ "url": "https://www.w3.org/TR/css-overflow-5/"
+ },
+ "refs": {
+ "normative": [
+ {
+ "name": "CSS-BREAK-3",
+ "url": "https://www.w3.org/TR/css-break-3/"
+ },
+ {
+ "name": "CSS-BREAK-4",
+ "url": "https://www.w3.org/TR/css-break-4/"
+ },
+ {
+ "name": "CSS-CASCADE-5",
+ "url": "https://www.w3.org/TR/css-cascade-5/"
+ },
+ {
+ "name": "CSS-CONTAIN-1",
+ "url": "https://www.w3.org/TR/css-contain-1/"
+ },
+ {
+ "name": "CSS-CONTAIN-2",
+ "url": "https://www.w3.org/TR/css-contain-2/"
+ },
+ {
+ "name": "CSS-CONTENT-3",
+ "url": "https://www.w3.org/TR/css-content-3/"
+ },
+ {
+ "name": "CSS-DISPLAY-3",
+ "url": "https://www.w3.org/TR/css-display-3/"
+ },
+ {
+ "name": "CSS-MULTICOL-1",
+ "url": "https://www.w3.org/TR/css-multicol-1/"
+ },
+ {
+ "name": "CSS-OVERFLOW-3",
+ "url": "https://www.w3.org/TR/css-overflow-3/"
+ },
+ {
+ "name": "CSS-OVERFLOW-4",
+ "url": "https://www.w3.org/TR/css-overflow-4/"
+ },
+ {
+ "name": "CSS-POSITION-3",
+ "url": "https://www.w3.org/TR/css-position-3/"
+ },
+ {
+ "name": "CSS-PSEUDO-4",
+ "url": "https://www.w3.org/TR/css-pseudo-4/"
+ },
+ {
+ "name": "CSS-REGIONS-1",
+ "url": "https://www.w3.org/TR/css-regions-1/"
+ },
+ {
+ "name": "CSS-SCROLL-ANCHORING-1",
+ "url": "https://www.w3.org/TR/css-scroll-anchoring-1/"
+ },
+ {
+ "name": "CSS-SCROLL-SNAP-1",
+ "url": "https://www.w3.org/TR/css-scroll-snap-1/"
+ },
+ {
+ "name": "CSS-UI-4",
+ "url": "https://www.w3.org/TR/css-ui-4/"
+ },
+ {
+ "name": "CSS-VALUES-4",
+ "url": "https://www.w3.org/TR/css-values-4/"
+ },
+ {
+ "name": "CSS-WRITING-MODES-4",
+ "url": "https://www.w3.org/TR/css-writing-modes-4/"
+ },
+ {
+ "name": "CSS2",
+ "url": "https://www.w3.org/TR/CSS21/"
+ },
+ {
+ "name": "CSS22",
+ "url": "https://www.w3.org/TR/CSS22/"
+ },
+ {
+ "name": "CSS3-FLEXBOX",
+ "url": "https://www.w3.org/TR/css-flexbox-1/"
+ },
+ {
+ "name": "CSS3-GRID-LAYOUT",
+ "url": "https://www.w3.org/TR/css-grid-1/"
+ },
+ {
+ "name": "CSSOM-VIEW-1",
+ "url": "https://www.w3.org/TR/cssom-view-1/"
+ },
+ {
+ "name": "DOM",
+ "url": "https://dom.spec.whatwg.org/"
+ },
+ {
+ "name": "HTML",
+ "url": "https://html.spec.whatwg.org/multipage/"
+ },
+ {
+ "name": "RFC2119",
+ "url": "https://datatracker.ietf.org/doc/html/rfc2119"
+ },
+ {
+ "name": "SELECT",
+ "url": "https://www.w3.org/TR/selectors-3/"
+ },
+ {
+ "name": "SELECTORS-4",
+ "url": "https://www.w3.org/TR/selectors-4/"
+ },
+ {
+ "name": "SVG2",
+ "url": "https://www.w3.org/TR/SVG2/"
+ }
+ ],
+ "informative": [
+ {
+ "name": "CSS-SIZING-3",
+ "url": "https://www.w3.org/TR/css-sizing-3/"
+ },
+ {
+ "name": "CSS1",
+ "url": "https://www.w3.org/TR/CSS1/"
+ },
+ {
+ "name": "CSS3-MARQUEE",
+ "url": "https://www.w3.org/TR/css3-marquee/"
+ },
+ {
+ "name": "CSS3GCPM",
+ "url": "https://www.w3.org/TR/css-gcpm-3/"
+ }
+ ]
+ }
+}
\ No newline at end of file