diff --git a/ed/algorithms/css-easing-2.json b/ed/algorithms/css-easing-2.json
index ace6513f5902..d2c62586135e 100644
--- a/ed/algorithms/css-easing-2.json
+++ b/ed/algorithms/css-easing-2.json
@@ -7,104 +7,97 @@
{
"name": "linear() canonicalization",
"href": "https://drafts.csswg.org/css-easing-2/#linear-canonicalization",
- "html": "To canonicalize a linear() function’s control points,\n perform the following: \n \n
After canonicalization,\n every control point has an input progress value,\n and the input progress values are monotonically non-decreasing\n along the list.
",
+ "html": "To canonicalize a linear() function’s control points,\n perform the following: \n \n After canonicalization,\n every control point has an input progress value,\n and the input progress values are monotonically non-decreasing\n along the list.
",
"rationale": ".algorithm",
"steps": [
{
- "html": "If the first control point lacks an input progress value,\nset its input progress value to 0.
"
+ "html": "If the first control point lacks an input progress value,\nset its input progress value to 0.
"
},
{
- "html": "If the last control point lacks an input progress value,\nset its input progress value to 1.
"
+ "html": "If the last control point lacks an input progress value,\nset its input progress value to 1.
"
},
{
- "html": "If any control point has an input progress value that is less than the input progress value of any preceding control point,\nset its input progress value to the largest input progress value of any preceding control point.
"
+ "html": "If any control point has an input progress value that is less than the input progress value of any preceding control point,\nset its input progress value to the largest input progress value of any preceding control point.
"
},
{
- "html": "If any control point still lacks an input progress value,\nthen for each contiguous run of such control points,\nset their input progress values so that they are evenly spaced\nbetween the preceding and following control points with input progress values.
"
+ "html": "If any control point still lacks an input progress value,\nthen for each contiguous run of such control points,\nset their input progress values so that they are evenly spaced\nbetween the preceding and following control points with input progress values.
"
}
]
},
{
- "name": "linear easing function",
- "href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-serialized-computed-value",
- "html": "To get a linear easing function's (linearEasingFunction) serialized computed value,\nperform the following.\nIt returns a string.",
+ "name": "serialize a linear() function",
+ "href": "https://drafts.csswg.org/css-easing-2/#serialize-a-linear-function",
+ "html": "To serialize a linear() function:",
"rationale": ".algorithm",
"steps": [
{
- "html": "Let output be \"linear(
\".
"
+ "html": "Let s be the string \"linear(\".
"
},
{
- "html": "For each point in linearEasingFunction’s points:",
- "rationale": "if",
- "steps": [
- {
- "html": "If point is not the first item of linearEasingFunction’s points,\n append \",
\" to output.
"
- },
- {
- "html": "Append the computed value of point’s output,\n as a <number>,\n to output.
"
- },
- {
- "html": "Append \"
\" to output.
"
- },
- {
- "html": "Append the computed value of point’s input,\n as a <percentage>,\n to output.
"
- }
- ]
- },
- {
- "html": "Append \")
\" to output.
"
+ "html": "Serialize each control point of the function, concatenate the results using the separator \", \",\nand append the result to s.
"
},
{
- "html": "Return output.
"
+ "html": "Append \")\" to s,\nand return it.
"
}
]
},
{
- "name": "to calculate linear easing output progress",
- "href": "https://drafts.csswg.org/css-easing-2/#calculate-linear-easing-output-progress",
- "html": "To calculate linear easing output progress for a given linear easing function linearEasingFunction,\nand an input progress value inputProgress,\nperform the following.\nIt returns an output progress value.",
+ "name": "serialize a linear() control point",
+ "href": "https://drafts.csswg.org/css-easing-2/#serialize-a-linear-control-point",
+ "html": "To serialize a linear() control point:",
"rationale": ".algorithm",
"steps": [
{
- "html": "Let points be linearEasingFunction’s points.
"
+ "html": "Let s be the serialization,\nas a <number>,\nof the control point’s output progress value.
"
},
{
- "html": "Let pointAIndex be index of the last item in points with an input less than or equal to inputProgress,\n or 0 if there is no match.
"
+ "html": "If the control point originally lacked an input progress value,\nreturn s.
"
},
{
- "html": "If pointAIndex is equal to points size minus 1,\n decrement pointAIndex by 1.
"
+ "html": "Otherwise, append \" \" (U+0020 SPACE) to s,\nthen serialize the control point’s output progress value as a <percentage> and append it to s.
"
},
{
- "html": "Let pointA be points[pointAIndex].
"
- },
- {
- "html": "Let pointB be points[pointAIndex + 1].
"
- },
- {
- "html": "If pointA’s input is equal to pointB’s input,\n return pointB’s output.
"
- },
- {
- "html": "Let progressFromPointA be inputProgress minus pointA’s input.
"
- },
+ "html": "Return s.
"
+ }
+ ]
+ },
+ {
+ "name": "calculate linear easing output progress",
+ "href": "https://drafts.csswg.org/css-easing-2/#calculate-linear-easing-output-progress",
+ "html": "To calculate linear easing output progress for a given linear easing function func,\n and an input progress value inputProgress,\n perform the following.\n It returns an output progress value.",
+ "rationale": ".algorithm",
+ "steps": [
{
- "html": "Let pointInputRange be pointB’s input minus pointA’s input.
"
+ "html": "Let points be func’s control points.
"
},
{
- "html": "Let progressBetweenPoints be progressFromPointA divided by pointInputRange.
"
+ "html": "If points holds only a single item,\nreturn the output progress value of that item.
"
},
{
- "html": "Let pointOutputRange be pointB’s output minus pointA’s output.
"
+ "html": "If at least one of points has an input progress value matching inputProgress,\nreturn the largest output progress value from among them.
"
},
{
- "html": "Let outputFromLastPoint be progressBetweenPoints multiplied by pointOutputRange.
"
+ "html": "Otherwise, find two control points, A and B,\nwhich will be used for interpolation:",
+ "rationale": "if",
+ "steps": [
+ {
+ "html": "If inputProgress is smaller\nthan any input progress value in points,\nlet A and B be the first two items in points.\nIf A and B have the same input progress value,\nreturn A’s output progress value.
"
+ },
+ {
+ "html": "Otherwise, if inputProgress is larger\nthan any input progress value in points,\nlet A and B be the last two items in points.\nIf A and B have the same input progress value,\nreturn B’s output progress value.
"
+ },
+ {
+ "html": "Otherwise, let A be the control point with the largest output progress value whose input progress value is smaller than inputProgress,\nand let B be the control point with the smallest output progress value whose input progress value is larger than inputProgress.
"
+ }
+ ]
},
{
- "html": "Return pointA’s output plus outputFromLastPoint.
"
+ "html": "Linearly interpolate (or extrapolate) inputProgress along the line defined by A and B,\nand return the result.
"
}
]
},
{
- "html": "For input progress values less than zero,",
+ "html": "For input progress values less than zero,",
"rationale": "if",
"steps": [
{
@@ -114,12 +107,12 @@
"html": "Otherwise, if the x value of P2 is greater than\n zero, use a straight line that passes through P2 and P0 as the tangent.
"
},
{
- "html": "Otherwise, let the output progress value be zero for all input progress values in the range [-∞, 0).
"
+ "html": "Otherwise, let the output progress value be zero for all input progress values in the range [-∞, 0).
"
}
]
},
{
- "html": "For input progress values greater than one,",
+ "html": "For input progress values greater than one,",
"rationale": "if",
"steps": [
{
@@ -129,34 +122,34 @@
"html": "Otherwise, if the x value of P1 is less than\n one, use a straight line that passes through P1 and P3 as the tangent.
"
},
{
- "html": "Otherwise, let the output progress value be one for all input progress values in the range (1, ∞].
"
+ "html": "Otherwise, let the output progress value be one for all input progress values in the range (1, ∞].
"
}
]
},
{
- "html": "The output progress value is calculated from the input progress value and before flag as follows:",
+ "html": "The output progress value is calculated from the input progress value and before flag as follows:",
"rationale": "if",
"steps": [
{
- "html": "Calculate the current step as floor(input progress value × steps)
.
"
+ "html": "Calculate the current step as floor(input progress value × steps)
.
"
},
{
"html": "If the step position property is one of:
\n \n increment current step by one.
"
},
{
- "html": "If both of the following conditions are true:
\n \n decrement current step by one.
"
+ "html": "If both of the following conditions are true:
\n \n decrement current step by one.
"
},
{
- "html": "If input progress value ≥ 0 and current step < 0,\n let current step be zero.
"
+ "html": "If input progress value ≥ 0 and current step < 0,\n let current step be zero.
"
},
{
"html": "Calculate jumps based on the step position as follows:
\n \n - jump-start or jump-end\n
- \n
steps
\n - jump-none\n
- \n
steps - 1
\n - jump-both\n
- \n
steps + 1
\n
"
},
{
- "html": "If input progress value ≤ 1 and current step > jumps, let current step be jumps.
"
+ "html": "If input progress value ≤ 1 and current step > jumps, let current step be jumps.
"
},
{
- "html": "The output progress value is current step / jumps
.
"
+ "html": "The output progress value is current step / jumps
.
"
}
]
},
diff --git a/ed/algorithms/css-flexbox-1.json b/ed/algorithms/css-flexbox-1.json
index 348f38f7e2f7..35b3e40c5a11 100644
--- a/ed/algorithms/css-flexbox-1.json
+++ b/ed/algorithms/css-flexbox-1.json
@@ -68,7 +68,7 @@
"html": "Otherwise,\n\t\t\t\t\tif the used flex basis is content or depends on its available space,\n\t\t\t\t\tthe available main size is infinite,\n\t\t\t\t\tand the flex item’s inline axis is parallel to the main axis,\n\t\t\t\t\tlay the item out using the rules for a box in an orthogonal flow [CSS3-WRITING-MODES].\n\t\t\t\t\tThe flex base size is the item’s max-content main size."
},
{
- "html": "Otherwise,\n\t\t\t\t\tsize the item into the available space using its used flex basis in place of its main size,\n\t\t\t\t\ttreating a value of content as max-content.\n\t\t\t\t\tIf a cross size is needed to determine the main size (e.g. when the flex item’s main size is in its block axis,\n\t\t\t\t\tor when it has a preferred aspect ratio)\n\t\t\t\t\tand the flex item’s cross size is auto and not definite,\n\t\t\t\t\tin this calculation use fit-content as the flex item’s cross size.\n\t\t\t\t\tThe flex base size is the item’s resulting main size."
+ "html": "Otherwise,\n\t\t\t\t\tsize the item into the available space using its used flex basis in place of its main size,\n\t\t\t\t\ttreating a value of content as max-content.\n\t\t\t\t\tIf a cross size is needed to determine the main size (e.g. when the flex item’s main size is in its block axis,\n\t\t\t\t\tor when it has a preferred aspect ratio)\n\t\t\t\t\tand the flex item’s cross size is auto and not definite,\n\t\t\t\t\tin this calculation use fit-content as the flex item’s cross size.\n\t\t\t\t\tThe flex base size is the item’s resulting main size."
}
]
},
diff --git a/ed/algorithms/css-grid-1.json b/ed/algorithms/css-grid-1.json
index adfcb9798533..e19241450580 100644
--- a/ed/algorithms/css-grid-1.json
+++ b/ed/algorithms/css-grid-1.json
@@ -233,7 +233,7 @@
},
{
"case": "For auto minimums:",
- "html": "If the track has an auto min track sizing function and the grid container is being sized\n\t\t\t\t\tunder a min-/max-content constraint,\n\t\t\t\t\tset the track’s base size to the maximum of its items’ limited min-content contributions,\n\t\t\t\t\tfloored at zero.\n\t\t\t\t\tThe limited min-/max-content contribution of an item\n\t\t\t\t\tis (for this purpose) its min-/max-content contribution (accordingly),\n\t\t\t\t\tlimited by the max track sizing function (which could be the argument to a fit-content() track sizing function)\n\t\t\t\t\tif that is fixed and ultimately floored by its minimum contribution (defined below). \n Otherwise,\n\t\t\t\t\tset the track’s base size to the maximum of its items’ minimum contributions,\n\t\t\t\t\tfloored at zero.\n\t\t\t\t\tThe minimum contribution of an item\n\t\t\t\t\tis the smallest outer size it can have.\n\t\t\t\t\tSpecifically,\n\t\t\t\t\tif the item’s computed preferred size behaves as auto or depends on the size of its containing block in the relevant axis,\n\t\t\t\t\tits minimum contribution is\n\t\t\t\t\tthe outer size that would result from assuming\n\t\t\t\t\tthe item’s used minimum size as its preferred size;\n\t\t\t\t\telse the item’s minimum contribution is\n\t\t\t\t\tits min-content contribution.\n\t\t\t\t\tBecause the minimum contribution often depends\n\t\t\t\t\ton the size of the item’s content,\n\t\t\t\t\tit is considered a type of intrinsic size contribution.
"
+ "html": "If the track has an auto min track sizing function and the grid container is being sized\n\t\t\t\t\tunder a min-/max-content constraint,\n\t\t\t\t\tset the track’s base size to the maximum of its items’ limited min-content contributions,\n\t\t\t\t\tfloored at zero.\n\t\t\t\t\tThe limited min-/max-content contribution of an item\n\t\t\t\t\tis (for this purpose) its min-/max-content contribution (accordingly),\n\t\t\t\t\tlimited by the max track sizing function (which could be the argument to a fit-content() track sizing function)\n\t\t\t\t\tif that is fixed and ultimately floored by its minimum contribution (defined below). \n Otherwise,\n\t\t\t\t\tset the track’s base size to the maximum of its items’ minimum contributions,\n\t\t\t\t\tfloored at zero.\n\t\t\t\t\tThe minimum contribution of an item\n\t\t\t\t\tis the smallest outer size it can have.\n\t\t\t\t\tSpecifically,\n\t\t\t\t\tif the item’s computed preferred size behaves as auto or depends on the size of its containing block in the relevant axis,\n\t\t\t\t\tits minimum contribution is\n\t\t\t\t\tthe outer size that would result from assuming\n\t\t\t\t\tthe item’s used minimum size as its preferred size;\n\t\t\t\t\telse the item’s minimum contribution is\n\t\t\t\t\tits min-content contribution.\n\t\t\t\t\tBecause the minimum contribution often depends\n\t\t\t\t\ton the size of the item’s content,\n\t\t\t\t\tit is considered a type of intrinsic size contribution.
"
},
{
"case": "For min-content maximums:",
@@ -342,7 +342,7 @@
"rationale": "resolve",
"steps": [
{
- "html": "Layout the grid following the § 11 Grid Layout Algorithm by using the fragmentation container’s inline size and assume unlimited block size.\n\t\t\tDuring this step all grid-row auto and fr values must be resolved."
+ "html": "Layout the grid following the § 11 Grid Layout Algorithm by using the fragmentation container’s inline size and assume unlimited block size.\n\t\t\tDuring this step all grid-row auto and fr values must be resolved."
},
{
"html": "Layout the grid container using the values resolved in the previous step."
@@ -351,7 +351,7 @@
"html": "If a grid area’s size changes due to fragmentation (do not include items that\n\t\t\tspan rows in this decision), increase the grid row size as necessary for rows that either: \n \n - have a content min track sizing function. \n
- are in a grid that does not have an explicit height and the grid row is flexible. \n
"
},
{
- "html": "If the grid height is auto, the height of the grid should be the sum of the final\n\t\t\trow sizes."
+ "html": "If the grid height is auto, the height of the grid should be the sum of the final\n\t\t\trow sizes."
},
{
"html": "If a grid area overflows the grid container due to margins being collapsed during\n\t\t\tfragmentation, extend the grid container to contain this grid area (this step is\n\t\t\tnecessary in order to avoid circular layout dependencies due to fragmentation)."
@@ -394,17 +394,17 @@
"rationale": "increase",
"steps": [
{
- "html": "Increase sizes to accommodate spanning items: Next, consider the items with a span of 2\n\t\t\t\t\tthat do not span a track with a flexible sizing function\n ,\n\t\t\t\t\ttreating a min track sizing function of auto as min-content/max-content when the grid container is being sized under a min/max-content constraint (respectively)\n :",
+ "html": "Increase sizes to accommodate spanning items: Next, consider the items with a span of 2\n\t\t\t\t\tthat do not span a track with a flexible sizing function\n ,\n\t\t\t\t\ttreating a min track sizing function of auto as min-content/max-content when the grid container is being sized under a min/max-content constraint (respectively)\n :",
"rationale": "for",
"steps": [
{
"html": "…"
},
{
- "html": "For content-based minimums: Next continue to increase the base size of tracks with\n\t\t\t\t\t\ta min track sizing function of min-content or max-content\n ,\n\t\t\t\t\t\tand tracks with a min track sizing function of auto if the grid container is being sized under a min-content constraint,\n by distributing extra space as needed\n\t\t\t\t\t\tto account for these items' min-content contributions."
+ "html": "For content-based minimums: Next continue to increase the base size of tracks with\n\t\t\t\t\t\ta min track sizing function of min-content or max-content\n ,\n\t\t\t\t\t\tand tracks with a min track sizing function of auto if the grid container is being sized under a min-content constraint,\n by distributing extra space as needed\n\t\t\t\t\t\tto account for these items' min-content contributions."
},
{
- "html": "For max-content minimums: Third continue to increase the base size of tracks with\n\t\t\t\t\t\ta min track sizing function of max-content\n ,\n\t\t\t\t\t\tand tracks with a max track sizing function of auto if the grid container is being sized under a max-content constraint,\n by distributing extra space as needed\n\t\t\t\t\t\tto account for these items' max-content contributions."
+ "html": "For max-content minimums: Third continue to increase the base size of tracks with\n\t\t\t\t\t\ta min track sizing function of max-content\n ,\n\t\t\t\t\t\tand tracks with a max track sizing function of auto if the grid container is being sized under a max-content constraint,\n by distributing extra space as needed\n\t\t\t\t\t\tto account for these items' max-content contributions."
}
]
}
diff --git a/ed/algorithms/css-grid-2.json b/ed/algorithms/css-grid-2.json
index 5faa24b9caba..ea49b1773bbb 100644
--- a/ed/algorithms/css-grid-2.json
+++ b/ed/algorithms/css-grid-2.json
@@ -233,7 +233,7 @@
},
{
"case": "For auto minimums:",
- "html": "If the track has an auto min track sizing function and the grid container is being sized\n\t\t\t\t\tunder a min-/max-content constraint,\n\t\t\t\t\tset the track’s base size to the maximum of its items’ limited min-/max-content contributions (respectively),\n\t\t\t\t\tfloored at zero.\n\t\t\t\t\tThe limited min-/max-content contribution of an item\n\t\t\t\t\tis (for this purpose) its min-/max-content contribution (accordingly),\n\t\t\t\t\tlimited by the max track sizing function (which could be the argument to a fit-content() track sizing function)\n\t\t\t\t\tif that is fixed and ultimately floored by its minimum contribution (defined below). \n Otherwise,\n\t\t\t\t\tset the track’s base size to the maximum of its items’ minimum contributions,\n\t\t\t\t\tfloored at zero.\n\t\t\t\t\tThe minimum contribution of an item\n\t\t\t\t\tis the smallest outer size it can have.\n\t\t\t\t\tSpecifically,\n\t\t\t\t\tif the item’s computed preferred size behaves as auto or depends on the size of its containing block in the relevant axis,\n\t\t\t\t\tits minimum contribution is\n\t\t\t\t\tthe outer size that would result from assuming\n\t\t\t\t\tthe item’s used minimum size as its preferred size;\n\t\t\t\t\telse the item’s minimum contribution is\n\t\t\t\t\tits min-content contribution.\n\t\t\t\t\tBecause the minimum contribution often depends\n\t\t\t\t\ton the size of the item’s content,\n\t\t\t\t\tit is considered a type of intrinsic size contribution.
"
+ "html": "If the track has an auto min track sizing function and the grid container is being sized\n\t\t\t\t\tunder a min-/max-content constraint,\n\t\t\t\t\tset the track’s base size to the maximum of its items’ limited min-/max-content contributions (respectively),\n\t\t\t\t\tfloored at zero.\n\t\t\t\t\tThe limited min-/max-content contribution of an item\n\t\t\t\t\tis (for this purpose) its min-/max-content contribution (accordingly),\n\t\t\t\t\tlimited by the max track sizing function (which could be the argument to a fit-content() track sizing function)\n\t\t\t\t\tif that is fixed and ultimately floored by its minimum contribution (defined below). \n Otherwise,\n\t\t\t\t\tset the track’s base size to the maximum of its items’ minimum contributions,\n\t\t\t\t\tfloored at zero.\n\t\t\t\t\tThe minimum contribution of an item\n\t\t\t\t\tis the smallest outer size it can have.\n\t\t\t\t\tSpecifically,\n\t\t\t\t\tif the item’s computed preferred size behaves as auto or depends on the size of its containing block in the relevant axis,\n\t\t\t\t\tits minimum contribution is\n\t\t\t\t\tthe outer size that would result from assuming\n\t\t\t\t\tthe item’s used minimum size as its preferred size;\n\t\t\t\t\telse the item’s minimum contribution is\n\t\t\t\t\tits min-content contribution.\n\t\t\t\t\tBecause the minimum contribution often depends\n\t\t\t\t\ton the size of the item’s content,\n\t\t\t\t\tit is considered a type of intrinsic size contribution.
"
},
{
"case": "For min-content maximums:",
@@ -258,7 +258,7 @@
"html": " For content-based minimums: Next continue to to the base sizes of tracks with\n\t\t\t\t\ta min track sizing function of min-content or max-content,\n\t\t\t\t\tto accommodate these items' min-content contributions."
},
{
- "html": " For max-content minimums: Next, if the grid container is being sized\n\t\t\t\t\tunder a max-content constraint,\n\t\t\t\t\tcontinue to to the base sizes of tracks with\n\t\t\t\t\ta min track sizing function of auto or max-content,\n\t\t\t\t\tto accommodate these items' limited max-content contributions. \n In all cases,\n\t\t\t\t\tcontinue to to the base sizes of tracks with\n\t\t\t\t\ta min track sizing function of max-content,\n\t\t\t\t\tto accommodate these items' max-content contributions.
"
+ "html": " For max-content minimums: Next, if the grid container is being sized\n\t\t\t\t\tunder a max-content constraint,\n\t\t\t\t\tcontinue to to the base sizes of tracks with\n\t\t\t\t\ta min track sizing function of auto or max-content,\n\t\t\t\t\tto accommodate these items' limited max-content contributions. \n In all cases,\n\t\t\t\t\tcontinue to to the base sizes of tracks with\n\t\t\t\t\ta min track sizing function of max-content,\n\t\t\t\t\tto accommodate these items' max-content contributions.
"
},
{
"html": "If at this point any track’s growth limit is now less than its base size,\n\t\t\t\t\tincrease its growth limit to match its base size."
@@ -342,7 +342,7 @@
"rationale": "resolve",
"steps": [
{
- "html": "Layout the grid following the § 12 Grid Layout Algorithm by using the fragmentation container’s inline size and assume unlimited block size.\n\t\t\tDuring this step all grid-row auto and fr values must be resolved."
+ "html": "Layout the grid following the § 12 Grid Layout Algorithm by using the fragmentation container’s inline size and assume unlimited block size.\n\t\t\tDuring this step all grid-row auto and fr values must be resolved."
},
{
"html": "Layout the grid container using the values resolved in the previous step."
@@ -351,7 +351,7 @@
"html": "If a grid area’s size changes due to fragmentation (do not include items that\n\t\t\tspan rows in this decision), increase the grid row size as necessary for rows that either: \n \n - have a content min track sizing function. \n
- are in a grid that does not have an explicit height and the grid row is flexible. \n
"
},
{
- "html": "If the grid height is auto, the height of the grid should be the sum of the final\n\t\t\trow sizes."
+ "html": "If the grid height is auto, the height of the grid should be the sum of the final\n\t\t\trow sizes."
},
{
"html": "If a grid area overflows the grid container due to margins being collapsed during\n\t\t\tfragmentation, extend the grid container to contain this grid area (this step is\n\t\t\tnecessary in order to avoid circular layout dependencies due to fragmentation)."
diff --git a/ed/algorithms/css-grid-3.json b/ed/algorithms/css-grid-3.json
index 2b08c41019ca..eafc5db82540 100644
--- a/ed/algorithms/css-grid-3.json
+++ b/ed/algorithms/css-grid-3.json
@@ -9,13 +9,13 @@
"rationale": "for",
"steps": [
{
- "html": "Separate all the masonry items into item groups, according to the following properties: \n \n - \n
the span of the item
\n - \n
the placement of the item,\ni.e. which tracks it is allowed to be placed in
\n - \n
the item’s baseline-sharing group
\n
"
+ "html": "Separate all the masonry items into item groups, according to the following properties: \n \n - \n
the span of the item
\n - \n
the placement of the item,\ni.e. which tracks it is allowed to be placed in
\n - \n
the item’s baseline-sharing group
\n
"
},
{
"html": "For each item group, synthesize a virtual masonry item that has the maximum of every intrinsic size contribution\n\t\t\tamong the items in that group. \n If the items apply baseline alignment,\n\t\t\tdetermine the baselines of the virtual masonry item by placing all of its items into a single hypothetical grid track\n\t\t\tand finding their shared baseline(s) and shims.\n\t\t\tIncrease the group’s intrinsic size contributions accordingly.
"
},
{
- "html": "Place hypothetical copies of each virtual masonry item into the grid axis tracks\n\t\t\tin every position that the item could potentially occupy,\n\t\t\tand run the track sizing algorithm with those items.\n\t\t\tThe resulting track sizes are the masonry container’s track sizes."
+ "html": "Place hypothetical copies of each virtual masonry item into the grid axis tracks\n\t\t\tin every position that the item could potentially occupy,\n\t\t\tand run the track sizing algorithm with those items.\n\t\t\tThe resulting track sizes are the masonry container’s track sizes."
}
]
},
@@ -24,11 +24,11 @@
"rationale": "if",
"steps": [
{
- "html": "Otherwise, resolve its grid axis placement using these substeps:",
+ "html": "Otherwise, resolve its grid axis placement using these substeps:",
"rationale": "increment",
"steps": [
{
- "html": "Starting at the first grid axis line in the implicit grid,\n\t\t\t\t\tfind the largest running position of the grid axis tracks\n\t\t\t\t\tthat the item would span if it were placed at this line,\n\t\t\t\t\tand call this position max_pos."
+ "html": "Starting at the first grid axis line in the implicit grid,\n\t\t\t\t\tfind the largest running position of the grid axis tracks\n\t\t\t\t\tthat the item would span if it were placed at this line,\n\t\t\t\t\tand call this position max_pos."
},
{
"html": "Increment the line number and repeat step 2\n\t\t\t\t\tuntil the item would no longer fit inside the grid."
@@ -37,7 +37,7 @@
"html": "Let possible lines be the line that resulted in the smallest max_pos,\n\t\t\t\t\tand all lines that result in a max_pos within the tie threshold of this max_pos."
},
{
- "html": "Choose the first line in possible lines greater than or equal to the auto-placement cursor as the item’s position in the grid axis;\n\t\t\t\t\tor if there are none such, choose the first one."
+ "html": "Choose the first line in possible lines greater than or equal to the auto-placement cursor as the item’s position in the grid axis;\n\t\t\t\t\tor if there are none such, choose the first one."
},
{
"html": "Update the auto-placement cursor to point to item’s last line."
@@ -45,10 +45,10 @@
]
},
{
- "html": "Place the item in its grid axis tracks\n\t\t\tat the maximum of the running positions\n\t\t\tof the tracks it spans."
+ "html": "Place the item in its grid axis tracks\n\t\t\tat the maximum of the running positions\n\t\t\tof the tracks it spans."
},
{
- "html": "Calculate the size of the item’s containing block and then layout the item.\n\t\t\tSet the running position of the spanned grid axis tracks\n\t\t\tto max_pos + outer size + grid-gap
."
+ "html": "Calculate the size of the item’s containing block and then layout the item.\n\t\t\tSet the running position of the spanned grid axis tracks\n\t\t\tto max_pos + outer size + grid-gap
."
}
]
}
diff --git a/ed/algorithms/css-view-transitions-2.json b/ed/algorithms/css-view-transitions-2.json
index 52944803dbb5..286b565f5601 100644
--- a/ed/algorithms/css-view-transitions-2.json
+++ b/ed/algorithms/css-view-transitions-2.json
@@ -96,6 +96,16 @@
}
]
},
+ {
+ "name": "visibility change step additions",
+ "html": "The next steps are appended to the tasks view transition page-visibility change steps given document, after the current steps in the queued task:",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Set document’s inbound view transition params to null.
"
+ }
+ ]
+ },
{
"name": "resolve @view-transition rule",
"href": "https://drafts.csswg.org/css-view-transitions-2/#resolve-view-transition-rule",
@@ -192,7 +202,7 @@
"rationale": "set",
"steps": [
{
- "html": "Set newDocument’s inbound view transition params to params.
"
+ "html": "Set newDocument’s inbound view transition params to params.
"
},
{
"html": "Call proceedWithNavigation.
"
@@ -284,13 +294,13 @@
"html": "Update the opt-in state for outbound transitions for document.
"
},
{
- "html": "Let inboundViewTransitionParams be document’s inbound view transition params.
"
+ "html": "Let inboundViewTransitionParams be document’s inbound view transition params.
"
},
{
"html": "If inboundViewTransitionParams is null, then return null.
"
},
{
- "html": "Set document’s inbound view transition params to null.
"
+ "html": "Set document’s inbound view transition params to null.
"
},
{
"html": "If document’s active view transition is not null, then return null.
"
diff --git a/ed/algorithms/idle-detection.json b/ed/algorithms/idle-detection.json
index e82be950c320..9e96bcbd1e45 100644
--- a/ed/algorithms/idle-detection.json
+++ b/ed/algorithms/idle-detection.json
@@ -33,7 +33,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If the relevant global object of this does not have transient\nactivation, return a promise rejected with a \"NotAllowedError
\" DOMException
.
"
+ "html": "If this's relevant global object's associated Document is not fully active, return a promise rejected with a\n\"InvalidStateError
\" DOMException
.
"
+ },
+ {
+ "html": "If the relevant global object of this does not have transient\nactivation, return a promise rejected with a \"NotAllowedError
\" DOMException
.
"
},
{
"html": "Let result be a new promise.
"
@@ -46,7 +49,7 @@
"html": "Let permissionState be the result of requesting permission to use \"idle-detection\".
"
},
{
- "html": "Resolve result with permissionState.
"
+ "html": "Queue a global task on the relevant global object of this using the idle detection task source to resolve result with permissionState.
"
}
]
},
@@ -62,16 +65,22 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If the relevant global object's associated Document is not allowed\nto use \"idle-detection\", return a promise rejected with a\n\"NotAllowedError
\" DOMException
.
"
+ "html": "Let document be this's relevant global object's associated\nDocument.
"
},
{
- "html": "If this.[[state]]
is not \"stopped\"
,\nreturn a promise rejected with an \"InvalidStateError
\" DOMException
.
"
+ "html": "If document is not fully active, return a promise rejected with a\n\"InvalidStateError
\" DOMException
.
"
+ },
+ {
+ "html": "If document is not allowed to use \"idle-detection\",\nreturn a promise rejected with a \"NotAllowedError
\" DOMException
.
"
+ },
+ {
+ "html": "If this.[[state]]
is not \"stopped\"
,\nreturn a promise rejected with an \"InvalidStateError
\" DOMException
.
"
},
{
"html": "Set this.[[state]]
to \"starting\"
.
"
},
{
- "html": "If options[\"threshold\"
] is less than 60,000, return a promise rejected with a TypeError
.
"
+ "html": "If options[\"threshold\"
] is less than 60,000, return a promise rejected with a TypeError
.
"
},
{
"html": "Let result be a new promise.
"
@@ -105,29 +114,38 @@
"html": "Let permissionState be the permission state of \"idle-detection\"
.
"
},
{
- "html": "If permissionState is \"denied\"
, queue a task on the idle detection task source to perform the following steps:",
- "rationale": "set",
- "steps": [
- {
- "html": "Set this.[[state]]
to \"stopped\"
.
"
- },
- {
- "html": "Reject result with a \"NotAllowedError
\" DOMException
.
"
- }
- ]
- },
- {
- "html": "Otherwise, queue a task on the idle detection task source to perform the\nfollowing steps, but abort when this.[[state]]
becomes \"stopped\"
.",
- "rationale": "set",
+ "html": "Queue a global task on the relevant global object of this using the idle detection task source to perform the following steps:",
+ "rationale": "if",
"steps": [
{
- "html": "Set this.[[state]]
to \"started\"
.
"
- },
- {
- "html": "Set this.[[threshold]]
to options[\"threshold
\"].
"
+ "html": "If permissionState is \"denied\"
,",
+ "rationale": "set",
+ "steps": [
+ {
+ "html": "Set this.[[state]]
to \"stopped\"
.
"
+ },
+ {
+ "html": "Reject result with a \"NotAllowedError
\" DOMException
.
"
+ }
+ ]
},
{
- "html": "Resolve result.
"
+ "html": "Otherwise,",
+ "rationale": "if",
+ "steps": [
+ {
+ "html": "If this.[[state]]
is \"stopped\"
, abort these\nsteps.
"
+ },
+ {
+ "html": "Set this.[[state]]
to \"started\"
.
"
+ },
+ {
+ "html": "Set this.[[threshold]]
to options[\"threshold
\"].
"
+ },
+ {
+ "html": "Resolve result.
"
+ }
+ ]
}
]
}
@@ -140,7 +158,7 @@
},
{
"name": "state changes",
- "html": "If detector.[[userState]]
is \"active\"
and the user has not\ninteracted with the device within the last detector.[[threshold]]
milliseconds, it MUST queue a global task on the relevant global\nobject of detector using the idle detection task source to run the\nfollowing steps:",
+ "html": "If detector.[[userState]]
is \"active\"
and the user has not\ninteracted with the device within the last detector.[[threshold]]
milliseconds, it MUST queue a global task on the relevant global\nobject of detector using the idle detection task source to run the\nfollowing steps:",
"rationale": ".algorithm",
"steps": [
{
@@ -153,7 +171,7 @@
},
{
"name": "state changes",
- "html": "If detector.[[userState]]
is \"idle\"
and the user interacts with\nthe device, it MUST queue a global task on the relevant global\nobject of detector using the idle detection task source to run the\nfollowing steps:",
+ "html": "If detector.[[userState]]
is \"idle\"
and the user interacts with\nthe device, it MUST queue a global task on the relevant global\nobject of detector using the idle detection task source to run the\nfollowing steps:",
"rationale": "set",
"steps": [
{
@@ -166,7 +184,7 @@
},
{
"name": "state changes",
- "html": "If detector.[[screenState]]
is \"unlocked\"
and the screen is\nlocked, it MUST queue a global task on the relevant global object of detector using the idle detection task source to run the following\nsteps:",
+ "html": "If detector.[[screenState]]
is \"unlocked\"
and the screen is\nlocked, it MUST queue a global task on the relevant global object of detector using the idle detection task source to run the following\nsteps:",
"rationale": "set",
"steps": [
{
@@ -179,7 +197,7 @@
},
{
"name": "state changes",
- "html": "If detector.[[screenState]]
is \"locked\"
and the screen is\nunlocked, it MUST queue a global task on the relevant global object of detector using the idle detection task source to run the following\nsteps:",
+ "html": "If detector.[[screenState]]
is \"locked\"
and the screen is\nunlocked, it MUST queue a global task on the relevant global object of detector using the idle detection task source to run the following\nsteps:",
"rationale": "set",
"steps": [
{
diff --git a/ed/algorithms/shared-storage.json b/ed/algorithms/shared-storage.json
index e34f9f3e03f7..f0bdf12aecc8 100644
--- a/ed/algorithms/shared-storage.json
+++ b/ed/algorithms/shared-storage.json
@@ -287,7 +287,10 @@
]
},
{
- "html": "Let fencedFrameConfigMapping be window’s associated document's node navigable's traversable navigable's fenced frame config mapping.
"
+ "html": "Let navigable be window’s associated document's node navigable.
"
+ },
+ {
+ "html": "Let fencedFrameConfigMapping be navigable’s traversable navigable's fenced frame config mapping.
"
},
{
"html": "Let pendingConfig be a new fenced frame config.
"
@@ -339,7 +342,10 @@
"html": "Let pendingBits be the logarithm base 2 of urlList’s size.
"
},
{
- "html": "If pendingBits is greather than remainingBudget, set resultIndex to default index.
"
+ "html": "let pageBudgetResult be the result of running charge shared storage top-level traversable budgets with navigable, site, and pendingBits.
"
+ },
+ {
+ "html": "If pageBudgetResult is false, or if pendingBits is greather than remainingBudget, set resultIndex to the default selectURL index.
"
},
{
"html": "Let finalConfig be a new fenced frame config.
"
@@ -372,7 +378,7 @@
"html": "Let finalConfig be a new fenced frame config.
"
},
{
- "html": "Set finalConfig’s mapped url to urlList[default index].
"
+ "html": "Set finalConfig’s mapped url to urlList[default selectURL index].
"
},
{
"html": "Finalize a pending config on fencedFrameConfigMapping with urn and finalConfig.
"
@@ -738,52 +744,7 @@
"html": "Assert that dataOriginValue is not null.
"
},
{
- "html": " the (\"Sec-Shared-Storage-Data-Origin\"
, dataOriginValue) to request’s .
"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "html": "Worklets that load cross-origin scripts rely on CORS as a baseline permission mechanism to indicate trusted external origins. However, CORS alone is insufficient for creation of a worklet with cross-origin script whose data partition origin is the script origin. Unlike simple resource sharing, worklets allow the creator site to execute JavaScript within the context of the target origin. To ensure security, an additional response header, ``, is required from the script origin.",
- "rationale": "if",
- "steps": [
- {
- "html": "If request’s destination is \"sharedstorageworklet\":",
- "rationale": "let",
- "steps": [
- {
- "html": "Let dataOriginValue be the result of \"Sec-Shared-Storage-Data-Origin\"
from request’s .
"
- },
- {
- "html": "If dataOriginValue is not null, then:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let dataOriginUrl be the result of running a URL parser on dataOriginValue.
"
- },
- {
- "html": "Assert that dataOriginUrl is not failure.
"
- },
- {
- "html": "Assert that request’s origin is not \"client
\".
"
- },
- {
- "html": "Assert that request’s origin and request’s URL's origin are not same origin.
"
- },
- {
- "html": "Assert that dataOriginUrl’s origin and request’s URL's origin are same origin.
"
- },
- {
- "html": "Let responseHeaders be internalResponse’s .
"
- },
- {
- "html": "Let allowed be the result of running algorithm given ``, \"item\", and responseHeaders as input.
"
- },
- {
- "html": "If allowed is false, then return a network error.
"
+ "html": " the (`
`, dataOriginValue) to request’s .
"
}
]
}
@@ -825,7 +786,7 @@
"rationale": "assert",
"steps": [
{
- "html": "Assert: addModuleAllowedResult is \"Allowed\".
"
+ "html": "Assert: addModuleAllowedResult is \"Allowed\".
"
}
]
}
@@ -863,7 +824,7 @@
"html": "Let globalScopes be this’s global scopes.
"
},
{
- "html": "Assert: globalScopes’ size equals 1.
"
+ "html": "Assert: globalScopes’ size equals 1.
"
},
{
"html": "Let privateAggregationObj be globalScopes[0]'s privateAggregation
.
"
@@ -972,7 +933,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let url be the result of running a URL parser on urlString.
"
+ "html": "Let url be the result of running a URL parser on urlString.
"
},
{
"html": "If url is not a valid URL, return undefined.
"
@@ -992,7 +953,7 @@
"html": "If reportingMetadata is empty, return.
"
},
{
- "html": "Assert: reportingMetadata is a dictionary.
"
+ "html": "Assert: reportingMetadata is a dictionary.
"
},
{
"html": "Let reportingUrlMap be an empty map.
"
@@ -1002,10 +963,10 @@
"rationale": "let",
"steps": [
{
- "html": "Let url be the result of running a URL parser on urlString.
"
+ "html": "Let url be the result of running a URL parser on urlString.
"
},
{
- "html": "Assert: url is a valid URL.
"
+ "html": "Assert: url is a valid URL.
"
},
{
"html": "Set reportingUrlMap[eventType] to url.
"
@@ -1014,14 +975,25 @@
}
]
},
+ {
+ "name": "get the default selectURL index",
+ "href": "https://wicg.github.io/shared-storage/#get-the-default-selecturl-index",
+ "html": "To get the default selectURL index, given sequence
<USVString
> urls, run the following steps:",
+ "rationale": ".algorithm",
+ "steps": [
+ {
+ "html": "Return 0.
"
+ }
+ ]
+ },
{
"name": "determine remaining navigation budget",
"href": "https://wicg.github.io/shared-storage/#determine-remaining-navigation-budget",
- "html": "To determine remaining navigation budget, given an environment settings object environment and a calling site site, run the following steps:",
+ "html": "To determine remaining navigation budget, given an environment settings object environment and a site site, run the following steps:",
"rationale": ".algorithm",
"steps": [
{
- "html": "Assert: site is not an opaque origin.
"
+ "html": "Assert: site is not an opaque origin.
"
},
{
"html": "Let maxBits be the user agent's navigation entropy allowance.
"
@@ -1095,7 +1067,7 @@
"html": "Let site be the result of running obtain a site with currentNavigable’s active document's origin.
"
},
{
- "html": "Let instance be currentNavigable’s node document's browsing context's fenced frame config instance.
"
+ "html": "Let instance be currentNavigable’s node document's browsing context's fenced frame config instance.
"
},
{
"html": "Set currentNavigable to currentNavigable’s parent.
"
@@ -1107,7 +1079,7 @@
"html": "Let pendingBits be instance’s pending shared storage budget debit.
"
},
{
- "html": "If pendingBits is not greater than 0, or if instance’s shared storage navigation budget charged is true, then continue.
"
+ "html": "If pendingBits is not greater than 0, then continue.
"
},
{
"html": "Let ledger be user agent's shared storage navigation budget table[site].
"
@@ -1128,105 +1100,79 @@
"html": "Append bitDebit to ledger.
"
},
{
- "html": "Set instance’s shared storage navigation budget charged to true.
"
+ "html": "Set pendingBits to 0.
"
}
]
}
]
},
{
- "name": "determine reporting budget to charge",
- "href": "https://wicg.github.io/shared-storage/#determine-reporting-budget-to-charge",
- "html": "To determine reporting budget to charge, given a Document
sourceDocument, run the following steps:",
+ "name": "purge expired bit debits from all navigation entropy ledgers",
+ "href": "https://wicg.github.io/shared-storage/#purge-expired-bit-debits-from-all-navigation-entropy-ledgers",
+ "html": "To purge expired bit debits from all navigation entropy ledgers, run the following steps:",
"rationale": ".algorithm",
"steps": [
{
- "html": "Let debitSum be 0.
"
- },
- {
- "html": "Let currentNavigable be sourceDocument’s node navigable.
"
- },
+ "html": "For each origin → ledger of user agent's shared storage navigation budget table:",
+ "rationale": "for",
+ "steps": [
+ {
+ "html": "For each bitDebit in ledger, if the result of running check whether a bit debit is expired with bitDebit is true, remove bitDebit from ledger.
"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "html": "Modify the initialize the navigable algorithm by adding the following steps at the end:",
+ "rationale": "if",
+ "steps": [
{
- "html": "While currentNavigable is not null:",
+ "html": "If parent is null and navigable is a traversable navigable, then:",
"rationale": "let",
"steps": [
{
- "html": "Let instance be currentNavigable’s initiator fenced frame config instance.
"
+ "html": "Let newPageBudget be a shared storage page budget with an empty site budget map.
"
},
{
- "html": "Set currentNavigable to currentNavigable’s parent.
"
+ "html": "Set newPageBudget’s overall budget to overall page entropy allowance.
"
},
{
- "html": "If instance is null, then continue.
"
- },
- {
- "html": "Let pendingBits be instance’s pending shared storage budget debit.
"
- },
- {
- "html": "If pendingBits is greater than 0 and if instance’s shared storage reporting budget charged is false, increment debitSum by pendingBits.
"
+ "html": "Set navigable’s page budget to newPageBudget.
"
}
]
- },
- {
- "html": "Return debitSum.
"
}
]
},
{
- "name": "charge shared storage reporting budget",
- "href": "https://wicg.github.io/shared-storage/#charge-shared-storage-reporting-budget",
- "html": "To charge shared storage reporting budget given a Document
sourceDocument, run the following steps:",
+ "name": "charge shared storage top-level traversable budgets",
+ "href": "https://wicg.github.io/shared-storage/#charge-shared-storage-top-level-traversable-budgets",
+ "html": "To charge shared storage top-level traversable budgets given a navigable navigable, site site, and double pendingBits, run the following steps:",
"rationale": ".algorithm",
"steps": [
{
- "html": "Let toCharge be the result of running determine reporting budget to charge with sourceDocument.
"
+ "html": "Let topLevelTraversable be the result of running get the top-level traversable for navigable.
"
},
{
- "html": "Let currentNavigable be sourceDocument’s node navigable.
"
+ "html": "Assert that topLevelTraversable’s page budget is not null.
"
},
{
- "html": "Let topNode be the result of running get the top-level traversable for currentNavigable.
"
+ "html": "If pendingBits is greater than topLevelTraversable’s page budget's overall budget, then return false and abort these steps.
"
},
{
- "html": "If topNode’s shared storage reporting budget is less than toCharge, return false.
"
+ "html": "If topLevelTraversable’s page budget's site budget map does not contain site, then set topLevelTraversable’s page budget's site budget map [site] to site page entropy allowance.
"
},
{
- "html": "While currentNavigable is not null:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let instance be currentNavigable’s node document's browsing context's fenced frame config instance.
"
- },
- {
- "html": "If instance is not null and if instance’s pending shared storage budget debit is greater than 0, set instance’s shared storage reporting budget charged to true.
"
- },
- {
- "html": "Set currentNavigable to currentNavigable’s parent.
"
- }
- ]
+ "html": "If pendingBits is greater than topLevelTraversable’s page budget's site budget map [site], then return false and abort these steps.
"
},
{
- "html": "Decrement topNode’s shared storage reporting budget by toCharge.
"
+ "html": "Decrement topLevelTraversable’s page budget's site budget map [site] by pendingBits.
"
},
{
- "html": "Return true.
"
- }
- ]
- },
- {
- "name": "purge expired bit debits from all navigation entropy ledgers",
- "href": "https://wicg.github.io/shared-storage/#purge-expired-bit-debits-from-all-navigation-entropy-ledgers",
- "html": "To purge expired bit debits from all navigation entropy ledgers, run the following steps:",
- "rationale": ".algorithm",
- "steps": [
+ "html": "Decrement topLevelTraversable’s page budget's overall budget by pendingBits.
"
+ },
{
- "html": "For each origin → ledger of user agent's shared storage navigation budget table:",
- "rationale": "for",
- "steps": [
- {
- "html": "For each bitDebit in ledger, if the result of running check whether a bit debit is expired with bitDebit is true, remove bitDebit from ledger.
"
- }
- ]
+ "html": "Return true.
"
}
]
},
@@ -1297,7 +1243,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let shed be the user agent's shared storage shed.
"
+ "html": "Let shed be the user agent's shared storage shed.
"
},
{
"html": "Let shelf be the result of running obtain a shared storage shelf with shed, environment, and origin.
"
@@ -1312,7 +1258,7 @@
"html": "Let bottle be bucket’s bottle map[\"sharedStorage
\"].
"
},
{
- "html": "Let proxyMap be a new storage proxy map whose backing map is bottle’s map.
"
+ "html": "Let proxyMap be a new storage proxy map whose backing map is bottle’s map.
"
},
{
"html": "Append proxyMap to bottle’s proxy map reference set.
"
@@ -1341,7 +1287,7 @@
"html": "Set valueStruct’s last updated to currentTime.
"
},
{
- "html": "Set databaseMap[key] to valueStruct.
"
+ "html": "Set databaseMap[key] to valueStruct.
"
},
{
"html": "If an exception was thrown, then return false.
"
@@ -1358,7 +1304,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If databaseMap does not contain key, return undefined.
"
+ "html": "If databaseMap does not contain key, return undefined.
"
},
{
"html": "Let valueStruct be the result of running Get on databaseMap with key.
"
@@ -1481,7 +1427,7 @@
"html": "Let lastUpdated be valueStruct’s last updated.
"
},
{
- "html": "Let lifetime be user agent's default entry lifetime.
"
+ "html": "Let lifetime be user agent's default entry lifetime.
"
},
{
"html": "Let expiration be the sum of lastUpdated and lifetime.
"
@@ -1521,7 +1467,7 @@
"html": "Let sharedStorage be this.
"
},
{
- "html": "Return sharedStorage.worklet
.selectURL
(name, urls, options).
"
+ "html": "Return sharedStorage.worklet
.selectURL
(name, urls, options).
"
}
]
},
@@ -1549,7 +1495,7 @@
"html": "Let sharedStorageWorklet be a new SharedStorageWorklet
.
"
},
{
- "html": "If options contains dataOrigin, set sharedStorageWorklet’s data origin to options[dataOrigin].
"
+ "html": "If options contains dataOrigin, set sharedStorageWorklet’s data origin to options[dataOrigin].
"
},
{
"html": "Let addModulePromise be the result of invoking sharedStorageWorklet.addModule
(moduleURL, options).
"
@@ -2166,7 +2112,7 @@
"html": "Let site be the result of running obtain a site with realm’s settings object's origin.
"
},
{
- "html": "Assert: site is not an opaque origin.
"
+ "html": "Assert: site is not an opaque origin.
"
},
{
"html": "Let queue be context’s associated database's shared storage database queue.
"
@@ -2326,7 +2272,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If init[\"sharedStorageWritable
\"] exists, then set request’s shared storage writable to it.
"
+ "html": "If init[\"sharedStorageWritable
\"] exists, then set request’s shared storage writable to it.
"
}
]
},
@@ -2342,9 +2288,48 @@
},
{
"name": "modification-to-http-fetch",
- "html": "add the step",
+ "html": "add the steps",
"rationale": ".algorithm",
"steps": [
+ {
+ "html": "If request’s destination is \"sharedstorageworklet\":",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let dataOriginValue be the result of `
` from request’s .
"
+ },
+ {
+ "html": "If dataOriginValue is not null, then:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let dataOriginUrl be the result of running a URL parser on dataOriginValue.
"
+ },
+ {
+ "html": "Assert that dataOriginUrl is not failure.
"
+ },
+ {
+ "html": "Assert that request’s origin is not \"client
\".
"
+ },
+ {
+ "html": "Assert that request’s origin and request’s URL's origin are not same origin.
"
+ },
+ {
+ "html": "Assert that dataOriginUrl’s origin and request’s URL's origin are same origin.
"
+ },
+ {
+ "html": "Let responseHeaders be internalResponse’s .
"
+ },
+ {
+ "html": "Let allowed be the result of running algorithm given `
`, \"item\", and responseHeaders as input.
"
+ },
+ {
+ "html": "If allowed is false, then return a network error.
"
+ }
+ ]
+ }
+ ]
+ },
{
"html": "Handle a Shared-Storage-Write response, given response internalResponse and request request as input.
"
}
@@ -2353,7 +2338,7 @@
{
"name": "determine whether a request can currently use shared storage",
"href": "https://wicg.github.io/shared-storage/#determine-whether-a-request-can-currently-use-shared-storage",
- "html": "To determine whether a request can currently use shared storage, given a request request, perform the following steps:",
+ "html": "To determine whether a request can currently use shared storage, given a request request, perform the following steps:",
"rationale": ".algorithm",
"steps": [
{
@@ -2366,17 +2351,17 @@
"html": "Let allowedInOpaqueOriginContext be true.
"
},
{
- "html": "If the result of running determine whether shared storage is allowed by context given window, request’s current URL's origin, and allowedInOpaqueOriginContext is false, return false.
"
+ "html": "If the result of running determine whether shared storage is allowed by context given window, request’s current URL's origin, and allowedInOpaqueOriginContext is false, return false.
"
},
{
- "html": "If the result of running check if user preference setting allows access to shared storage given window and request’s current URL's origin is false, return false.
"
+ "html": "If the result of running check if user preference setting allows access to shared storage given window and request’s current URL's origin is false, return false.
"
}
]
},
{
"name": "append or modify a Sec-Shared-Storage-Writable request header",
"href": "https://wicg.github.io/shared-storage/#append-or-modify-a-sec-shared-storage-writable-request-header",
- "html": "To , given a request request, perform the following steps:",
+ "html": "To , given a request request, perform the following steps:",
"rationale": ".algorithm",
"steps": [
{
@@ -2393,20 +2378,20 @@
{
"name": "handle a Shared-Storage-Write response",
"href": "https://wicg.github.io/shared-storage/#handle-a-shared-storage-write-response",
- "html": "To handle a Shared-Storage-Write response, given a response response and a request request, perform the following steps:",
+ "html": "To handle a Shared-Storage-Write response, given a response response and a request request, perform the following steps:",
"rationale": ".algorithm",
"steps": [
{
"html": "Let sharedStorageWritable the result of running algorithm given `
`, \"item
\", and request’s as input.
"
},
{
- "html": "If sharedStorageWritable is null, or sharedStorageWritable is not a Boolean, or the value of sharedStorageWritable is false, return.
"
+ "html": "If sharedStorageWritable is null, or sharedStorageWritable is not a Boolean, or the value of sharedStorageWritable is false, return.
"
},
{
"html": "Let window to request’s window.
"
},
{
- "html": "Assert: window is an environment settings object whose global object is a Window
.
"
+ "html": "Assert: window is an environment settings object whose global object is a Window
.
"
},
{
"html": "Let sharedStorage be window’s global object's sharedStorage
.
"
@@ -2431,7 +2416,7 @@
"html": "If item is an Inner List, continue.
"
},
{
- "html": "Assert: item is an Bare Item.
"
+ "html": "Assert: item is an Bare Item.
"
},
{
"html": "Let operationString be the result of running get the string value for item.
"
@@ -2518,7 +2503,7 @@
"html": "Let options be a new SharedStorageSetMethodOptions
.
"
},
{
- "html": "If the result of running obtain a boolean parameter value with parameters and \"ignore_if_present
\" is true, set options[\"ignoreIfPresent
\"] to true.
"
+ "html": "If the result of running obtain a boolean parameter value with parameters and \"ignore_if_present
\" is true, set options[\"ignoreIfPresent
\"] to true.
"
},
{
"html": "Run sharedStorage.set
(key, value, options).
"
@@ -2547,7 +2532,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If the item is a String, Token, or Byte Sequence, return true.
"
+ "html": "If the item is a String, Token, or Byte Sequence, return true.
"
},
{
"html": "Otherwise, return false.
"
@@ -2576,7 +2561,7 @@
"rationale": "assert",
"steps": [
{
- "html": "Assert: item is an ASCII string.
"
+ "html": "Assert: item is an ASCII string.
"
},
{
"html": "Return item.
"
@@ -2589,7 +2574,7 @@
"rationale": "assert",
"steps": [
{
- "html": "Assert: item is an ASCII string.
"
+ "html": "Assert: item is an ASCII string.
"
},
{
"html": "Return item.
"
@@ -2625,7 +2610,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If parameters does not contain paramKey, return null.
"
+ "html": "If parameters does not contain paramKey, return null.
"
},
{
"html": "If the result of check if string-like for parameters[paramKey] is false, return null.
"
@@ -2642,10 +2627,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If parameters does not contain paramKey, return null.
"
+ "html": "If parameters does not contain paramKey, return null.
"
},
{
- "html": "If parameters[paramKey] is not a Boolean, return null.
"
+ "html": "If parameters[paramKey] is not a Boolean, return null.
"
},
{
"html": "Return parameters[paramKey].
"
diff --git a/ed/algorithms/webgpu.json b/ed/algorithms/webgpu.json
index 81ab6b760c5b..341ef1a3d08c 100644
--- a/ed/algorithms/webgpu.json
+++ b/ed/algorithms/webgpu.json
@@ -75,7 +75,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If usageScope[subresource] does not exist, set it to []
.
"
+ "html": "If usageScope[subresource] does not exist, set it to []
.
"
},
{
"html": "Append usage to usageScope[subresource].
"
@@ -232,7 +232,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Assert idlValue is a finite value, since it is not unrestricted double
or unrestricted float
.
"
+ "html": "Assert idlValue is a finite value, since it is not unrestricted double
or unrestricted float
.
"
},
{
"html": "Let v be the ECMAScript Number resulting from ! converting idlValue to an ECMAScript value.
"
@@ -286,7 +286,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If the components of format (assert they all have the same type) are:",
+ "html": "If the components of format (assert they all have the same type) are:",
"rationale": ".switch",
"steps": [
{
@@ -486,7 +486,7 @@
"html": "Lose the device(device, \"unknown\"
).
"
},
{
- "html": "Assert adapter.[[state]]
is \"expired\"
.
"
+ "html": "Assert adapter.[[state]]
is \"expired\"
.
"
}
],
"additional": [
@@ -554,7 +554,7 @@
"html": "Set this.[[device]]
.[[destroy started]]
to true
.
"
},
{
- "html": "Once:
\n \n - \n
All currently-enqueued operations on any queue on this device have completed, and
\n - \n
Any device timeline steps that were listening for completion of\nqueue operations have completed\n(asserting that no new listeners were added after [[destroy started]]
was set):
\n
\n Then issue the subsequent steps on the current timeline.
"
+ "html": "Once:
\n \n - \n
All currently-enqueued operations on any queue on this device have completed, and
\n - \n
Any device timeline steps that were listening for completion of\nqueue operations have completed\n(asserting that no new listeners were added after [[destroy started]]
was set):
\n
\n Then issue the subsequent steps on the current timeline.
"
}
]
},
@@ -630,7 +630,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following requirements are unmet, generate a validation error, invalidate b, and stop.
\n "
+ "html": "If any of the following requirements are unmet, generate a validation error, invalidate b and return.
\n "
}
]
},
@@ -843,7 +843,7 @@
"rationale": "assert",
"steps": [
{
- "html": "Assert p is rejected.
"
+ "html": "Assert p is rejected.
"
},
{
"html": "Return.
"
@@ -851,10 +851,10 @@
]
},
{
- "html": "Assert p is pending.
"
+ "html": "Assert p is pending.
"
},
{
- "html": "Assert internalStateAtCompletion is \"unavailable\".
"
+ "html": "Assert internalStateAtCompletion is \"unavailable\".
"
},
{
"html": "If this allocation fails:",
@@ -890,7 +890,7 @@
"rationale": "assert",
"steps": [
{
- "html": "Assert p is already rejected.
"
+ "html": "Assert p is already rejected.
"
},
{
"html": "Return.
"
@@ -898,7 +898,7 @@
]
},
{
- "html": "Assert p is still pending.
"
+ "html": "Assert p is still pending.
"
},
{
"html": "Set this.[[pending_map]]
to null
.
"
@@ -941,7 +941,7 @@
]
},
{
- "html": "If any of the following conditions are unsatisfied, throw an OperationError
and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, throw an OperationError
and return.
\n "
},
{
"html": "Let data be this.[[mapping]]
.data.
"
@@ -1024,7 +1024,7 @@
"html": "If any of the following conditions are unsatisfied, return.
\n "
},
{
- "html": "Assert this.[[internal state]]
is \"unavailable\".
"
+ "html": "Assert this.[[internal state]]
is \"unavailable\".
"
},
{
"html": "If bufferUpdate is not null
:",
@@ -1169,7 +1169,7 @@
},
{
"case": "\"3d\"",
- "html": "Let m = max(max(size.width, size.height), size.depthOrArrayLayer).
"
+ "html": "Let m = max(max(size.width, size.height), size.depthOrArrayLayers).
"
}
]
}
@@ -1237,7 +1237,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate t, and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate t and return.
\n "
},
{
"html": "Set t.[[viewFormats]]
to descriptor.viewFormats
.
"
@@ -1392,7 +1392,7 @@
"html": "Let resolved be a copy of descriptor.
"
},
{
- "html": "If resolved.format
is not provided:",
+ "html": "If resolved.format
is not provided:",
"rationale": "let",
"steps": [
{
@@ -1404,10 +1404,10 @@
]
},
{
- "html": "If resolved.mipLevelCount
is not provided:\nset resolved.mipLevelCount
to texture.mipLevelCount
− resolved.baseMipLevel
.
"
+ "html": "If resolved.mipLevelCount
is not provided:\nset resolved.mipLevelCount
to texture.mipLevelCount
− resolved.baseMipLevel
.
"
},
{
- "html": "If resolved.dimension
is not provided and texture.dimension
is:",
+ "html": "If resolved.dimension
is not provided and texture.dimension
is:",
"rationale": ".switch",
"steps": [
{
@@ -1430,7 +1430,7 @@
]
},
{
- "html": "If resolved.arrayLayerCount
is not provided and resolved.dimension
is:",
+ "html": "If resolved.arrayLayerCount
is not provided and resolved.dimension
is:",
"rationale": ".switch",
"steps": [
{
@@ -1567,7 +1567,7 @@
"rationale": "if",
"steps": [
{
- "html": "If source is not origin-clean,\nthrow a SecurityError
and stop.
"
+ "html": "If source is not origin-clean,\nthrow a SecurityError
and return.
"
},
{
"html": "Let usability be ? check the usability of the image argument(source).
"
@@ -1644,7 +1644,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate s, and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate s and return.
\n "
},
{
"html": "Set s.[[descriptor]]
to descriptor.
"
@@ -1736,7 +1736,7 @@
"rationale": "if",
"steps": [
{
- "html": "If entry.storageTexture
is provided:
",
+ "html": "If entry.storageTexture
is provided:
",
"ignored": [
"? Validate texture format required features for entry.storageTexture.format with this.[[device]]."
]
@@ -1761,13 +1761,13 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate layout, and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate layout and return.
\n "
},
{
"html": "Set layout.[[descriptor]]
to descriptor.
"
},
{
- "html": "Set layout.[[dynamicOffsetCount]]
to the number of\nentries in descriptor where buffer
is provided and buffer
.hasDynamicOffset
is true
.
"
+ "html": "Set layout.[[dynamicOffsetCount]]
to the number of\nentries in descriptor where buffer
is provided and buffer
.hasDynamicOffset
is true
.
"
},
{
"html": "Set layout.[[exclusivePipeline]]
to null
.
"
@@ -1803,16 +1803,16 @@
"html": "Let bindGroupLayoutEntry be bindGroup.[[layout]]
.[[entryMap]]
[bindGroupEntry.binding
].
"
},
{
- "html": "If bindGroupLayoutEntry.buffer
is not provided, continue.
"
+ "html": "If bindGroupLayoutEntry.buffer
is not provided, continue.
"
},
{
"html": "Let bound be a copy of bindGroupEntry.resource
.
"
},
{
- "html": "Assert bound is a GPUBufferBinding
.
"
+ "html": "Assert bound is a GPUBufferBinding
.
"
},
{
- "html": "If bindGroupLayoutEntry.buffer
.hasDynamicOffset
:",
+ "html": "If bindGroupLayoutEntry.buffer
.hasDynamicOffset
:",
"rationale": "increment",
"steps": [
{
@@ -1860,7 +1860,7 @@
"html": "Let limits be this.[[device]]
.[[limits]]
.
"
},
{
- "html": "If the defined binding member for layoutBinding is",
+ "html": "If the defined binding member for layoutBinding is:",
"rationale": ".switch",
"steps": [
{
@@ -1896,11 +1896,11 @@
},
{
"case": "storageTexture",
- "html": ""
+ "html": ""
},
{
"case": "buffer",
- "html": "If layoutBinding.buffer
.type
is",
+ "html": "If layoutBinding.buffer
.type
is",
"rationale": ".switch",
"steps": [
{
@@ -1946,7 +1946,7 @@
"html": "Each subresource seen by resource is added to [[usedResources]]
as internalUsage.
"
},
{
- "html": "Let bindingDescriptor.[[prevalidatedSize]]
be false
if the defined binding member for layoutBinding is buffer
and layoutBinding.buffer
.minBindingSize
is 0
, and true
otherwise.
"
+ "html": "Let bindingDescriptor.[[prevalidatedSize]]
be false
if the defined binding member for layoutBinding is buffer
and layoutBinding.buffer
.minBindingSize
is 0
, and true
otherwise.
"
}
]
}
@@ -1959,7 +1959,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If binding.size
is not provided:",
+ "html": "If binding.size
is not provided:",
"rationale": "return",
"steps": [
{
@@ -2002,7 +2002,7 @@
"html": "Let allEntries be the result of concatenating bgl.[[descriptor]]
.entries
for all bgl in descriptor.bindGroupLayouts
.
"
},
{
- "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate pl, and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate pl and return.
\n "
},
{
"html": "Set the pl.[[bindGroupLayouts]]
to descriptor.bindGroupLayouts
.
"
@@ -2236,7 +2236,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate layout, and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate layout and return.
\n "
},
{
"html": "Initialize layout so it is a copy of this.[[layout]]
.[[bindGroupLayouts]]
[index].
"
@@ -2272,7 +2272,7 @@
"html": "Let shaderStage be the GPUShaderStageFlags
for the shader stage\nat which stageDesc is used in pipeline.
"
},
{
- "html": "Let entryPoint be get the entry point(shaderStage, stageDesc). Assert entryPoint is not null
.
"
+ "html": "Let entryPoint be get the entry point(shaderStage, stageDesc). Assert entryPoint is not null
.
"
},
{
"html": "For each resource resource statically used by entryPoint:",
@@ -2344,12 +2344,12 @@
"rationale": "set",
"steps": [
{
- "html": "Set bufferLayout.type
to \"storage\"
.
"
+ "html": "Set bufferLayout.type
to \"storage\"
.
"
}
]
},
{
- "html": "Set entry.buffer
to bufferLayout.
"
+ "html": "Set entry.buffer
to bufferLayout.
"
}
]
},
@@ -2441,7 +2441,7 @@
]
},
{
- "html": "Set entry.storageTexture
to storageTextureLayout.
"
+ "html": "Set entry.storageTexture
to storageTextureLayout.
"
}
]
},
@@ -2462,11 +2462,11 @@
]
},
{
- "html": "If resource is for a buffer binding and entry has greater buffer
.minBindingSize
than previousEntry:",
+ "html": "If resource is for a buffer binding and entry has greater buffer
.minBindingSize
than previousEntry:",
"rationale": "set",
"steps": [
{
- "html": "Set previousEntry.buffer
.minBindingSize
to entry.buffer
.minBindingSize
.
"
+ "html": "Set previousEntry.buffer
.minBindingSize
to entry.buffer
.minBindingSize
.
"
}
]
},
@@ -2551,7 +2551,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If descriptor.entryPoint
is provided:",
+ "html": "If descriptor.entryPoint
is provided:",
"rationale": "if",
"steps": [
{
@@ -2612,7 +2612,7 @@
]
},
{
- "html": "For each pipeline-overridable constant identifier string key which is statically used by entryPoint:
\n "
+ "html": "For each pipeline-overridable constant identifier string key which is statically used by entryPoint:
\n "
},
{
"html": "Pipeline-creation program errors must not\nresult from the rules of the [WGSL] specification.
"
@@ -2630,7 +2630,7 @@
"steps": [
{
"case": "buffer",
- "html": "If entry.buffer
.type
is:",
+ "html": "If entry.buffer
.type
is:",
"rationale": ".switch",
"steps": [
{
@@ -2678,7 +2678,7 @@
},
{
"case": "storageTexture",
- "html": "If entry.storageTexture
.viewDimension
is:",
+ "html": "If entry.storageTexture
.viewDimension
is:",
"rationale": ".switch",
"steps": [
{
@@ -2761,7 +2761,7 @@
"html": "Let layout be a new default pipeline layout for pipeline if descriptor.layout
is \"auto\"
,\nand descriptor.layout
otherwise.
"
},
{
- "html": "All of the requirements in the following steps must be met.\nIf any are unmet, generate a validation error, invalidate pipeline, and stop.
\n \n \n
",
+ "html": "All of the requirements in the following steps must be met.\nIf any are unmet, generate a validation error, invalidate pipeline and return.
\n \n \n
",
"rationale": "let",
"steps": [
{
@@ -2771,7 +2771,7 @@
"html": "validating GPUProgrammableStage(COMPUTE
, descriptor.compute
, layout, this) must succeed.
"
},
{
- "html": "Let entryPoint be get the entry point(COMPUTE
, descriptor.compute
).
\n Assert entryPoint is not null
.
"
+ "html": "Let entryPoint be get the entry point(COMPUTE
, descriptor.compute
).
\n Assert entryPoint is not null
.
"
},
{
"html": "Let workgroupStorageUsed be the sum of roundUp(16, SizeOf(T)) over each\ntype T of all variables with address space \"workgroup\" statically used by entryPoint.
\n workgroupStorageUsed must be ≤ device.limits.maxComputeWorkgroupStorageSize
.
"
@@ -2785,7 +2785,7 @@
]
},
{
- "html": "If any pipeline-creation uncategorized errors result from the implementation of pipeline creation, generate an internal error, invalidate pipeline, and stop.
"
+ "html": "If any pipeline-creation uncategorized errors result from the implementation of pipeline creation, generate an internal error, invalidate pipeline and return.
"
},
{
"html": "Set pipeline.[[layout]]
to layout.
"
@@ -2880,7 +2880,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If descriptor.fragment
is provided:",
+ "html": "If descriptor.fragment
is provided:",
"rationale": "for",
"steps": [
{
@@ -2892,7 +2892,7 @@
]
},
{
- "html": "If descriptor.depthStencil
is provided:
",
+ "html": "If descriptor.depthStencil
is provided:
",
"ignored": [
"? Validate texture format required features of descriptor.depthStencil.format with this.[[device]]."
]
@@ -2918,10 +2918,25 @@
"html": "Let layout be a new default pipeline layout for pipeline if descriptor.layout
is \"auto\"
,\nand descriptor.layout
otherwise.
"
},
{
- "html": "If any of the following conditions are unsatisfied: generate a validation error, invalidate pipeline, and stop.
\n "
+ "html": "All of the requirements in the following steps must be met.\nIf any are unmet, invalidate pipeline and return.
\n \n \n
",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "layout must be valid to use with this.
"
+ },
+ {
+ "html": "validating GPURenderPipelineDescriptor(descriptor, layout, this) must succeed.
"
+ },
+ {
+ "html": "Let vertexBufferCount be the index of the last non-null entry in descriptor.vertex
.buffers
,\nplus 1; or 0 if there are none.
"
+ },
+ {
+ "html": "layout.[[bindGroupLayouts]]
.size + vertexBufferCount must be ≤ this.[[device]]
.[[limits]]
.maxBindGroupsPlusVertexBuffers
.
"
+ }
+ ]
},
{
- "html": "If any pipeline-creation uncategorized errors result from the implementation of pipeline creation, generate an internal error, invalidate pipeline, and stop.
"
+ "html": "If any pipeline-creation uncategorized errors result from the implementation of pipeline creation, generate an internal error, invalidate pipeline and return.
"
},
{
"html": "Set pipeline.[[descriptor]]
to descriptor.
"
@@ -2940,7 +2955,7 @@
"rationale": "if",
"steps": [
{
- "html": "If depthStencil.depthWriteEnabled
is provided:",
+ "html": "If depthStencil.depthWriteEnabled
is provided:",
"rationale": "set",
"steps": [
{
@@ -3076,7 +3091,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Return true
if all of the following conditions are satisfied:
\n ",
+ "html": "Return true
if all of the following conditions are satisfied:
\n ",
"ignored": [
"descriptor.fragment must be provided. descriptor.fragment.targets[0] must exist and be non-null. descriptor.fragment.targets[0].format must be a GPUTextureFormat which is blendable and has an alpha channel."
]
@@ -3123,7 +3138,7 @@
"html": "Return false
if any of the following requirements are unmet:
\n \n - \n
There must be no more than maxVertexShaderOutputVariables user-defined outputs for descriptor.vertex
.
\n - \n
The location of each user-defined output of descriptor.vertex
must be\n≤ maxVertexShaderOutputLocation.
\n
"
},
{
- "html": "If descriptor.fragment
is provided:",
+ "html": "If descriptor.fragment
is provided:",
"rationale": "let",
"steps": [
{
@@ -3142,7 +3157,7 @@
"html": "Return false
if any of the following requirements are unmet:
\n \n - \n
For each user-defined input of descriptor.fragment
there\nmust be a user-defined output of descriptor.vertex
that location, type, and interpolation of the input.
\n \n - \n
There must be no more than maxFragmentShaderInputVariables user-defined inputs for descriptor.fragment
.
\n
"
},
{
- "html": "Assert that the location of each user-defined input of descriptor.fragment
is less\nthan device.limits.maxInterStageShaderVariables
.\n(This follows from the above rules.)
"
+ "html": "Assert that the location of each user-defined input of descriptor.fragment
is less\nthan device.limits.maxInterStageShaderVariables
.\n(This follows from the above rules.)
"
}
]
},
@@ -3158,7 +3173,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Return true
if all of the following conditions are satisfied:
\n "
+ "html": "Return true
if all of the following conditions are satisfied:
\n "
}
]
},
@@ -3299,7 +3314,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Return true
if, and only if, all of the following conditions are satisfied:
\n "
+ "html": "Return true
if, and only if, all of the following conditions are satisfied:
\n "
}
]
},
@@ -3341,7 +3356,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Return true
, if and only if, all of the following conditions are satisfied:
\n "
+ "html": "Return true
, if and only if, all of the following conditions are satisfied:
\n "
}
]
},
@@ -3378,7 +3393,7 @@
"rationale": "assert",
"steps": [
{
- "html": "Assert index is 0
"
+ "html": "Assert index is 0
"
},
{
"html": "Let depthSliceOrLayer be texture
"
@@ -3527,7 +3542,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Let:
\n "
+ "html": "Let:
\n "
},
{
"html": "Fail if the following input validation requirements are not met:
\n "
@@ -3604,7 +3619,7 @@
},
{
"case": "\"ended\"",
- "html": "Generate a validation error, and return false
.
"
+ "html": "Generate a validation error, and return false
.
"
}
]
}
@@ -3656,7 +3671,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate e, and stop.
\n \n
\n - \n
this must not be lost.
\n
\n
"
+ "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate e and return.
\n \n
\n - \n
this must not be lost.
\n
\n
"
}
]
},
@@ -3671,7 +3686,7 @@
"rationale": "if",
"steps": [
{
- "html": "If colorAttachment.clearValue
is not null
.
",
+ "html": "If colorAttachment.clearValue
is provided:
",
"ignored": [
"? validate GPUColor shape(colorAttachment.clearValue)."
]
@@ -3709,7 +3724,7 @@
"rationale": "add",
"steps": [
{
- "html": "Add [colorAttachment.view
, colorAttachment.depthSlice
] to attachmentRegions.
"
+ "html": "Add [colorAttachment.view
, colorAttachment.depthSlice
?? null
] to attachmentRegions.
"
},
{
"html": "If colorAttachment.resolveTarget
is not null
:",
@@ -3729,7 +3744,7 @@
"html": "Add each texture subresource in attachmentRegions to pass.[[usage scope]]
with usage attachment.
"
},
{
- "html": "Let depthStencilAttachment be descriptor.depthStencilAttachment
,\nor null
if not provided.
"
+ "html": "Let depthStencilAttachment be descriptor.depthStencilAttachment
.
"
},
{
"html": "If depthStencilAttachment is not null
:",
@@ -3756,20 +3771,20 @@
"html": "Set pass.[[layout]]
to derive render targets layout from pass(descriptor).
"
},
{
- "html": "If descriptor.timestampWrites
is provided:",
+ "html": "If descriptor.timestampWrites
is provided:",
"rationale": "let",
"steps": [
{
"html": "Let timestampWrites be descriptor.timestampWrites
.
"
},
{
- "html": "If timestampWrites.beginningOfPassWriteIndex
is provided, append a GPU command to this.[[commands]]
with the following steps:
\n \n \n
",
+ "html": "If timestampWrites.beginningOfPassWriteIndex
is provided, append a GPU command to this.[[commands]]
with the following steps:
\n \n \n
",
"ignored": [
"Before the pass commands begin executing, write the current queue timestamp into index timestampWrites.beginningOfPassWriteIndex of timestampWrites.querySet."
]
},
{
- "html": "If timestampWrites.endOfPassWriteIndex
is provided, set pass.[[endTimestampWrite]]
to a GPU command with the following steps:
\n \n \n
",
+ "html": "If timestampWrites.endOfPassWriteIndex
is provided, set pass.[[endTimestampWrite]]
to a GPU command with the following steps:
\n \n \n
",
"ignored": [
"After the pass commands finish executing, write the current queue timestamp into index timestampWrites.endOfPassWriteIndex of timestampWrites.querySet."
]
@@ -3865,7 +3880,7 @@
"steps": [
{
"case": "Not provided",
- "html": "Assert that depthStencilAttachment.depthReadOnly
is true
and ensure the contents of the depth subresource of depthStencilView are loaded into the framebuffer memory associated with depthStencilView.
"
+ "html": "Assert that depthStencilAttachment.depthReadOnly
is true
and ensure the contents of the depth subresource of depthStencilView are loaded into the framebuffer memory associated with depthStencilView.
"
},
{
"case": "\"load\"",
@@ -3888,7 +3903,7 @@
"steps": [
{
"case": "Not provided",
- "html": "Assert that depthStencilAttachment.stencilReadOnly
is true
and ensure the contents of the stencil subresource of depthStencilView are loaded into the framebuffer memory associated with depthStencilView.
"
+ "html": "Assert that depthStencilAttachment.stencilReadOnly
is true
and ensure the contents of the stencil subresource of depthStencilView are loaded into the framebuffer memory associated with depthStencilView.
"
},
{
"case": "\"load\"",
@@ -3936,23 +3951,23 @@
"html": "Set this.[[state]]
to \"locked\".
"
},
{
- "html": "If any of the following requirements are unmet, invalidate pass and return.
\n "
+ "html": "If any of the following requirements are unmet, invalidate pass and return.
\n "
},
{
- "html": "If descriptor.timestampWrites
is provided:",
+ "html": "If descriptor.timestampWrites
is provided:",
"rationale": "let",
"steps": [
{
"html": "Let timestampWrites be descriptor.timestampWrites
.
"
},
{
- "html": "If timestampWrites.beginningOfPassWriteIndex
is provided, append a GPU command to this.[[commands]]
with the following steps:
\n \n \n
",
+ "html": "If timestampWrites.beginningOfPassWriteIndex
is provided, append a GPU command to this.[[commands]]
with the following steps:
\n \n \n
",
"ignored": [
"Before the pass commands begin executing, write the current queue timestamp into index timestampWrites.beginningOfPassWriteIndex of timestampWrites.querySet."
]
},
{
- "html": "If timestampWrites.endOfPassWriteIndex
is provided, set pass.[[endTimestampWrite]]
to a GPU command with the following steps:
\n \n \n
",
+ "html": "If timestampWrites.endOfPassWriteIndex
is provided, set pass.[[endTimestampWrite]]
to a GPU command with the following steps:
\n \n \n
",
"ignored": [
"After the pass commands finish executing, write the current queue timestamp into index timestampWrites.endOfPassWriteIndex of timestampWrites.querySet."
]
@@ -3979,10 +3994,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied invalidate this and stop.
\n \n
\n - \n
source is valid to use with this.
\n - \n
destination is valid to use with this.
\n - \n
source.usage
contains COPY_SRC
.
\n - \n
destination.usage
contains COPY_DST
.
\n - \n
size is a multiple of 4.
\n - \n
sourceOffset is a multiple of 4.
\n - \n
destinationOffset is a multiple of 4.
\n - \n
source.size
≥ (sourceOffset + size).
\n - \n
destination.size
≥ (destinationOffset + size).
\n - \n
source and destination are not the same GPUBuffer
.
\n
\n
"
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n \n
\n - \n
source is valid to use with this.
\n - \n
destination is valid to use with this.
\n - \n
source.usage
contains COPY_SRC
.
\n - \n
destination.usage
contains COPY_DST
.
\n - \n
size is a multiple of 4.
\n - \n
sourceOffset is a multiple of 4.
\n - \n
destinationOffset is a multiple of 4.
\n - \n
source.size
≥ (sourceOffset + size).
\n - \n
destination.size
≥ (destinationOffset + size).
\n - \n
source and destination are not the same GPUBuffer
.
\n
\n
"
},
{
"html": "Enqueue a command on this which issues the subsequent steps on the Queue timeline when executed.
"
@@ -4018,13 +4033,13 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "If size is missing, set size to max(0, buffer.size
- offset)
.
"
},
{
- "html": "If any of the following conditions are unsatisfied invalidate this and stop.
\n \n
\n - \n
buffer is valid to use with this.
\n - \n
buffer.usage
contains COPY_DST
.
\n - \n
size is a multiple of 4.
\n - \n
offset is a multiple of 4.
\n - \n
buffer.size
≥ (offset + size).
\n
\n
"
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n \n
\n - \n
buffer is valid to use with this.
\n - \n
buffer.usage
contains COPY_DST
.
\n - \n
size is a multiple of 4.
\n - \n
offset is a multiple of 4.
\n - \n
buffer.size
≥ (offset + size).
\n
\n
"
},
{
"html": "Enqueue a command on this which issues the subsequent steps on the Queue timeline when executed.
"
@@ -4066,7 +4081,7 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Let aligned be true
.
"
@@ -4075,7 +4090,7 @@
"html": "Let dataLength be source.buffer
.size
.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Enqueue a command on this which issues the subsequent steps on the Queue timeline when executed.
"
@@ -4095,7 +4110,7 @@
"html": "Let blockHeight be the texel block height of destination.texture
.
"
},
{
- "html": "Let dstOrigin be destination.origin
;
"
+ "html": "Let dstOrigin be destination.origin
.
"
},
{
"html": "Let dstBlockOriginX be (dstOrigin.x ÷ blockWidth).
"
@@ -4110,7 +4125,7 @@
"html": "Let blockRows be (copySize.height ÷ blockHeight).
"
},
{
- "html": "Assert that dstBlockOriginX, dstBlockOriginY, blockColumns, and blockRows are integers.
"
+ "html": "Assert that dstBlockOriginX, dstBlockOriginY, blockColumns, and blockRows are integers.
"
},
{
"html": "For each z in the range [0, copySize.depthOrArrayLayers − 1]:",
@@ -4165,7 +4180,7 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Let aligned be true
.
"
@@ -4174,7 +4189,7 @@
"html": "Let dataLength be destination.buffer
.size
.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Enqueue a command on this which issues the subsequent steps on the Queue timeline when executed.
"
@@ -4194,7 +4209,7 @@
"html": "Let blockHeight be the texel block height of source.texture
.
"
},
{
- "html": "Let srcOrigin be source.origin
;
"
+ "html": "Let srcOrigin be source.origin
.
"
},
{
"html": "Let srcBlockOriginX be (srcOrigin.x ÷ blockWidth).
"
@@ -4209,7 +4224,7 @@
"html": "Let blockRows be (copySize.height ÷ blockHeight).
"
},
{
- "html": "Assert that srcBlockOriginX, srcBlockOriginY, blockColumns, and blockRows are integers.
"
+ "html": "Assert that srcBlockOriginX, srcBlockOriginY, blockColumns, and blockRows are integers.
"
},
{
"html": "For each z in the range [0, copySize.depthOrArrayLayers − 1]:",
@@ -4267,10 +4282,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Enqueue a command on this which issues the subsequent steps on the Queue timeline when executed.
"
@@ -4290,7 +4305,7 @@
"html": "Let blockHeight be the texel block height of source.texture
.
"
},
{
- "html": "Let srcOrigin be source.origin
;
"
+ "html": "Let srcOrigin be source.origin
.
"
},
{
"html": "Let srcBlockOriginX be (srcOrigin.x ÷ blockWidth).
"
@@ -4299,7 +4314,7 @@
"html": "Let srcBlockOriginY be (srcOrigin.y ÷ blockHeight).
"
},
{
- "html": "Let dstOrigin be destination.origin
;
"
+ "html": "Let dstOrigin be destination.origin
.
"
},
{
"html": "Let dstBlockOriginX be (dstOrigin.x ÷ blockWidth).
"
@@ -4314,7 +4329,7 @@
"html": "Let blockRows be (copySize.height ÷ blockHeight).
"
},
{
- "html": "Assert that srcBlockOriginX, srcBlockOriginY, dstBlockOriginX, dstBlockOriginY, blockColumns, and blockRows are integers.
"
+ "html": "Assert that srcBlockOriginX, srcBlockOriginY, dstBlockOriginX, dstBlockOriginY, blockColumns, and blockRows are integers.
"
},
{
"html": "For each z in the range [0, copySize.depthOrArrayLayers − 1]:",
@@ -4363,10 +4378,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n \n
\n - \n
querySet is valid to use with this.
\n - \n
destination is valid to use with this.
\n - \n
destination.usage
contains QUERY_RESOLVE
.
\n - \n
firstQuery < the number of queries in querySet.
\n - \n
(firstQuery + queryCount) ≤ the number of queries in querySet.
\n - \n
destinationOffset is a multiple of 256.
\n - \n
destinationOffset + 8 × queryCount ≤ destination.size
.
\n
\n
"
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n \n
\n - \n
querySet is valid to use with this.
\n - \n
destination is valid to use with this.
\n - \n
destination.usage
contains QUERY_RESOLVE
.
\n - \n
firstQuery < the number of queries in querySet.
\n - \n
(firstQuery + queryCount) ≤ the number of queries in querySet.
\n - \n
destinationOffset is a multiple of 256.
\n - \n
destinationOffset + 8 × queryCount ≤ destination.size
.
\n
\n
"
},
{
"html": "Enqueue a command on this which issues the subsequent steps on the Queue timeline when executed.
"
@@ -4436,7 +4451,7 @@
"rationale": "generate",
"steps": [
{
- "html": "Generate a validation error.
"
+ "html": "Generate a validation error.
"
},
{
"html": "Return an invalidated GPUCommandBuffer
.
"
@@ -4451,7 +4466,7 @@
{
"name": "GPUBindingCommandsMixin.setBindGroup",
"href": "https://gpuweb.github.io/gpuweb/#dom-gpubindingcommandsmixin-setbindgroup-index-bindgroup-dynamicoffsets-index",
- "html": "Called on: GPUBindingCommandsMixin
this. \n Arguments:
\n \n index
, of type GPUIndex32
, non-nullable, required\n - \n
The index to set the bind group at.
\n bindGroup
, of type GPUBindGroup
, nullable, required\n - \n
Bind group to use for subsequent render or compute commands.
\n dynamicOffsets
, of type sequence<GPUBufferDynamicOffset
>, non-nullable, defaulting to []
\n - \n
Array containing buffer offsets in bytes for each entry in bindGroup marked as buffer
.hasDynamicOffset
.
\n
\n Returns: undefined
\n \n Content timeline steps:
",
+ "html": "Called on: GPUBindingCommandsMixin
this. \n Arguments:
\n \n index
, of type GPUIndex32
, non-nullable, required\n - \n
The index to set the bind group at.
\n bindGroup
, of type GPUBindGroup
, nullable, required\n - \n
Bind group to use for subsequent render or compute commands.
\n dynamicOffsets
, of type sequence<GPUBufferDynamicOffset
>, non-nullable, defaulting to []
\n - \n
Array containing buffer offsets in bytes for each entry in bindGroup marked as buffer
.hasDynamicOffset
.
\n
\n Returns: undefined
\n \n Content timeline steps:
",
"rationale": ".algorithm",
"steps": [
{
@@ -4462,17 +4477,17 @@
{
"name": "GPUBindingCommandsMixin.setBindGroup",
"href": "https://gpuweb.github.io/gpuweb/#dom-gpubindingcommandsmixin-setbindgroup-index-bindgroup-dynamicoffsets-index",
- "html": "Called on: GPUBindingCommandsMixin
this. \n Arguments:
\n \n index
, of type GPUIndex32
, non-nullable, required\n - \n
The index to set the bind group at.
\n bindGroup
, of type GPUBindGroup
, nullable, required\n - \n
Bind group to use for subsequent render or compute commands.
\n dynamicOffsets
, of type sequence<GPUBufferDynamicOffset
>, non-nullable, defaulting to []
\n - \n
Array containing buffer offsets in bytes for each entry in bindGroup marked as buffer
.hasDynamicOffset
.
\n
\n Returns: undefined
\n \n Content timeline steps:
",
+ "html": "Called on: GPUBindingCommandsMixin
this. \n Arguments:
\n \n index
, of type GPUIndex32
, non-nullable, required\n - \n
The index to set the bind group at.
\n bindGroup
, of type GPUBindGroup
, nullable, required\n - \n
Bind group to use for subsequent render or compute commands.
\n dynamicOffsets
, of type sequence<GPUBufferDynamicOffset
>, non-nullable, defaulting to []
\n - \n
Array containing buffer offsets in bytes for each entry in bindGroup marked as buffer
.hasDynamicOffset
.
\n
\n Returns: undefined
\n \n Content timeline steps:
",
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Let dynamicOffsetCount be 0 if bindGroup
is null
, or bindGroup.[[layout]]
.[[dynamicOffsetCount]]
if not.
"
},
{
- "html": "If any of the following requirements are unmet, invalidate this and stop.
\n "
+ "html": "If any of the following requirements are unmet, invalidate this and return.
\n "
},
{
"html": "If bindGroup is null
:",
@@ -4491,7 +4506,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following requirements are unmet, invalidate this and stop.
\n "
+ "html": "If any of the following requirements are unmet, invalidate this and return.
\n "
},
{
"html": "Set this.[[bind_groups]]
[index] to be bindGroup.
"
@@ -4517,11 +4532,11 @@
{
"name": "GPUBindingCommandsMixin.setBindGroup2",
"href": "https://gpuweb.github.io/gpuweb/#dom-gpubindingcommandsmixin-setbindgroup-index-bindgroup-dynamicoffsetsdata-dynamicoffsetsdatastart-dynamicoffsetsdatalength-index",
- "html": "",
+ "html": "",
"rationale": ".algorithm",
"steps": [
{
- "html": "If any of the following requirements are unmet, throw a RangeError
and stop.
\n "
+ "html": "If any of the following requirements are unmet, throw a RangeError
and return.
\n "
},
{
"html": "Let dynamicOffsets be a list containing the range, starting at index dynamicOffsetsDataStart, of dynamicOffsetsDataLength elements of a copy of dynamicOffsetsData.
"
@@ -4551,14 +4566,14 @@
"html": "Let bindingDescriptor be the GPUBindGroupLayoutEntry
at layout.[[entryMap]]
[entry.binding
]:
"
},
{
- "html": "If bindingDescriptor.buffer
?.hasDynamicOffset
is true
:",
+ "html": "If bindingDescriptor.buffer
?.hasDynamicOffset
is true
:",
"rationale": "let",
"steps": [
{
"html": "Let bufferBinding be entry.resource
.
"
},
{
- "html": "Let bufferLayout be bindingDescriptor.buffer
.
"
+ "html": "Let bufferLayout be bindingDescriptor.buffer
.
"
},
{
"html": "Call steps with bufferBinding, bufferLayout, and dynamicOffsetIndex.
"
@@ -4579,7 +4594,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If any of the following conditions are unsatisfied, return false
:
\n "
+ "html": "If any of the following conditions are unsatisfied, return false
:
\n "
}
]
},
@@ -4617,7 +4632,7 @@
"rationale": "let",
"steps": [
{
- "html": "Let resourceWritable be (bindGroupLayoutEntry.buffer
.type
== \"storage\"
).
"
+ "html": "Let resourceWritable be (bindGroupLayoutEntry.buffer
.type
== \"storage\"
).
"
},
{
"html": "For each pair (GPUBufferBinding
pastResource, boolean
pastResourceWritable) in bufferBindings:",
@@ -4635,13 +4650,13 @@
},
{
"html": "For each GPUBindGroupLayoutEntry
bindGroupLayoutEntry in bindGroupLayoutEntries, and corresponding GPUTextureView
resource in bindGroup, in which bindGroupLayoutEntry.visibility
contains stage:",
- "rationale": "let",
+ "rationale": "if",
"steps": [
{
- "html": "Let resourceWritable be whether bindGroupLayoutEntry.storageTexture
.access
is a writable access mode.
"
+ "html": "If bindGroupLayoutEntry.storageTexture
is not provided, continue.
"
},
{
- "html": "If bindGroupLayoutEntry.storageTexture
is not provided, continue.
"
+ "html": "Let resourceWritable be whether bindGroupLayoutEntry.storageTexture
.access
is a writable access mode.
"
},
{
"html": "For each pair (GPUTextureView
pastResource, boolean
pastResourceWritable) in textureViews,",
@@ -4684,7 +4699,7 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Push groupLabel onto this.[[debug_group_stack]]
.
"
@@ -4707,10 +4722,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following requirements are unmet, invalidate this, and stop.
\n "
+ "html": "If any of the following requirements are unmet, invalidate this and return.
\n "
},
{
"html": "Pop an entry off of this.[[debug_group_stack]]
.
"
@@ -4735,7 +4750,7 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
}
]
},
@@ -4757,10 +4772,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Set this.[[pipeline]]
to be pipeline.
"
@@ -4785,7 +4800,7 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Let usageScope be an empty usage scope.
"
@@ -4794,7 +4809,7 @@
"html": "For each bindGroup in this.[[bind_groups]]
, merge bindGroup.[[usedResources]]
into this.[[usage scope]]
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Let bindingState be a snapshot of this’s current state.
"
@@ -4833,7 +4848,7 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Let usageScope be an empty usage scope.
"
@@ -4845,7 +4860,7 @@
"html": "Add indirectBuffer to usageScope with usage input.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Let bindingState be a snapshot of this’s current state.
"
@@ -4871,7 +4886,7 @@
"html": "Let workgroupCountZ be an unsigned 32-bit integer read from indirectBuffer at\n(indirectOffset + 8) bytes.
"
},
{
- "html": "If workgroupCountX, workgroupCountY, or workgroupCountZ is greater than this.device.limits.maxComputeWorkgroupsPerDimension
,\nstop.
"
+ "html": "If workgroupCountX, workgroupCountY, or workgroupCountZ is greater than this.device.limits.maxComputeWorkgroupsPerDimension
,\nreturn.
"
},
{
"html": "Execute a grid of workgroups with dimensions [workgroupCountX, workgroupCountY, workgroupCountZ] with bindingState.[[pipeline]]
using bindingState.[[bind_groups]]
.
"
@@ -4897,7 +4912,7 @@
"html": "Let parentEncoder be this.[[command_encoder]]
.
"
},
{
- "html": "If any of the following requirements are unmet, generate a validation error and stop.
\n "
+ "html": "If any of the following requirements are unmet, generate a validation error and return.
\n "
},
{
"html": "Set this.[[state]]
to \"ended\".
"
@@ -4906,7 +4921,7 @@
"html": "Set parentEncoder.[[state]]
to \"open\".
"
},
{
- "html": "If any of the following requirements are unmet, invalidate parentEncoder and stop.
\n "
+ "html": "If any of the following requirements are unmet, invalidate parentEncoder and return.
\n "
},
{
"html": "Extend parentEncoder.[[commands]]
with this.[[commands]]
.
"
@@ -4929,7 +4944,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "this.colorAttachments
.length must be ≤ device.[[limits]]
.maxColorAttachments
.
"
+ "html": "this.colorAttachments
.size must be ≤ device.[[limits]]
.maxColorAttachments
.
"
},
{
"html": "For each non-null
colorAttachment in this.colorAttachments
:",
@@ -4939,7 +4954,7 @@
"html": "colorAttachment.view
must be valid to use with device.
"
},
{
- "html": "If colorAttachment.resolveTarget
is provided:",
+ "html": "If colorAttachment.resolveTarget
is provided:",
"rationale": "resolve",
"steps": [
{
@@ -4953,7 +4968,7 @@
]
},
{
- "html": "If this.depthStencilAttachment
is provided:
",
+ "html": "If this.depthStencilAttachment
is provided:
",
"ignored": [
"this.depthStencilAttachment.view must be valid to use with device. this.depthStencilAttachment must meet the GPURenderPassDepthStencilAttachment Valid Usage rules."
]
@@ -4971,13 +4986,13 @@
"html": "For each view
in non-null
members of this.colorAttachments
and this.depthStencilAttachment
.view
,\nif present, the [[renderExtent]]
must match.
"
},
{
- "html": "If this.occlusionQuerySet
is not null
:
",
+ "html": "If this.occlusionQuerySet
is provided:
",
"ignored": [
"this.occlusionQuerySet must be valid to use with device. this.occlusionQuerySet.type must be occlusion."
]
},
{
- "html": "If this.timestampWrites
is provided:
\n "
+ "html": "If this.timestampWrites
is provided:
\n "
}
]
},
@@ -5008,23 +5023,74 @@
]
},
{
- "html": "Given a GPURenderPassColorAttachment
this:",
- "rationale": "let",
+ "name": "GPURenderPassColorAttachment Valid Usage",
+ "href": "https://gpuweb.github.io/gpuweb/#abstract-opdef-gpurenderpasscolorattachment-gpurenderpasscolorattachment-valid-usage",
+ "html": "GPURenderPassColorAttachment Valid Usage \n Given a GPURenderPassColorAttachment
this:
",
+ "rationale": ".algorithm",
"steps": [
{
"html": "Let renderViewDescriptor be this.view
.[[descriptor]]
.
"
},
- {
- "html": "Let resolveViewDescriptor be this.resolveTarget
.[[descriptor]]
.
"
- },
{
"html": "Let renderTexture be this.view
.[[texture]]
.
"
},
{
- "html": "Let resolveTexture be this.resolveTarget
.[[texture]]
.
"
- },
- {
- "html": "The following validation rules apply:
\n "
+ "html": "All of the requirements in the following steps must be met.
\n \n \n
",
+ "rationale": "if",
+ "steps": [
+ {
+ "html": "renderViewDescriptor.format
must be a color renderable format.
"
+ },
+ {
+ "html": "this.view
must be a renderable texture view.
"
+ },
+ {
+ "html": "If renderViewDescriptor.dimension
is \"3d\"
:
\n \n Otherwise:
",
+ "ignored": [
+ "this.depthSlice must be provided and must be < the depthOrArrayLayers of the logical miplevel-specific texture extent of the renderTexture subresource at mipmap level renderViewDescriptor.baseMipLevel.",
+ "this.depthSlice must not be provided."
+ ]
+ },
+ {
+ "html": "If this.loadOp
is \"clear\"
:
",
+ "ignored": [
+ "Converting the IDL value this.clearValue to a texel value of texture format renderViewDescriptor.format must not throw a TypeError."
+ ]
+ },
+ {
+ "html": "If this.resolveTarget
is provided:",
+ "rationale": "let",
+ "steps": [
+ {
+ "html": "Let resolveViewDescriptor be this.resolveTarget
.[[descriptor]]
.
"
+ },
+ {
+ "html": "Let resolveTexture be this.resolveTarget
.[[texture]]
.
"
+ },
+ {
+ "html": "renderTexture.sampleCount
must be > 1.
"
+ },
+ {
+ "html": "resolveTexture.sampleCount
must be 1.
"
+ },
+ {
+ "html": "this.resolveTarget
must be a non-3d renderable texture view.
"
+ },
+ {
+ "html": "this.resolveTarget
.[[renderExtent]]
and this.view
.[[renderExtent]]
must match.
"
+ },
+ {
+ "html": "resolveViewDescriptor.format
must equal renderViewDescriptor.format
.
"
+ },
+ {
+ "html": "resolveTexture.format
must equal renderTexture.format
.
"
+ },
+ {
+ "html": "resolveViewDescriptor.format
must support resolve according to § 26.1.1 Plain color formats.
"
+ }
+ ]
+ }
+ ]
}
]
},
@@ -5068,7 +5134,7 @@
"rationale": "assert",
"steps": [
{
- "html": "Assert: format is a color renderable format.
"
+ "html": "Assert: format is a color renderable format.
"
},
{
"html": "Let renderTargetPixelByteCost be the render target pixel byte cost of format.
"
@@ -5126,7 +5192,7 @@
]
},
{
- "html": "Let depthStencilAttachment be descriptor.depthStencilAttachment
,\nor null
if not provided.
"
+ "html": "Let depthStencilAttachment be descriptor.depthStencilAttachment
.
"
},
{
"html": "If depthStencilAttachment is not null
:",
@@ -5161,7 +5227,7 @@
"html": "Set layout.sampleCount
to descriptor.multisample
.count
.
"
},
{
- "html": "If descriptor.depthStencil
is provided:",
+ "html": "If descriptor.depthStencil
is provided:",
"rationale": "set",
"steps": [
{
@@ -5170,7 +5236,7 @@
]
},
{
- "html": "If descriptor.fragment
is provided:",
+ "html": "If descriptor.fragment
is provided:",
"rationale": "for",
"steps": [
{
@@ -5208,7 +5274,7 @@
"html": "Let parentEncoder be this.[[command_encoder]]
.
"
},
{
- "html": "If any of the following requirements are unmet, generate a validation error and stop.
\n "
+ "html": "If any of the following requirements are unmet, generate a validation error and return.
\n "
},
{
"html": "Set this.[[state]]
to \"ended\".
"
@@ -5217,7 +5283,7 @@
"html": "Set parentEncoder.[[state]]
to \"open\".
"
},
{
- "html": "If any of the following requirements are unmet, invalidate parentEncoder and stop.
\n "
+ "html": "If any of the following requirements are unmet, invalidate parentEncoder and return.
\n "
},
{
"html": "Extend parentEncoder.[[commands]]
with this.[[commands]]
.
"
@@ -5313,7 +5379,7 @@
"steps": [
{
"case": "Not provided",
- "html": "Assert that depthStencilAttachment.depthReadOnly
is true
and leave the depth subresource of depthStencilView unchanged.
"
+ "html": "Assert that depthStencilAttachment.depthReadOnly
is true
and leave the depth subresource of depthStencilView unchanged.
"
},
{
"case": "\"store\"",
@@ -5336,7 +5402,7 @@
"steps": [
{
"case": "Not provided",
- "html": "Assert that depthStencilAttachment.stencilReadOnly
is true
and leave the stencil subresource of depthStencilView unchanged.
"
+ "html": "Assert that depthStencilAttachment.stencilReadOnly
is true
and leave the stencil subresource of depthStencilView unchanged.
"
},
{
"case": "\"store\"",
@@ -5395,13 +5461,13 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Let pipelineTargetsLayout be derive render targets layout from pipeline(pipeline.[[descriptor]]
).
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Set this.[[pipeline]]
to be pipeline.
"
@@ -5426,13 +5492,13 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "If size is missing, set size to max(0, buffer.size
- offset).
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n \n
\n - \n
buffer is valid to use with this.
\n - \n
buffer.usage
contains INDEX
.
\n - \n
offset is a multiple of indexFormat’s byte size.
\n - \n
offset + size ≤ buffer.size
.
\n
\n
"
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n \n
\n - \n
buffer is valid to use with this.
\n - \n
buffer.usage
contains INDEX
.
\n - \n
offset is a multiple of indexFormat’s byte size.
\n - \n
offset + size ≤ buffer.size
.
\n
\n
"
},
{
"html": "Add buffer to [[usage scope]]
with usage input.
"
@@ -5469,7 +5535,7 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Let bufferSize be 0 if buffer is null
, or buffer.size
if not.
"
@@ -5478,7 +5544,7 @@
"html": "If size is missing, set size to max(0, bufferSize - offset).
"
},
{
- "html": "If any of the following requirements are unmet, invalidate this and stop.
\n "
+ "html": "If any of the following requirements are unmet, invalidate this and return.
\n "
},
{
"html": "If buffer is null
:",
@@ -5497,7 +5563,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following requirements are unmet, invalidate this and stop.
\n "
+ "html": "If any of the following requirements are unmet, invalidate this and return.
\n "
},
{
"html": "Add buffer to [[usage scope]]
with usage input.
"
@@ -5532,10 +5598,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "All of the requirements in the following steps must be met.\nIf any are unmet, invalidate this and stop.
\n \n \n
",
+ "html": "All of the requirements in the following steps must be met.\nIf any are unmet, invalidate this and return.
\n \n \n
",
"rationale": "let",
"steps": [
{
@@ -5545,7 +5611,7 @@
"html": "Let buffers be this.[[pipeline]]
.[[descriptor]]
.vertex
.buffers
.
"
},
{
- "html": "For each GPUIndex32
slot from 0
to buffers.length (non-inclusive):",
+ "html": "For each GPUIndex32
slot from 0
to buffers.size (non-inclusive):",
"rationale": "if",
"steps": [
{
@@ -5561,7 +5627,7 @@
"html": "Let attributes be buffers[slot].attributes
"
},
{
- "html": "Let lastStride be the maximum value of\n(attribute.offset
+ sizeof(attribute.format
))\nover each attribute in attributes, or 0 if attributes is empty.
"
+ "html": "Let lastStride be the maximum value of\n(attribute.offset
+ byteSize(attribute.format
))\nover each attribute in attributes, or 0 if attributes is empty.
"
},
{
"html": "Let strideCount be computed based on buffers[slot].stepMode
:",
@@ -5621,10 +5687,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Increment this.[[drawCount]]
by 1.
"
@@ -5655,10 +5721,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Add indirectBuffer to [[usage scope]]
with usage input.
"
@@ -5715,10 +5781,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Add indirectBuffer to [[usage scope]]
with usage input.
"
@@ -5818,10 +5884,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Enqueue a render command on this which issues the subsequent steps on the Queue timeline with renderState when executed.
"
@@ -5860,10 +5926,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Enqueue a render command on this which issues the subsequent steps on the Queue timeline with renderState when executed.
"
@@ -5902,7 +5968,7 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Enqueue a render command on this which issues the subsequent steps on the Queue timeline with renderState when executed.
"
@@ -5938,7 +6004,7 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
"html": "Enqueue a render command on this which issues the subsequent steps on the Queue timeline with renderState when executed.
"
@@ -5974,10 +6040,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Set this.[[occlusion_query_active]]
to true
.
"
@@ -6014,10 +6080,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "Set this.[[occlusion_query_active]]
to false
.
"
@@ -6058,10 +6124,10 @@
"rationale": "validate",
"steps": [
{
- "html": "Validate the encoder state of this. If it returns false, stop.
"
+ "html": "Validate the encoder state of this. If it returns false, return.
"
},
{
- "html": "If any of the following conditions are unsatisfied, invalidate this and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, invalidate this and return.
\n "
},
{
"html": "For each bundle in bundles:",
@@ -6119,7 +6185,10 @@
"html": "? Validate texture format required features of each non-null
element of descriptor.colorFormats
with this.[[device]]
.
"
},
{
- "html": "? Validate texture format required features of descriptor.depthStencilFormat
with this.[[device]]
.
"
+ "html": "If descriptor.depthStencilFormat
is provided:
",
+ "ignored": [
+ "? Validate texture format required features of descriptor.depthStencilFormat with this.[[device]]."
+ ]
},
{
"html": "Let e be ! create a new WebGPU object(this, GPURenderBundleEncoder
, descriptor).
"
@@ -6139,7 +6208,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate e, and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied generate a validation error, invalidate e and return.
\n "
},
{
"html": "Set e.[[layout]]
to a copy of descriptor’s included GPURenderPassLayout
interface.
"
@@ -6192,7 +6261,7 @@
"rationale": "generate",
"steps": [
{
- "html": "Generate a validation error.
"
+ "html": "Generate a validation error.
"
},
{
"html": "Return an invalidated GPURenderBundle
.
"
@@ -6226,7 +6295,7 @@
"html": "If size is missing,\nlet contentsSize be dataSize − dataOffset.\nOtherwise, let contentsSize be size.
"
},
{
- "html": "If any of the following conditions are unsatisfied,\nthrow OperationError
and stop.
\n \n
\n - \n
contentsSize ≥ 0.
\n - \n
dataOffset + contentsSize ≤ dataSize.
\n - \n
contentsSize, converted to bytes, is a multiple of 4 bytes.
\n
\n
"
+ "html": "If any of the following conditions are unsatisfied,\nthrow an OperationError
and return.
\n \n
\n - \n
contentsSize ≥ 0.
\n - \n
dataOffset + contentsSize ≤ dataSize.
\n - \n
contentsSize, converted to bytes, is a multiple of 4 bytes.
\n
\n
"
},
{
"html": "Let dataContents be a copy of the bytes held by the buffer source data.
"
@@ -6246,7 +6315,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following conditions are unsatisfied, generate a validation error and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, generate a validation error and return.
\n "
},
{
"html": "Issue the subsequent steps on the Queue timeline of this.
"
@@ -6286,7 +6355,7 @@
"html": "Let dataLength be dataBytes.length.
"
},
{
- "html": "If any of the following conditions are unsatisfied, generate a validation error and stop.
\n "
+ "html": "If any of the following conditions are unsatisfied, generate a validation error and return.
\n "
},
{
"html": "Issue the subsequent steps on the Queue timeline of this.
"
@@ -6321,7 +6390,7 @@
"html": "Let blockRows be (copySize.height ÷ blockHeight).
"
},
{
- "html": "Assert that dstBlockOriginX, dstBlockOriginY, blockColumns, and blockRows are integers.
"
+ "html": "Assert that dstBlockOriginX, dstBlockOriginY, blockColumns, and blockRows are integers.
"
},
{
"html": "For each z in the range [0, copySize.depthOrArrayLayers − 1]:",
@@ -6371,10 +6440,10 @@
"html": "Let sourceImage be source.source
"
},
{
- "html": "If sourceImage is not origin-clean,\nthrow a SecurityError
and stop.
"
+ "html": "If sourceImage is not origin-clean,\nthrow a SecurityError
and return.
"
},
{
- "html": "If any of the following requirements are unmet, throw an OperationError
and stop.
\n \n
\n - \n
source.origin.x + copySize.width must be ≤ the width of sourceImage.
\n - \n
source.origin.y + copySize.height must be ≤ the height of sourceImage.
\n - \n
copySize.depthOrArrayLayers must be ≤ 1.
\n
\n
"
+ "html": "If any of the following requirements are unmet, throw an OperationError
and return.
\n \n
\n - \n
source.origin.x + copySize.width must be ≤ the width of sourceImage.
\n - \n
source.origin.y + copySize.height must be ≤ the height of sourceImage.
\n - \n
copySize.depthOrArrayLayers must be ≤ 1.
\n
\n
"
},
{
"html": "Let usability be ? check the usability of the image argument(source).
"
@@ -6394,7 +6463,7 @@
"html": "Let texture be destination.texture
.
"
},
{
- "html": "If any of the following requirements are unmet, generate a validation error and stop.
\n "
+ "html": "If any of the following requirements are unmet, generate a validation error and return.
\n "
},
{
"html": "If copySize.depthOrArrayLayers is > 0, issue the subsequent\nsteps on the Queue timeline of this.
"
@@ -6408,7 +6477,7 @@
"rationale": "assert",
"steps": [
{
- "html": "Assert that the texel block width of destination.texture
is 1,\nthe texel block height of destination.texture
is 1, and that copySize.depthOrArrayLayers is 1.
"
+ "html": "Assert that the texel block width of destination.texture
is 1,\nthe texel block height of destination.texture
is 1, and that copySize.depthOrArrayLayers is 1.
"
},
{
"html": "Let srcOrigin be source.origin
.
"
@@ -6592,7 +6661,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following requirements are unmet, generate a validation error, invalidate q, and stop.
\n "
+ "html": "If any of the following requirements are unmet, generate a validation error, invalidate q and return.
\n "
}
]
},
@@ -6623,7 +6692,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Return true
if the following requirements are met, and false
if not:
\n "
+ "html": "Return true
if the following requirements are met, and false
if not:
\n "
}
]
},
@@ -6686,7 +6755,7 @@
"rationale": "if",
"steps": [
{
- "html": "If any of the following requirements are unmet, generate a validation error and stop.
\n "
+ "html": "If any of the following requirements are unmet, generate a validation error and return.
\n "
}
]
},
@@ -6712,16 +6781,10 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "If this.[[configuration]]
is null
:",
- "rationale": "throw",
- "steps": [
- {
- "html": "Throw an InvalidStateError
and stop.
"
- }
- ]
+ "html": "If this.[[configuration]]
is null
,\nthrow an InvalidStateError
and return.
"
},
{
- "html": "Assert this.[[textureDescriptor]]
is not null
.
"
+ "html": "Assert this.[[textureDescriptor]]
is not null
.
"
},
{
"html": "Let device be this.[[configuration]]
.device
.
"
@@ -7279,7 +7342,7 @@
"html": "Let relativeVertexIndex be fetch index(i + drawCall.firstIndex
, state.[[index_buffer]]
).
"
},
{
- "html": "If relativeVertexIndex has the special value \"out of bounds\"
,\nstop and return the empty list.
"
+ "html": "If relativeVertexIndex has the special value \"out of bounds\"
,\nreturn the empty list.
"
},
{
"html": "Append drawCall.baseVertex
+ relativeVertexIndex to the vertexIndexList.
"
@@ -7341,7 +7404,7 @@
{
"name": "process vertices",
"href": "https://gpuweb.github.io/gpuweb/#abstract-opdef-process-vertices",
- "html": "process vertices(vertexIndexList, drawCall, desc, state) \n Arguments:
\n \n - \n
vertexIndexList: List of vertex indices to process (mutable, passed by reference).
\n - \n
drawCall: The draw call parameters. May come from function arguments or an INDIRECT
buffer.
\n - \n
desc: The descriptor of type GPUVertexState
.
\n - \n
state: The snapshot of the GPURenderCommandsMixin
state at the time of the draw call.
\n
\n Each vertex vertexIndex in the vertexIndexList,\n in each instance of index rawInstanceIndex, is processed independently.\n The rawInstanceIndex is in range from 0 to drawCall.instanceCount - 1, inclusive.\n This processing happens in parallel, and any side effects, such as\n writes into GPUBufferBindingType.\"storage\"
bindings,\n may happen in any order.
",
+ "html": "process vertices(vertexIndexList, drawCall, desc, state) \n Arguments:
\n \n - \n
vertexIndexList: List of vertex indices to process (mutable, passed by reference).
\n - \n
drawCall: The draw call parameters. May come from function arguments or an INDIRECT
buffer.
\n - \n
desc: The descriptor of type GPUVertexState
.
\n - \n
state: The snapshot of the GPURenderCommandsMixin
state at the time of the draw call.
\n
\n Each vertex vertexIndex in the vertexIndexList,\n in each instance of index rawInstanceIndex, is processed independently.\n The rawInstanceIndex is in range from 0 to drawCall.instanceCount - 1, inclusive.\n This processing happens in parallel, and any side effects, such as\n writes into GPUBufferBindingType
\"storage\"
bindings,\n may happen in any order.
",
"rationale": ".algorithm",
"steps": [
{
@@ -7387,14 +7450,14 @@
"html": "Let attributeOffset be vertexBufferOffset + vertexElementIndex * vertexBufferLayout.arrayStride
+ attributeDesc.offset
.
"
},
{
- "html": "If attributeOffset + sizeof(attributeDesc.format
) > vertexBufferOffset + vertexBufferBindingSize:",
+ "html": "If attributeOffset + byteSize(attributeDesc.format
) > vertexBufferOffset + vertexBufferBindingSize:",
"rationale": "set",
"steps": [
{
"html": "Set drawCallOutOfBounds to true
.
"
},
{
- "html": "**Optionally (implementation-defined)**, empty vertexIndexList and stop, cancelling the draw call.
"
+ "html": "Optionally (implementation-defined), empty vertexIndexList and return, cancelling the draw call.
"
}
]
}
@@ -7887,7 +7950,7 @@
"html": "Let targetDesc be the targets entry that corresponds with attachment.
"
},
{
- "html": "If targetDesc.blend
is provided:",
+ "html": "If targetDesc.blend
is provided:",
"rationale": "let",
"steps": [
{
@@ -7918,7 +7981,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Throw a TypeError
if color is a sequence and color.length ≠ 4.
"
+ "html": "Throw a TypeError
if color is a sequence and color.size ≠ 4.
"
}
]
},
@@ -7929,7 +7992,7 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Throw a TypeError
if origin is a sequence and origin.length > 2.
"
+ "html": "Throw a TypeError
if origin is a sequence and origin.size > 2.
"
}
]
},
@@ -7940,14 +8003,14 @@
"rationale": ".algorithm",
"steps": [
{
- "html": "Throw a TypeError
if origin is a sequence and origin.length > 3.
"
+ "html": "Throw a TypeError
if origin is a sequence and origin.size > 3.
"
}
]
},
{
"name": "validate GPUExtent3D shape",
"href": "https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-gpuextent3d-shape",
- "html": "validate GPUExtent3D shape(extent) \n Arguments:
\n \n Returns: undefined
\n Content timeline steps:
\n \n ",
+ "html": "validate GPUExtent3D shape(extent) \n Arguments:
\n \n Returns: undefined
\n Content timeline steps:
\n \n ",
"rationale": ".algorithm",
"steps": [
{
diff --git a/ed/css/css-easing.json b/ed/css/css-easing.json
index 217802506825..533e84499a2d 100644
--- a/ed/css/css-easing.json
+++ b/ed/css/css-easing.json
@@ -9,18 +9,15 @@
"values": [
{
"name": "",
- "value": "linear | | | ",
+ "value": " | | ",
"href": "https://drafts.csswg.org/css-easing-2/#typedef-easing-function",
+ "type": "type"
+ },
+ {
+ "name": "",
+ "href": "https://drafts.csswg.org/css-easing-2/#typedef-linear-easing-function",
"type": "type",
- "values": [
- {
- "name": "linear",
- "prose": "The linear keyword produces an identity linear easing function whose output progress value is equal to the input progress value for all inputs.",
- "href": "https://drafts.csswg.org/css-easing-2/#valdef-easing-function-linear",
- "type": "value",
- "value": "linear"
- }
- ]
+ "value": "linear | "
},
{
"name": "linear()",
diff --git a/ed/css/css-grid-3.json b/ed/css/css-grid-3.json
index 131867f60038..8532d94ef3a0 100644
--- a/ed/css/css-grid-3.json
+++ b/ed/css/css-grid-3.json
@@ -46,21 +46,21 @@
"values": [
{
"name": "row-reverse",
- "prose": "This specification extends the grid-auto-flow property to add row-reverse, column-reverse, and wrap-reverse, which reverse the directions of the auto-placement algorithm.",
+ "prose": "This specification extends the grid-auto-flow property to add row-reverse, column-reverse, and wrap-reverse, which reverse the directions of the grid item placement algorithm.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-grid-auto-flow-row-reverse",
"type": "value",
"value": "row-reverse"
},
{
"name": "column-reverse",
- "prose": "This specification extends the grid-auto-flow property to add row-reverse, column-reverse, and wrap-reverse, which reverse the directions of the auto-placement algorithm.",
+ "prose": "This specification extends the grid-auto-flow property to add row-reverse, column-reverse, and wrap-reverse, which reverse the directions of the grid item placement algorithm.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-grid-auto-flow-column-reverse",
"type": "value",
"value": "column-reverse"
},
{
"name": "wrap-reverse",
- "prose": "This specification extends the grid-auto-flow property to add row-reverse, column-reverse, and wrap-reverse, which reverse the directions of the auto-placement algorithm.",
+ "prose": "This specification extends the grid-auto-flow property to add row-reverse, column-reverse, and wrap-reverse, which reverse the directions of the grid item placement algorithm.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-grid-auto-flow-wrap-reverse",
"type": "value",
"value": "wrap-reverse"
@@ -108,28 +108,28 @@
"values": [
{
"name": "column",
- "prose": "The masonry container’s masonry axis is its block axis, and masonry layout starts from its block-start edge.",
+ "prose": "The masonry container’s stacking axis is its block axis, and masonry layout starts from its block-start edge.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-column",
"type": "value",
"value": "column"
},
{
"name": "column-reverse",
- "prose": "The masonry container’s masonry axis is its block axis, and masonry layout starts from its block-end edge.",
+ "prose": "The masonry container’s stacking axis is its block axis, and masonry layout starts from its block-end edge.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-column-reverse",
"type": "value",
"value": "column-reverse"
},
{
"name": "row",
- "prose": "The masonry container’s masonry axis is its inline axis, and masonry layout starts from its inline-start edge.",
+ "prose": "The masonry container’s stacking axis is its inline axis, and masonry layout starts from its inline-start edge.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-row",
"type": "value",
"value": "row"
},
{
"name": "row-reverse",
- "prose": "The masonry container’s masonry axis is its inline axis, and masonry layout starts from its inline-end edge.",
+ "prose": "The masonry container’s stacking axis is its inline axis, and masonry layout starts from its inline-end edge.",
"href": "https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-row-reverse",
"type": "value",
"value": "row-reverse"
diff --git a/ed/dfns/css-easing-2.json b/ed/dfns/css-easing-2.json
index a6900c305f91..c4697627a5fe 100644
--- a/ed/dfns/css-easing-2.json
+++ b/ed/dfns/css-easing-2.json
@@ -95,32 +95,51 @@
"heading": {
"id": "the-linear-easing-function",
"href": "https://drafts.csswg.org/css-easing-2/#the-linear-easing-function",
- "title": "The linear easing function: linear()",
+ "title": "Linear Easing Functions: linear, linear()",
"number": "2.1"
},
"definedIn": "prose"
},
{
- "id": "linear-easing-function-control-point",
- "href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-control-point",
+ "id": "linear-control-point",
+ "href": "https://drafts.csswg.org/css-easing-2/#linear-control-point",
"linkingText": [
"control point"
],
"localLinkingText": [],
"type": "dfn",
"for": [
- "linear easing function"
+ "linear()"
],
"access": "private",
"informative": false,
"heading": {
"id": "the-linear-easing-function",
"href": "https://drafts.csswg.org/css-easing-2/#the-linear-easing-function",
- "title": "The linear easing function: linear()",
+ "title": "Linear Easing Functions: linear, linear()",
"number": "2.1"
},
"definedIn": "prose"
},
+ {
+ "id": "typedef-linear-easing-function",
+ "href": "https://drafts.csswg.org/css-easing-2/#typedef-linear-easing-function",
+ "linkingText": [
+ ""
+ ],
+ "localLinkingText": [],
+ "type": "type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "the-linear-easing-function",
+ "href": "https://drafts.csswg.org/css-easing-2/#the-linear-easing-function",
+ "title": "Linear Easing Functions: linear, linear()",
+ "number": "2.1"
+ },
+ "definedIn": "pre"
+ },
{
"id": "funcdef-linear",
"href": "https://drafts.csswg.org/css-easing-2/#funcdef-linear",
@@ -133,10 +152,10 @@
"access": "public",
"informative": false,
"heading": {
- "id": "linear-easing-function-syntax",
- "href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-syntax",
- "title": "Syntax",
- "number": "2.1.1"
+ "id": "the-linear-easing-function",
+ "href": "https://drafts.csswg.org/css-easing-2/#the-linear-easing-function",
+ "title": "Linear Easing Functions: linear, linear()",
+ "number": "2.1"
},
"definedIn": "pre"
},
@@ -153,38 +172,37 @@
"access": "public",
"informative": false,
"heading": {
- "id": "linear-easing-function-syntax",
- "href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-syntax",
- "title": "Syntax",
- "number": "2.1.1"
+ "id": "the-linear-easing-function",
+ "href": "https://drafts.csswg.org/css-easing-2/#the-linear-easing-function",
+ "title": "Linear Easing Functions: linear, linear()",
+ "number": "2.1"
},
"definedIn": "prose"
},
{
- "id": "linear-easing-function-serialized-computed-value",
- "href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-serialized-computed-value",
+ "id": "serialize-a-linear-function",
+ "href": "https://drafts.csswg.org/css-easing-2/#serialize-a-linear-function",
"linkingText": [
- "serialized computed value"
+ "serialize a linear() function"
],
"localLinkingText": [],
"type": "dfn",
- "for": [
- "linear easing function"
- ],
+ "for": [],
"access": "public",
"informative": false,
"heading": {
- "id": "title",
- "href": "https://drafts.csswg.org/css-easing-2/#title",
- "title": "CSS Easing Functions Level 2"
+ "id": "linear-easing-function-serializing",
+ "href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-serializing",
+ "title": "Serializing",
+ "number": "2.1.1"
},
"definedIn": "prose"
},
{
- "id": "calculate-linear-easing-output-progress",
- "href": "https://drafts.csswg.org/css-easing-2/#calculate-linear-easing-output-progress",
+ "id": "serialize-a-linear-control-point",
+ "href": "https://drafts.csswg.org/css-easing-2/#serialize-a-linear-control-point",
"linkingText": [
- "calculate linear easing output progress"
+ "serialize a linear() control point"
],
"localLinkingText": [],
"type": "dfn",
@@ -192,30 +210,29 @@
"access": "public",
"informative": false,
"heading": {
- "id": "title",
- "href": "https://drafts.csswg.org/css-easing-2/#title",
- "title": "CSS Easing Functions Level 2"
+ "id": "linear-easing-function-serializing",
+ "href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-serializing",
+ "title": "Serializing",
+ "number": "2.1.1"
},
"definedIn": "prose"
},
{
- "id": "valdef-easing-function-linear",
- "href": "https://drafts.csswg.org/css-easing-2/#valdef-easing-function-linear",
+ "id": "calculate-linear-easing-output-progress",
+ "href": "https://drafts.csswg.org/css-easing-2/#calculate-linear-easing-output-progress",
"linkingText": [
- "linear"
+ "calculate linear easing output progress"
],
"localLinkingText": [],
- "type": "value",
- "for": [
- ""
- ],
+ "type": "dfn",
+ "for": [],
"access": "public",
"informative": false,
"heading": {
- "id": "the-linear-easing-keyword",
- "href": "https://drafts.csswg.org/css-easing-2/#the-linear-easing-keyword",
- "title": "The linear easing keyword: linear",
- "number": "2.2"
+ "id": "linear-easing-function-output",
+ "href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-output",
+ "title": "Output",
+ "number": "2.1.2"
},
"definedIn": "prose"
},
@@ -234,7 +251,7 @@
"id": "cubic-bezier-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions",
"title": "Cubic Bézier easing functions: ease, ease-in, ease-out, ease-in-out, cubic-bezier()",
- "number": "2.3"
+ "number": "2.2"
},
"definedIn": "prose"
},
@@ -253,7 +270,7 @@
"id": "cubic-bezier-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions",
"title": "Cubic Bézier easing functions: ease, ease-in, ease-out, ease-in-out, cubic-bezier()",
- "number": "2.3"
+ "number": "2.2"
},
"definedIn": "prose"
},
@@ -274,7 +291,7 @@
"id": "cubic-bezier-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions",
"title": "Cubic Bézier easing functions: ease, ease-in, ease-out, ease-in-out, cubic-bezier()",
- "number": "2.3"
+ "number": "2.2"
},
"definedIn": "dt"
},
@@ -295,7 +312,7 @@
"id": "cubic-bezier-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions",
"title": "Cubic Bézier easing functions: ease, ease-in, ease-out, ease-in-out, cubic-bezier()",
- "number": "2.3"
+ "number": "2.2"
},
"definedIn": "dt"
},
@@ -316,7 +333,7 @@
"id": "cubic-bezier-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions",
"title": "Cubic Bézier easing functions: ease, ease-in, ease-out, ease-in-out, cubic-bezier()",
- "number": "2.3"
+ "number": "2.2"
},
"definedIn": "dt"
},
@@ -337,7 +354,7 @@
"id": "cubic-bezier-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions",
"title": "Cubic Bézier easing functions: ease, ease-in, ease-out, ease-in-out, cubic-bezier()",
- "number": "2.3"
+ "number": "2.2"
},
"definedIn": "dt"
},
@@ -358,7 +375,7 @@
"id": "cubic-bezier-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions",
"title": "Cubic Bézier easing functions: ease, ease-in, ease-out, ease-in-out, cubic-bezier()",
- "number": "2.3"
+ "number": "2.2"
},
"definedIn": "dt"
},
@@ -377,7 +394,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "prose"
},
@@ -396,7 +413,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "prose"
},
@@ -415,7 +432,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "prose"
},
@@ -434,7 +451,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "prose"
},
@@ -453,7 +470,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "prose"
},
@@ -474,7 +491,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "dt"
},
@@ -495,7 +512,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "dt"
},
@@ -516,7 +533,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "dt"
},
@@ -537,7 +554,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "dt"
},
@@ -558,7 +575,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "dt"
},
@@ -579,7 +596,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "dt"
},
@@ -600,7 +617,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "dt"
},
@@ -621,7 +638,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "dt"
},
@@ -642,7 +659,7 @@
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
"definedIn": "dt"
},
@@ -660,8 +677,8 @@
"heading": {
"id": "step-easing-algo",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-algo",
- "title": "Output of a step easing function",
- "number": "2.4.1"
+ "title": "Output",
+ "number": "2.3.1"
},
"definedIn": "prose"
}
diff --git a/ed/dfns/css-grid-3.json b/ed/dfns/css-grid-3.json
index 6d276f6cf4e5..9796626148c2 100644
--- a/ed/dfns/css-grid-3.json
+++ b/ed/dfns/css-grid-3.json
@@ -83,13 +83,13 @@
"definedIn": "prose"
},
{
- "id": "masonry-axis",
- "href": "https://drafts.csswg.org/css-grid-3/#masonry-axis",
+ "id": "stacking-axis",
+ "href": "https://drafts.csswg.org/css-grid-3/#stacking-axis",
"linkingText": [
- "masonry axis"
+ "stacking axis"
],
"localLinkingText": [
- "masonry-axis"
+ "stacking-axis"
],
"type": "dfn",
"for": [],
@@ -103,6 +103,44 @@
},
"definedIn": "prose"
},
+ {
+ "id": "masonry-item",
+ "href": "https://drafts.csswg.org/css-grid-3/#masonry-item",
+ "linkingText": [
+ "masonry item"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "masonry-model",
+ "href": "https://drafts.csswg.org/css-grid-3/#masonry-model",
+ "title": "Masonry Layout Model",
+ "number": "2"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "masonry-track",
+ "href": "https://drafts.csswg.org/css-grid-3/#masonry-track",
+ "linkingText": [
+ "masonry track"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "masonry-model",
+ "href": "https://drafts.csswg.org/css-grid-3/#masonry-model",
+ "title": "Masonry Layout Model",
+ "number": "2"
+ },
+ "definedIn": "prose"
+ },
{
"id": "masonry-container",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-container",
@@ -175,7 +213,7 @@
"id": "grid-auto-flow",
"href": "https://drafts.csswg.org/css-grid-3/#grid-auto-flow",
"title": "Auto Flow Directions: the grid-auto-flow property",
- "number": "2.1.2"
+ "number": "2.2.2"
},
"definedIn": "table"
},
@@ -196,7 +234,7 @@
"id": "grid-auto-flow",
"href": "https://drafts.csswg.org/css-grid-3/#grid-auto-flow",
"title": "Auto Flow Directions: the grid-auto-flow property",
- "number": "2.1.2"
+ "number": "2.2.2"
},
"definedIn": "prose"
},
@@ -217,7 +255,7 @@
"id": "grid-auto-flow",
"href": "https://drafts.csswg.org/css-grid-3/#grid-auto-flow",
"title": "Auto Flow Directions: the grid-auto-flow property",
- "number": "2.1.2"
+ "number": "2.2.2"
},
"definedIn": "prose"
},
@@ -238,7 +276,7 @@
"id": "grid-auto-flow",
"href": "https://drafts.csswg.org/css-grid-3/#grid-auto-flow",
"title": "Auto Flow Directions: the grid-auto-flow property",
- "number": "2.1.2"
+ "number": "2.2.2"
},
"definedIn": "prose"
},
@@ -259,7 +297,7 @@
"id": "masonry-display",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-display",
"title": "Establishing Masonry Containers: the masonry and inline-masonry display values",
- "number": "2.2.1"
+ "number": "2.3.1"
},
"definedIn": "dt"
},
@@ -280,7 +318,7 @@
"id": "masonry-display",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-display",
"title": "Establishing Masonry Containers: the masonry and inline-masonry display values",
- "number": "2.2.1"
+ "number": "2.3.1"
},
"definedIn": "dt"
},
@@ -299,7 +337,7 @@
"id": "masonry-direction",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-direction",
"title": "Masonry Track Direction: the masonry-direction property",
- "number": "2.2.2"
+ "number": "2.3.2"
},
"definedIn": "table"
},
@@ -320,7 +358,7 @@
"id": "masonry-direction",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-direction",
"title": "Masonry Track Direction: the masonry-direction property",
- "number": "2.2.2"
+ "number": "2.3.2"
},
"definedIn": "dt"
},
@@ -341,7 +379,7 @@
"id": "masonry-direction",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-direction",
"title": "Masonry Track Direction: the masonry-direction property",
- "number": "2.2.2"
+ "number": "2.3.2"
},
"definedIn": "dt"
},
@@ -362,7 +400,7 @@
"id": "masonry-direction",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-direction",
"title": "Masonry Track Direction: the masonry-direction property",
- "number": "2.2.2"
+ "number": "2.3.2"
},
"definedIn": "dt"
},
@@ -383,7 +421,7 @@
"id": "masonry-direction",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-direction",
"title": "Masonry Track Direction: the masonry-direction property",
- "number": "2.2.2"
+ "number": "2.3.2"
},
"definedIn": "dt"
},
@@ -402,7 +440,7 @@
"id": "masonry-fill",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-fill",
"title": "Masonry Cross Direction: the masonry-fill property",
- "number": "2.2.3"
+ "number": "2.3.3"
},
"definedIn": "table"
},
@@ -423,7 +461,7 @@
"id": "masonry-fill",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-fill",
"title": "Masonry Cross Direction: the masonry-fill property",
- "number": "2.2.3"
+ "number": "2.3.3"
},
"definedIn": "dt"
},
@@ -444,7 +482,7 @@
"id": "masonry-fill",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-fill",
"title": "Masonry Cross Direction: the masonry-fill property",
- "number": "2.2.3"
+ "number": "2.3.3"
},
"definedIn": "dt"
},
@@ -463,7 +501,7 @@
"id": "masonry-flow",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-flow",
"title": "Masonry Flow Directions: the masonry-flow shorthand",
- "number": "2.2.4"
+ "number": "2.3.4"
},
"definedIn": "table"
},
@@ -482,7 +520,7 @@
"id": "masonry-shorthand",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-shorthand",
"title": "Masonry Definition Shorthand: the masonry property",
- "number": "2.2.5"
+ "number": "2.3.5"
},
"definedIn": "table"
},
diff --git a/ed/dfns/css-view-transitions-2.json b/ed/dfns/css-view-transitions-2.json
index c41d506bfcbd..cfae1db0c8f0 100644
--- a/ed/dfns/css-view-transitions-2.json
+++ b/ed/dfns/css-view-transitions-2.json
@@ -736,7 +736,7 @@
"id": "capture-classes-data-structure",
"href": "https://drafts.csswg.org/css-view-transitions-2/#capture-classes-data-structure",
"title": "Captured elements extension",
- "number": "7.1.4"
+ "number": "7.2.1"
},
"definedIn": "dt"
},
@@ -757,7 +757,7 @@
"id": "capture-classes-data-structure",
"href": "https://drafts.csswg.org/css-view-transitions-2/#capture-classes-data-structure",
"title": "Captured elements extension",
- "number": "7.1.4"
+ "number": "7.2.1"
},
"definedIn": "dt"
},
@@ -778,7 +778,7 @@
"id": "capture-classes-data-structure",
"href": "https://drafts.csswg.org/css-view-transitions-2/#capture-classes-data-structure",
"title": "Captured elements extension",
- "number": "7.1.4"
+ "number": "7.2.1"
},
"definedIn": "dt"
},
@@ -797,7 +797,7 @@
"id": "vt-rule-algo",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-rule-algo",
"title": "Resolving the @view-transition rule",
- "number": "7.2"
+ "number": "7.3"
},
"definedIn": "prose"
},
@@ -816,7 +816,7 @@
"id": "check-eligibility",
"href": "https://drafts.csswg.org/css-view-transitions-2/#check-eligibility",
"title": "Check eligibility for outbound cross-document view transition",
- "number": "7.3.1"
+ "number": "7.4.1"
},
"definedIn": "prose"
},
@@ -835,7 +835,7 @@
"id": "setup-outbound-transition",
"href": "https://drafts.csswg.org/css-view-transitions-2/#setup-outbound-transition",
"title": "Setup the outbound transition when ready to swap pages",
- "number": "7.3.2"
+ "number": "7.4.2"
},
"definedIn": "prose"
},
@@ -854,7 +854,7 @@
"id": "update-opt-in",
"href": "https://drafts.csswg.org/css-view-transitions-2/#update-opt-in",
"title": "Update the opt-in flag to reflect the current state",
- "number": "7.3.3"
+ "number": "7.4.3"
},
"definedIn": "prose"
},
@@ -873,7 +873,7 @@
"id": "access-view-transition-in-new-doc",
"href": "https://drafts.csswg.org/css-view-transitions-2/#access-view-transition-in-new-doc",
"title": "Activating the view transition in the new Document",
- "number": "7.4"
+ "number": "7.5"
},
"definedIn": "prose"
},
@@ -892,7 +892,7 @@
"id": "vt-group-nearest-contain",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-nearest-contain",
"title": "Compute the nearest containing view-transition-group",
- "number": "7.6.1"
+ "number": "7.7.1"
},
"definedIn": "prose"
}
diff --git a/ed/dfns/shared-storage.json b/ed/dfns/shared-storage.json
index b3fbba1e6868..2fcf2209b6c6 100644
--- a/ed/dfns/shared-storage.json
+++ b/ed/dfns/shared-storage.json
@@ -451,25 +451,6 @@
},
"definedIn": "prose"
},
- {
- "id": "http-headerdef-shared-storage-cross-origin-worklet-allowed",
- "href": "https://wicg.github.io/shared-storage/#http-headerdef-shared-storage-cross-origin-worklet-allowed",
- "linkingText": [
- "Shared-Storage-Cross-Origin-Worklet-Allowed"
- ],
- "localLinkingText": [],
- "type": "http-header",
- "for": [],
- "access": "public",
- "informative": false,
- "heading": {
- "id": "shared-storage-cross-origin-worklet-allowed",
- "href": "https://wicg.github.io/shared-storage/#shared-storage-cross-origin-worklet-allowed",
- "title": "The `Shared-Storage-Cross-Origin-Worklet-Allowed` HTTP response header",
- "number": "2.2.4"
- },
- "definedIn": "heading"
- },
{
"id": "sharedstorage-data-partition-origin",
"href": "https://wicg.github.io/shared-storage/#sharedstorage-data-partition-origin",
@@ -484,8 +465,8 @@
"access": "private",
"informative": false,
"heading": {
- "id": "shared-storage-cross-origin-worklet-allowed",
- "href": "https://wicg.github.io/shared-storage/#shared-storage-cross-origin-worklet-allowed",
+ "id": "worklet-allowed-header",
+ "href": "https://wicg.github.io/shared-storage/#worklet-allowed-header",
"title": "The `Shared-Storage-Cross-Origin-Worklet-Allowed` HTTP response header",
"number": "2.2.4"
},
@@ -883,10 +864,10 @@
"definedIn": "prose"
},
{
- "id": "calling-site",
- "href": "https://wicg.github.io/shared-storage/#calling-site",
+ "id": "get-the-default-selecturl-index",
+ "href": "https://wicg.github.io/shared-storage/#get-the-default-selecturl-index",
"linkingText": [
- "calling site"
+ "get the default selectURL index"
],
"localLinkingText": [],
"type": "dfn",
@@ -894,18 +875,18 @@
"access": "private",
"informative": false,
"heading": {
- "id": "nav-budget",
- "href": "https://wicg.github.io/shared-storage/#nav-budget",
- "title": "Navigation Entropy Budget",
- "number": "2.6.1"
+ "id": "budgets",
+ "href": "https://wicg.github.io/shared-storage/#budgets",
+ "title": "Entropy Budgets",
+ "number": "2.6"
},
"definedIn": "prose"
},
{
- "id": "navigation-entropy-allowance",
- "href": "https://wicg.github.io/shared-storage/#navigation-entropy-allowance",
+ "id": "default-selecturl-index",
+ "href": "https://wicg.github.io/shared-storage/#default-selecturl-index",
"linkingText": [
- "navigation entropy allowance"
+ "default selectURL index"
],
"localLinkingText": [],
"type": "dfn",
@@ -919,6 +900,25 @@
},
"definedIn": "prose"
},
+ {
+ "id": "navigation-entropy-allowance",
+ "href": "https://wicg.github.io/shared-storage/#navigation-entropy-allowance",
+ "linkingText": [
+ "navigation entropy allowance"
+ ],
+ "localLinkingText": [],
+ "type": "dfn",
+ "for": [],
+ "access": "private",
+ "informative": false,
+ "heading": {
+ "id": "nav-budget",
+ "href": "https://wicg.github.io/shared-storage/#nav-budget",
+ "title": "Navigation Entropy Budget",
+ "number": "2.6.1"
+ },
+ "definedIn": "prose"
+ },
{
"id": "navigation-budget-lifetime",
"href": "https://wicg.github.io/shared-storage/#navigation-budget-lifetime",
@@ -1070,54 +1070,16 @@
"definedIn": "prose"
},
{
- "id": "calling-site-remaining-navigation-budget",
- "href": "https://wicg.github.io/shared-storage/#calling-site-remaining-navigation-budget",
+ "id": "site-remaining-navigation-budget",
+ "href": "https://wicg.github.io/shared-storage/#site-remaining-navigation-budget",
"linkingText": [
"remaining navigation budget"
],
"localLinkingText": [],
"type": "dfn",
"for": [
- "calling site"
- ],
- "access": "private",
- "informative": false,
- "heading": {
- "id": "title",
- "href": "https://wicg.github.io/shared-storage/#title",
- "title": "Shared Storage API"
- },
- "definedIn": "prose"
- },
- {
- "id": "selecturl-input-url-list",
- "href": "https://wicg.github.io/shared-storage/#selecturl-input-url-list",
- "linkingText": [
- "input URL list"
- ],
- "localLinkingText": [],
- "type": "dfn",
- "for": [
- "selectURL"
- ],
- "access": "private",
- "informative": false,
- "heading": {
- "id": "title",
- "href": "https://wicg.github.io/shared-storage/#title",
- "title": "Shared Storage API"
- },
- "definedIn": "prose"
- },
- {
- "id": "default-index",
- "href": "https://wicg.github.io/shared-storage/#default-index",
- "linkingText": [
- "default index"
+ "site"
],
- "localLinkingText": [],
- "type": "dfn",
- "for": [],
"access": "private",
"informative": false,
"heading": {
@@ -1182,16 +1144,16 @@
"definedIn": "prose"
},
{
- "id": "shared-storage-navigation-budget-charged",
- "href": "https://wicg.github.io/shared-storage/#shared-storage-navigation-budget-charged",
+ "id": "charge-shared-storage-navigation-budget",
+ "href": "https://wicg.github.io/shared-storage/#charge-shared-storage-navigation-budget",
"linkingText": [
- "shared storage navigation budget charged"
+ "charge shared storage navigation budget"
],
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
- "informative": true,
+ "informative": false,
"heading": {
"id": "title",
"href": "https://wicg.github.io/shared-storage/#title",
@@ -1200,10 +1162,10 @@
"definedIn": "prose"
},
{
- "id": "charge-shared-storage-navigation-budget",
- "href": "https://wicg.github.io/shared-storage/#charge-shared-storage-navigation-budget",
+ "id": "purge-expired-bit-debits-from-all-navigation-entropy-ledgers",
+ "href": "https://wicg.github.io/shared-storage/#purge-expired-bit-debits-from-all-navigation-entropy-ledgers",
"linkingText": [
- "charge shared storage navigation budget"
+ "purge expired bit debits from all navigation entropy ledgers"
],
"localLinkingText": [],
"type": "dfn",
@@ -1218,10 +1180,10 @@
"definedIn": "prose"
},
{
- "id": "page-load",
- "href": "https://wicg.github.io/shared-storage/#page-load",
+ "id": "overall-page-entropy-allowance",
+ "href": "https://wicg.github.io/shared-storage/#overall-page-entropy-allowance",
"linkingText": [
- "page load"
+ "overall page entropy allowance"
],
"localLinkingText": [],
"type": "dfn",
@@ -1229,18 +1191,18 @@
"access": "private",
"informative": false,
"heading": {
- "id": "report-budget",
- "href": "https://wicg.github.io/shared-storage/#report-budget",
- "title": "Reporting Entropy Budget",
+ "id": "top-budgets",
+ "href": "https://wicg.github.io/shared-storage/#top-budgets",
+ "title": "Top-Level Traversable Entropy Budgets",
"number": "2.6.2"
},
"definedIn": "prose"
},
{
- "id": "reporting-entropy-allowance",
- "href": "https://wicg.github.io/shared-storage/#reporting-entropy-allowance",
+ "id": "site-page-entropy-allowance",
+ "href": "https://wicg.github.io/shared-storage/#site-page-entropy-allowance",
"linkingText": [
- "reporting entropy allowance"
+ "site page entropy allowance"
],
"localLinkingText": [],
"type": "dfn",
@@ -1255,14 +1217,16 @@
"definedIn": "prose"
},
{
- "id": "shared-storage-reporting-budget",
- "href": "https://wicg.github.io/shared-storage/#shared-storage-reporting-budget",
+ "id": "traversable-navigable-shared-storage-page-budget",
+ "href": "https://wicg.github.io/shared-storage/#traversable-navigable-shared-storage-page-budget",
"linkingText": [
- "shared storage reporting budget"
+ "shared storage page budget"
],
"localLinkingText": [],
"type": "dfn",
- "for": [],
+ "for": [
+ "traversable navigable"
+ ],
"access": "private",
"informative": false,
"heading": {
@@ -1273,14 +1237,16 @@
"definedIn": "prose"
},
{
- "id": "determine-reporting-budget-to-charge",
- "href": "https://wicg.github.io/shared-storage/#determine-reporting-budget-to-charge",
+ "id": "shared-storage-page-budget-overall-budget",
+ "href": "https://wicg.github.io/shared-storage/#shared-storage-page-budget-overall-budget",
"linkingText": [
- "determine reporting budget to charge"
+ "overall budget"
],
"localLinkingText": [],
"type": "dfn",
- "for": [],
+ "for": [
+ "shared storage page budget"
+ ],
"access": "private",
"informative": false,
"heading": {
@@ -1288,49 +1254,54 @@
"href": "https://wicg.github.io/shared-storage/#title",
"title": "Shared Storage API"
},
- "definedIn": "prose"
+ "definedIn": "dt"
},
{
- "id": "shared-storage-reporting-budget-charged",
- "href": "https://wicg.github.io/shared-storage/#shared-storage-reporting-budget-charged",
+ "id": "shared-storage-page-budget-site-budget-map",
+ "href": "https://wicg.github.io/shared-storage/#shared-storage-page-budget-site-budget-map",
"linkingText": [
- "shared storage reporting budget charged"
+ "site budget map"
],
"localLinkingText": [],
"type": "dfn",
- "for": [],
+ "for": [
+ "shared storage page budget"
+ ],
"access": "private",
- "informative": true,
+ "informative": false,
"heading": {
"id": "title",
"href": "https://wicg.github.io/shared-storage/#title",
"title": "Shared Storage API"
},
- "definedIn": "prose"
+ "definedIn": "dt"
},
{
- "id": "charge-shared-storage-reporting-budget",
- "href": "https://wicg.github.io/shared-storage/#charge-shared-storage-reporting-budget",
+ "id": "traversable-navigable-page-budget",
+ "href": "https://wicg.github.io/shared-storage/#traversable-navigable-page-budget",
"linkingText": [
- "charge shared storage reporting budget"
+ "page budget"
],
"localLinkingText": [],
"type": "dfn",
- "for": [],
+ "for": [
+ "traversable navigable"
+ ],
"access": "private",
"informative": false,
"heading": {
- "id": "title",
- "href": "https://wicg.github.io/shared-storage/#title",
- "title": "Shared Storage API"
+ "id": "patch-trav-nav",
+ "href": "https://wicg.github.io/shared-storage/#patch-trav-nav",
+ "title": "Monkey patch for Traversable Navigables",
+ "number": "2.6.2.1"
},
"definedIn": "prose"
},
{
- "id": "purge-expired-bit-debits-from-all-navigation-entropy-ledgers",
- "href": "https://wicg.github.io/shared-storage/#purge-expired-bit-debits-from-all-navigation-entropy-ledgers",
+ "id": "charge-shared-storage-top-level-traversable-budgets",
+ "href": "https://wicg.github.io/shared-storage/#charge-shared-storage-top-level-traversable-budgets",
"linkingText": [
- "purge expired bit debits from all navigation entropy ledgers"
+ "charge shared storage top-level traversable budgets"
],
"localLinkingText": [],
"type": "dfn",
@@ -1338,9 +1309,10 @@
"access": "private",
"informative": false,
"heading": {
- "id": "title",
- "href": "https://wicg.github.io/shared-storage/#title",
- "title": "Shared Storage API"
+ "id": "charge-top-trav-budgets",
+ "href": "https://wicg.github.io/shared-storage/#charge-top-trav-budgets",
+ "title": "Charging the Top-Level Traversable Entropy Budgets",
+ "number": "2.6.2.3"
},
"definedIn": "prose"
},
@@ -2860,6 +2832,44 @@
},
"definedIn": "pre"
},
+ {
+ "id": "http-headerdef-sec-shared-storage-data-origin",
+ "href": "https://wicg.github.io/shared-storage/#http-headerdef-sec-shared-storage-data-origin",
+ "linkingText": [
+ "Sec-Shared-Storage-Data-Origin"
+ ],
+ "localLinkingText": [],
+ "type": "http-header",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "data-origin-request-header",
+ "href": "https://wicg.github.io/shared-storage/#data-origin-request-header",
+ "title": "`Sec-Shared-Storage-Data-Origin` Request Header",
+ "number": "8.3.1"
+ },
+ "definedIn": "prose"
+ },
+ {
+ "id": "http-headerdef-shared-storage-cross-origin-worklet-allowed",
+ "href": "https://wicg.github.io/shared-storage/#http-headerdef-shared-storage-cross-origin-worklet-allowed",
+ "linkingText": [
+ "Shared-Storage-Cross-Origin-Worklet-Allowed"
+ ],
+ "localLinkingText": [],
+ "type": "http-header",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "cross-origin-response-header",
+ "href": "https://wicg.github.io/shared-storage/#cross-origin-response-header",
+ "title": "`Shared-Storage-Cross-Origin-Worklet-Allowed` Response Header",
+ "number": "8.3.2"
+ },
+ "definedIn": "prose"
+ },
{
"id": "http-headerdef-sec-shared-storage-writable",
"href": "https://wicg.github.io/shared-storage/#http-headerdef-sec-shared-storage-writable",
@@ -2872,10 +2882,10 @@
"access": "public",
"informative": false,
"heading": {
- "id": "request-header",
- "href": "https://wicg.github.io/shared-storage/#request-header",
+ "id": "writable-request-header",
+ "href": "https://wicg.github.io/shared-storage/#writable-request-header",
"title": "`Sec-Shared-Storage-Writable` Request Header",
- "number": "8.3.1"
+ "number": "8.3.3"
},
"definedIn": "prose"
},
@@ -2891,10 +2901,10 @@
"access": "public",
"informative": false,
"heading": {
- "id": "response-header",
- "href": "https://wicg.github.io/shared-storage/#response-header",
+ "id": "write-response-header",
+ "href": "https://wicg.github.io/shared-storage/#write-response-header",
"title": "`Shared-Storage-Write` Response Header",
- "number": "8.3.2"
+ "number": "8.3.4"
},
"definedIn": "prose"
},
diff --git a/ed/dfns/webgpu.json b/ed/dfns/webgpu.json
index 7f3c6009ad1b..deecf29dba17 100644
--- a/ed/dfns/webgpu.json
+++ b/ed/dfns/webgpu.json
@@ -15480,6 +15480,27 @@
},
"definedIn": "pre"
},
+ {
+ "id": "abstract-opdef-gpuvertexformat-bytesize",
+ "href": "https://gpuweb.github.io/gpuweb/#abstract-opdef-gpuvertexformat-bytesize",
+ "linkingText": [
+ "byteSize"
+ ],
+ "localLinkingText": [],
+ "type": "abstract-op",
+ "for": [
+ "GPUVertexFormat"
+ ],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "id": "vertex-formats",
+ "href": "https://gpuweb.github.io/gpuweb/#vertex-formats",
+ "title": "Vertex Formats",
+ "number": "10.3.7.1"
+ },
+ "definedIn": "table"
+ },
{
"id": "dom-gpuvertexformat-uint8x2",
"href": "https://gpuweb.github.io/gpuweb/#dom-gpuvertexformat-uint8x2",
diff --git a/ed/headings/css-easing-2.json b/ed/headings/css-easing-2.json
index 396d2842d428..b0f531a60791 100644
--- a/ed/headings/css-easing-2.json
+++ b/ed/headings/css-easing-2.json
@@ -53,78 +53,64 @@
"id": "the-linear-easing-function",
"href": "https://drafts.csswg.org/css-easing-2/#the-linear-easing-function",
"level": 3,
- "title": "The linear easing function: linear()",
+ "title": "Linear Easing Functions: linear, linear()",
"number": "2.1"
},
- {
- "id": "linear-easing-function-syntax",
- "href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-syntax",
- "level": 4,
- "title": "Syntax",
- "number": "2.1.1"
- },
{
"id": "linear-easing-function-serializing",
"href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-serializing",
"level": 4,
"title": "Serializing",
- "number": "2.1.2"
+ "number": "2.1.1"
},
{
"id": "linear-easing-function-output",
"href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-output",
"level": 4,
- "title": "Output of a linear easing function",
- "number": "2.1.3"
+ "title": "Output",
+ "number": "2.1.2"
},
{
"id": "linear-easing-function-examples",
"href": "https://drafts.csswg.org/css-easing-2/#linear-easing-function-examples",
"level": 4,
"title": "Examples",
- "number": "2.1.4"
- },
- {
- "id": "the-linear-easing-keyword",
- "href": "https://drafts.csswg.org/css-easing-2/#the-linear-easing-keyword",
- "level": 3,
- "title": "The linear easing keyword: linear",
- "number": "2.2"
+ "number": "2.1.3"
},
{
"id": "cubic-bezier-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions",
"level": 3,
"title": "Cubic Bézier easing functions: ease, ease-in, ease-out, ease-in-out, cubic-bezier()",
- "number": "2.3"
+ "number": "2.2"
},
{
"id": "cubic-bezier-algo",
"href": "https://drafts.csswg.org/css-easing-2/#cubic-bezier-algo",
"level": 4,
- "title": "Output of a cubic bézier easing function",
- "number": "2.3.1"
+ "title": "Output",
+ "number": "2.2.1"
},
{
"id": "step-easing-functions",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"level": 3,
"title": "Step easing functions: step-start, step-end, steps()",
- "number": "2.4"
+ "number": "2.3"
},
{
"id": "step-easing-algo",
"href": "https://drafts.csswg.org/css-easing-2/#step-easing-algo",
"level": 4,
- "title": "Output of a step easing function",
- "number": "2.4.1"
+ "title": "Output",
+ "number": "2.3.1"
},
{
"id": "serialization",
"href": "https://drafts.csswg.org/css-easing-2/#serialization",
"level": 3,
"title": "Serialization",
- "number": "2.5"
+ "number": "2.4"
},
{
"id": "privacy",
diff --git a/ed/headings/css-grid-3.json b/ed/headings/css-grid-3.json
index 4ed413a87622..147a55a51aef 100644
--- a/ed/headings/css-grid-3.json
+++ b/ed/headings/css-grid-3.json
@@ -63,68 +63,75 @@
"title": "Masonry Layout Model",
"number": "2"
},
+ {
+ "id": "order-accessibility",
+ "href": "https://drafts.csswg.org/css-grid-3/#order-accessibility",
+ "level": 3,
+ "title": "Reordering and Accessibility",
+ "number": "2.1"
+ },
{
"id": "masonry-model-grid-option",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-model-grid-option",
"level": 3,
"title": "Grid-integrated Option: Establishing Masonry Layout",
- "number": "2.1"
+ "number": "2.2"
},
{
"id": "grid-template-masonry",
"href": "https://drafts.csswg.org/css-grid-3/#grid-template-masonry",
"level": 4,
- "title": "Indicating the Masonry Axis: the masonry keyword for grid-template-columns/grid-template-rows",
- "number": "2.1.1"
+ "title": "Indicating the stacking axis: the masonry keyword for grid-template-columns/grid-template-rows",
+ "number": "2.2.1"
},
{
"id": "grid-auto-flow",
"href": "https://drafts.csswg.org/css-grid-3/#grid-auto-flow",
"level": 4,
"title": "Auto Flow Directions: the grid-auto-flow property",
- "number": "2.1.2"
+ "number": "2.2.2"
},
{
"id": "masonry-model-masonry-option",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-model-masonry-option",
"level": 3,
"title": "Grid-independent Option: Establishing Masonry Layout",
- "number": "2.2"
+ "number": "2.3"
},
{
"id": "masonry-display",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-display",
"level": 4,
"title": "Establishing Masonry Containers: the masonry and inline-masonry display values",
- "number": "2.2.1"
+ "number": "2.3.1"
},
{
"id": "masonry-direction",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-direction",
"level": 4,
"title": "Masonry Track Direction: the masonry-direction property",
- "number": "2.2.2"
+ "number": "2.3.2"
},
{
"id": "masonry-fill",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-fill",
"level": 4,
"title": "Masonry Cross Direction: the masonry-fill property",
- "number": "2.2.3"
+ "number": "2.3.3"
},
{
"id": "masonry-flow",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-flow",
"level": 4,
"title": "Masonry Flow Directions: the masonry-flow shorthand",
- "number": "2.2.4"
+ "number": "2.3.4"
},
{
"id": "masonry-shorthand",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-shorthand",
"level": 4,
"title": "Masonry Definition Shorthand: the masonry property",
- "number": "2.2.5"
+ "number": "2.3.5"
},
{
"id": "masonry-track-templates",
@@ -263,7 +270,7 @@
"id": "masonry-axis-baseline-alignment",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-axis-baseline-alignment",
"level": 3,
- "title": "Baseline Alignment in the Masonry Axis",
+ "title": "Baseline Alignment in the stacking axis",
"number": "6.1"
},
{
@@ -277,7 +284,7 @@
"id": "masonry-axis-pagination",
"href": "https://drafts.csswg.org/css-grid-3/#masonry-axis-pagination",
"level": 3,
- "title": "Fragmentation in the Masonry Axis",
+ "title": "Fragmentation in the stacking axis",
"number": "7.1"
},
{
@@ -313,6 +320,18 @@
"level": 2,
"title": "11. Acknowledgements"
},
+ {
+ "id": "security",
+ "href": "https://drafts.csswg.org/css-grid-3/#security",
+ "level": 2,
+ "title": "12. Security Considerations"
+ },
+ {
+ "id": "privacy",
+ "href": "https://drafts.csswg.org/css-grid-3/#privacy",
+ "level": 2,
+ "title": "13. Privacy Considerations"
+ },
{
"id": "w3c-conformance",
"href": "https://drafts.csswg.org/css-grid-3/#w3c-conformance",
diff --git a/ed/headings/css-view-transitions-2.json b/ed/headings/css-view-transitions-2.json
index 19cedabf7687..d68867884f92 100644
--- a/ed/headings/css-view-transitions-2.json
+++ b/ed/headings/css-view-transitions-2.json
@@ -287,117 +287,124 @@
"title": "Serializable view transition params",
"number": "7.1.3"
},
+ {
+ "id": "page-visibility-change-steps-additions",
+ "href": "https://drafts.csswg.org/css-view-transitions-2/#page-visibility-change-steps-additions",
+ "level": 3,
+ "title": "Additions to the view transition page-visibility change steps",
+ "number": "7.2"
+ },
{
"id": "capture-classes-data-structure",
"href": "https://drafts.csswg.org/css-view-transitions-2/#capture-classes-data-structure",
"level": 4,
"title": "Captured elements extension",
- "number": "7.1.4"
+ "number": "7.2.1"
},
{
"id": "vt-rule-algo",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-rule-algo",
"level": 3,
"title": "Resolving the @view-transition rule",
- "number": "7.2"
+ "number": "7.3"
},
{
"id": "setup-old-document-vt",
"href": "https://drafts.csswg.org/css-view-transitions-2/#setup-old-document-vt",
"level": 3,
"title": "Setting up the view transition in the old Document",
- "number": "7.3"
+ "number": "7.4"
},
{
"id": "check-eligibility",
"href": "https://drafts.csswg.org/css-view-transitions-2/#check-eligibility",
"level": 4,
"title": "Check eligibility for outbound cross-document view transition",
- "number": "7.3.1"
+ "number": "7.4.1"
},
{
"id": "setup-outbound-transition",
"href": "https://drafts.csswg.org/css-view-transitions-2/#setup-outbound-transition",
"level": 4,
"title": "Setup the outbound transition when ready to swap pages",
- "number": "7.3.2"
+ "number": "7.4.2"
},
{
"id": "update-opt-in",
"href": "https://drafts.csswg.org/css-view-transitions-2/#update-opt-in",
"level": 4,
"title": "Update the opt-in flag to reflect the current state",
- "number": "7.3.3"
+ "number": "7.4.3"
},
{
"id": "proceed-if-skipped",
"href": "https://drafts.csswg.org/css-view-transitions-2/#proceed-if-skipped",
"level": 4,
"title": "Proceed with navigation if view transition is skipped",
- "number": "7.3.4"
+ "number": "7.4.4"
},
{
"id": "cross-doc-after-capture",
"href": "https://drafts.csswg.org/css-view-transitions-2/#cross-doc-after-capture",
"level": 4,
"title": "Proceed with cross-document view transition after capturing the old state",
- "number": "7.3.5"
+ "number": "7.4.5"
},
{
"id": "access-view-transition-in-new-doc",
"href": "https://drafts.csswg.org/css-view-transitions-2/#access-view-transition-in-new-doc",
"level": 3,
"title": "Activating the view transition in the new Document",
- "number": "7.4"
+ "number": "7.5"
},
{
"id": "vt-class-algorithms",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-class-algorithms",
"level": 3,
"title": "Capturing the view-transition-class",
- "number": "7.5"
+ "number": "7.6"
},
{
"id": "vt-group-algorithm",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-algorithm",
"level": 3,
"title": "Capturing and applying view-transition-group",
- "number": "7.6"
+ "number": "7.7"
},
{
"id": "vt-group-nearest-contain",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-nearest-contain",
"level": 4,
"title": "Compute the nearest containing view-transition-group",
- "number": "7.6.1"
+ "number": "7.7.1"
},
{
"id": "vt-group-capture-old",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-capture-old",
"level": 4,
"title": "Compute the old view-transition-group",
- "number": "7.6.2"
+ "number": "7.7.2"
},
{
"id": "vt-group-capture-new",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-capture-new",
"level": 4,
"title": "Compute the new view-transition-group",
- "number": "7.6.3"
+ "number": "7.7.3"
},
{
"id": "vt-group-reparent",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-reparent",
"level": 4,
"title": "Reparent a ::view-transition-group() to its specified containing group",
- "number": "7.6.4"
+ "number": "7.7.4"
},
{
"id": "vt-group-transform-adjust",
"href": "https://drafts.csswg.org/css-view-transitions-2/#vt-group-transform-adjust",
"level": 4,
"title": "Adjust the group’s transform to be relative to its containing ::view-transition-group()",
- "number": "7.6.5"
+ "number": "7.7.5"
},
{
"id": "priv",
diff --git a/ed/headings/shared-storage.json b/ed/headings/shared-storage.json
index f52bd9b282fc..65a50cead19e 100644
--- a/ed/headings/shared-storage.json
+++ b/ed/headings/shared-storage.json
@@ -78,8 +78,8 @@
"number": "2.2.3"
},
{
- "id": "shared-storage-cross-origin-worklet-allowed",
- "href": "https://wicg.github.io/shared-storage/#shared-storage-cross-origin-worklet-allowed",
+ "id": "worklet-allowed-header",
+ "href": "https://wicg.github.io/shared-storage/#worklet-allowed-header",
"level": 4,
"title": "The `Shared-Storage-Cross-Origin-Worklet-Allowed` HTTP response header",
"number": "2.2.4"
@@ -141,12 +141,33 @@
"number": "2.6.1"
},
{
- "id": "report-budget",
- "href": "https://wicg.github.io/shared-storage/#report-budget",
+ "id": "top-budgets",
+ "href": "https://wicg.github.io/shared-storage/#top-budgets",
"level": 4,
- "title": "Reporting Entropy Budget",
+ "title": "Top-Level Traversable Entropy Budgets",
"number": "2.6.2"
},
+ {
+ "id": "patch-trav-nav",
+ "href": "https://wicg.github.io/shared-storage/#patch-trav-nav",
+ "level": 5,
+ "title": "Monkey patch for Traversable Navigables",
+ "number": "2.6.2.1"
+ },
+ {
+ "id": "patch-navigables",
+ "href": "https://wicg.github.io/shared-storage/#patch-navigables",
+ "level": 5,
+ "title": "Monkey patch for Navigables",
+ "number": "2.6.2.2"
+ },
+ {
+ "id": "charge-top-trav-budgets",
+ "href": "https://wicg.github.io/shared-storage/#charge-top-trav-budgets",
+ "level": 5,
+ "title": "Charging the Top-Level Traversable Entropy Budgets",
+ "number": "2.6.2.3"
+ },
{
"id": "backend",
"href": "https://wicg.github.io/shared-storage/#backend",
@@ -316,19 +337,33 @@
"number": "8.3"
},
{
- "id": "request-header",
- "href": "https://wicg.github.io/shared-storage/#request-header",
+ "id": "data-origin-request-header",
+ "href": "https://wicg.github.io/shared-storage/#data-origin-request-header",
"level": 4,
- "title": "`Sec-Shared-Storage-Writable` Request Header",
+ "title": "`Sec-Shared-Storage-Data-Origin` Request Header",
"number": "8.3.1"
},
{
- "id": "response-header",
- "href": "https://wicg.github.io/shared-storage/#response-header",
+ "id": "cross-origin-response-header",
+ "href": "https://wicg.github.io/shared-storage/#cross-origin-response-header",
"level": 4,
- "title": "`Shared-Storage-Write` Response Header",
+ "title": "`Shared-Storage-Cross-Origin-Worklet-Allowed` Response Header",
"number": "8.3.2"
},
+ {
+ "id": "writable-request-header",
+ "href": "https://wicg.github.io/shared-storage/#writable-request-header",
+ "level": 4,
+ "title": "`Sec-Shared-Storage-Writable` Request Header",
+ "number": "8.3.3"
+ },
+ {
+ "id": "write-response-header",
+ "href": "https://wicg.github.io/shared-storage/#write-response-header",
+ "level": 4,
+ "title": "`Shared-Storage-Write` Response Header",
+ "number": "8.3.4"
+ },
{
"id": "ss-fetch-algo",
"href": "https://wicg.github.io/shared-storage/#ss-fetch-algo",
diff --git a/ed/headings/storage-access.json b/ed/headings/storage-access.json
index e198e65960e8..6452829ced9b 100644
--- a/ed/headings/storage-access.json
+++ b/ed/headings/storage-access.json
@@ -14,7 +14,7 @@
"id": "subtitle",
"href": "https://privacycg.github.io/storage-access/#subtitle",
"level": 2,
- "title": "Draft Community Group Report, 9 September 2024"
+ "title": "Draft Community Group Report, 10 September 2024"
},
{
"id": "abstract",
diff --git a/ed/idl/webgpu.idl b/ed/idl/webgpu.idl
index df82c2becd5e..6e49e2d50773 100644
--- a/ed/idl/webgpu.idl
+++ b/ed/idl/webgpu.idl
@@ -639,7 +639,7 @@ interface mixin GPUPipelineBase {
dictionary GPUProgrammableStage {
required GPUShaderModule module;
USVString entryPoint;
- record constants;
+ record constants = {};
};
typedef double GPUPipelineConstantValue; // May represent WGSL's bool, f32, i32, u32, and f16 if enabled.
diff --git a/ed/ids/css-content-3.json b/ed/ids/css-content-3.json
index d212de51da5e..028f80ab91cf 100644
--- a/ed/ids/css-content-3.json
+++ b/ed/ids/css-content-3.json
@@ -241,9 +241,9 @@
"https://drafts.csswg.org/css-content-3/#ref-for-valdef-content-close-quote%E2%91%A6",
"https://drafts.csswg.org/css-content-3/#example-eb11c28e",
"https://drafts.csswg.org/css-content-3/#leaders",
- "https://drafts.csswg.org/css-content-3/#ref-for-funcdef-content-leader%E2%91%A0",
+ "https://drafts.csswg.org/css-content-3/#ref-for-funcdef-leader",
"https://drafts.csswg.org/css-content-3/#leader-function",
- "https://drafts.csswg.org/css-content-3/#ref-for-funcdef-content-leader%E2%91%A1",
+ "https://drafts.csswg.org/css-content-3/#ref-for-funcdef-leader%E2%91%A0",
"https://drafts.csswg.org/css-content-3/#funcdef-content-leader",
"https://drafts.csswg.org/css-content-3/#ref-for-typedef-leader-type",
"https://drafts.csswg.org/css-content-3/#funcdef-leader",
diff --git a/ed/ids/css-easing-2.json b/ed/ids/css-easing-2.json
index 5d579c7742da..2534e67e0fe5 100644
--- a/ed/ids/css-easing-2.json
+++ b/ed/ids/css-easing-2.json
@@ -32,99 +32,123 @@
"https://drafts.csswg.org/css-easing-2/#ref-for-before-flag",
"https://drafts.csswg.org/css-easing-2/#ref-for-easing-function%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#typedef-easing-function",
- "https://drafts.csswg.org/css-easing-2/#ref-for-valdef-easing-function-linear",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-typedef-linear-easing-function",
"https://drafts.csswg.org/css-easing-2/#ref-for-comb-one",
- "https://drafts.csswg.org/css-easing-2/#ref-for-comb-one%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-typedef-cubic-bezier-easing-function",
- "https://drafts.csswg.org/css-easing-2/#ref-for-comb-one%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-comb-one%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-typedef-step-easing-function",
"https://drafts.csswg.org/css-easing-2/#the-linear-easing-function",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-valdef-easing-function-linear",
"https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear",
"https://drafts.csswg.org/css-easing-2/#linear-easing-function",
"https://drafts.csswg.org/css-easing-2/#ref-for-easing-function%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point",
- "https://drafts.csswg.org/css-easing-2/#linear-easing-function-control-point",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point",
+ "https://drafts.csswg.org/css-easing-2/#linear-control-point",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#linear-easing-function-syntax",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function",
+ "https://drafts.csswg.org/css-easing-2/#typedef-linear-easing-function",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-comb-one%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#funcdef-linear",
"https://drafts.csswg.org/css-easing-2/#ref-for-number-value",
"https://drafts.csswg.org/css-easing-2/#ref-for-comb-all",
"https://drafts.csswg.org/css-easing-2/#ref-for-percentage-value",
"https://drafts.csswg.org/css-easing-2/#ref-for-mult-num-range",
"https://drafts.csswg.org/css-easing-2/#ref-for-mult-comma",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A0",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-valdef-easing-function-linear%E2%91%A0",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function%E2%91%A0",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-percentage-value%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-number-value%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-number-value%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-percentage-value%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-percentage-value%E2%91%A2",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-percentage-value%E2%91%A3",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3",
"https://drafts.csswg.org/css-easing-2/#ref-for-linear-canonicalization",
"https://drafts.csswg.org/css-easing-2/#linear-canonicalization",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A2",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A4",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A4",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A5",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A5",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A6",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A7",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A5",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A6",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A8",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%93%AA",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A6",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A7",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A7",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A8",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A8",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A2",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A0%E2%93%AA",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A0%E2%91%A0",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A4",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-control-point%E2%91%A0%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A5",
"https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A7",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-css-internal-representation",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-easing-2/#linear-easing-function-serializing",
- "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A0",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function%E2%91%A0",
- "https://drafts.csswg.org/css-easing-2/#linear-easing-function-serialized-computed-value",
- "https://drafts.csswg.org/css-easing-2/#ref-for-string",
- "https://drafts.csswg.org/css-easing-2/#ref-for-list-iterate",
- "https://drafts.csswg.org/css-easing-2/#ref-for-list-item",
+ "https://drafts.csswg.org/css-easing-2/#serialize-a-linear-function",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-serialize-a-linear-control-point",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-string-concatenate",
+ "https://drafts.csswg.org/css-easing-2/#serialize-a-linear-control-point",
"https://drafts.csswg.org/css-easing-2/#ref-for-number-value%E2%91%A2",
- "https://drafts.csswg.org/css-easing-2/#ref-for-percentage-value%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A8",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-percentage-value%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#example-5471f7f6",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%91%A7",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%93%AA",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A0%E2%91%A8",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#linear-easing-function-output",
"https://drafts.csswg.org/css-easing-2/#calculate-linear-easing-output-progress",
"https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A7",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#ref-for-list-item%E2%91%A0",
- "https://drafts.csswg.org/css-easing-2/#ref-for-list-size",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A5",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A1%E2%93%AA",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A6",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A2",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A7",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A1%E2%91%A0",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A8",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A5",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A6",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%93%AA",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A1%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A0",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A7",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-control-point%E2%91%A1%E2%91%A2",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A8",
"https://drafts.csswg.org/css-easing-2/#linear-easing-function-examples",
"https://drafts.csswg.org/css-easing-2/#example-a1f90788",
- "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#example-84c8e469",
- "https://drafts.csswg.org/css-easing-2/#ref-for-percentage-value%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-percentage-value%E2%91%A5",
"https://drafts.csswg.org/css-easing-2/#example-c0c15aff",
"https://drafts.csswg.org/css-easing-2/#example-67848c25",
"https://drafts.csswg.org/css-easing-2/#example-59080c25",
- "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#the-linear-easing-keyword",
- "https://drafts.csswg.org/css-easing-2/#ref-for-valdef-easing-function-linear%E2%91%A0",
- "https://drafts.csswg.org/css-easing-2/#linear-timing-function-section",
- "https://drafts.csswg.org/css-easing-2/#valdef-easing-function-linear",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function%E2%91%A2",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A4",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A0%E2%91%A8",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#ref-for-valdef-easing-function-linear%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-valdef-easing-function-linear%E2%91%A2",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A4",
"https://drafts.csswg.org/css-easing-2/#cubic-bezier-easing-functions",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-cubic-bezier-easing-function-ease",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-cubic-bezier-easing-function-ease-in",
@@ -163,15 +187,15 @@
"https://drafts.csswg.org/css-easing-2/#ref-for-number-value%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-cubic-bzier-easing-function%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#cubic-bezier-algo",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A5",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%93%AA",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A0",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A6",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A2",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A7",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A2",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%93%AA",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A0",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A2",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A4",
"https://drafts.csswg.org/css-easing-2/#step-easing-functions",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-step-easing-function-step-start",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-step-easing-function-step-end",
@@ -209,13 +233,13 @@
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-none%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-step-position",
"https://drafts.csswg.org/css-easing-2/#valdef-steps-jump-start",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A5",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A5",
"https://drafts.csswg.org/css-easing-2/#valdef-steps-jump-end",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A6",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A6",
"https://drafts.csswg.org/css-easing-2/#valdef-steps-jump-none",
"https://drafts.csswg.org/css-easing-2/#valdef-steps-jump-both",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A7",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A1%E2%91%A8",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A7",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A8",
"https://drafts.csswg.org/css-easing-2/#valdef-steps-start",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-start%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#valdef-steps-end",
@@ -230,12 +254,12 @@
"https://drafts.csswg.org/css-easing-2/#ref-for-step-easing-function%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-step-position%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-start%E2%91%A0",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%93%AA",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%93%AA",
"https://drafts.csswg.org/css-easing-2/#ref-for-before-flag%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A8",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A0",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-before-flag%E2%91%A2",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%93%AA",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A6",
"https://drafts.csswg.org/css-easing-2/#ref-for-step-position%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-start%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-start%E2%91%A1",
@@ -245,20 +269,20 @@
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-end%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-start%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-start%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A0",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A7",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-before-flag%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A2",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-steps",
"https://drafts.csswg.org/css-easing-2/#ref-for-step-position%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-start%E2%91%A3",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-both%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#ref-for-before-flag%E2%91%A4",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%91%A3",
"https://drafts.csswg.org/css-easing-2/#ref-for-steps%E2%91%A0",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%91%A4",
"https://drafts.csswg.org/css-easing-2/#ref-for-steps%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A5",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%91%A5",
"https://drafts.csswg.org/css-easing-2/#ref-for-step-position%E2%91%A3",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-start%E2%91%A4",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-end%E2%91%A2",
@@ -267,25 +291,25 @@
"https://drafts.csswg.org/css-easing-2/#ref-for-steps%E2%91%A3",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-both%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-steps%E2%91%A4",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A6",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A7",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A1",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%91%A6",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%91%A7",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A8",
"https://drafts.csswg.org/css-easing-2/#ref-for-step-position%E2%91%A4",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-start%E2%91%A5",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A2%E2%91%A8",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A2",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%91%A8",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A1%E2%93%AA",
"https://drafts.csswg.org/css-easing-2/#ref-for-step-position%E2%91%A5",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-jump-end%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A1%E2%91%A0",
"https://drafts.csswg.org/css-easing-2/#serialization",
"https://drafts.csswg.org/css-easing-2/#serializing-a-timing-function",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-cubic-bezier-easing-function-ease%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-valdef-easing-function-linear%E2%91%A3",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-valdef-easing-function-linear%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-cubic-bezier-easing-function-ease-in%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-cubic-bezier-easing-function-ease-out%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-cubic-bezier-easing-function-ease-in-out%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-cubic-bezier-easing-function-cubic-bezier%E2%91%A1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A5",
"https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-step-easing-function-steps%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-step-easing-function-step-start%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-step-easing-function-step-end%E2%91%A1",
@@ -294,17 +318,17 @@
"https://drafts.csswg.org/css-easing-2/#ref-for-valdef-steps-end%E2%91%A3",
"https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-step-easing-function-steps%E2%91%A2",
"https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-step-easing-function-steps%E2%91%A3",
- "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function%E2%91%A4",
- "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A5",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function%E2%91%A2",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A6",
"https://drafts.csswg.org/css-easing-2/#ref-for-linear-easing-function-serialized-computed-value",
"https://drafts.csswg.org/css-easing-2/#privacy",
"https://drafts.csswg.org/css-easing-2/#security",
- "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A3%E2%93%AA",
- "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A0%E2%91%A4",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-input-progress-value%E2%91%A4%E2%93%AA",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-output-progress-value%E2%91%A1%E2%91%A1",
"https://drafts.csswg.org/css-easing-2/#changes",
"https://drafts.csswg.org/css-easing-2/#changes-20240828",
"https://drafts.csswg.org/css-easing-2/#changes-L1",
- "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A6",
+ "https://drafts.csswg.org/css-easing-2/#ref-for-funcdef-linear%E2%91%A7",
"https://drafts.csswg.org/css-easing-2/#acknowledgements",
"https://drafts.csswg.org/css-easing-2/#w3c-conformance",
"https://drafts.csswg.org/css-easing-2/#w3c-conventions",
@@ -316,6 +340,9 @@
"https://drafts.csswg.org/css-easing-2/#index",
"https://drafts.csswg.org/css-easing-2/#index-defined-here",
"https://drafts.csswg.org/css-easing-2/#index-defined-elsewhere",
+ "https://drafts.csswg.org/css-easing-2/#6c3bbf23",
+ "https://drafts.csswg.org/css-easing-2/#cff84c5d",
+ "https://drafts.csswg.org/css-easing-2/#9a34f8c4",
"https://drafts.csswg.org/css-easing-2/#68487d22",
"https://drafts.csswg.org/css-easing-2/#f0809abc",
"https://drafts.csswg.org/css-easing-2/#9f9120ff",
@@ -325,17 +352,16 @@
"https://drafts.csswg.org/css-easing-2/#537cf076",
"https://drafts.csswg.org/css-easing-2/#938ba280",
"https://drafts.csswg.org/css-easing-2/#6ec67710",
- "https://drafts.csswg.org/css-easing-2/#16d07e10",
- "https://drafts.csswg.org/css-easing-2/#5afbefcd",
- "https://drafts.csswg.org/css-easing-2/#0204d188",
- "https://drafts.csswg.org/css-easing-2/#0698d556",
+ "https://drafts.csswg.org/css-easing-2/#4a3bf5fb",
"https://drafts.csswg.org/css-easing-2/#references",
"https://drafts.csswg.org/css-easing-2/#normative",
+ "https://drafts.csswg.org/css-easing-2/#biblio-css-easing-2",
"https://drafts.csswg.org/css-easing-2/#biblio-css-values-3",
"https://drafts.csswg.org/css-easing-2/#biblio-css-values-4",
"https://drafts.csswg.org/css-easing-2/#biblio-infra",
"https://drafts.csswg.org/css-easing-2/#biblio-rfc2119",
"https://drafts.csswg.org/css-easing-2/#informative",
+ "https://drafts.csswg.org/css-easing-2/#biblio-css-typed-om-1",
"https://drafts.csswg.org/css-easing-2/#biblio-cssom",
"https://drafts.csswg.org/css-easing-2/#biblio-fund-comp-graphics",
"https://drafts.csswg.org/css-easing-2/#biblio-web-animations"
diff --git a/ed/ids/css-flexbox-1.json b/ed/ids/css-flexbox-1.json
index 3dbb13cf971e..72f079ace259 100644
--- a/ed/ids/css-flexbox-1.json
+++ b/ed/ids/css-flexbox-1.json
@@ -533,7 +533,7 @@
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A0",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-main-size-property%E2%91%A1",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-flex-basis%E2%91%A3",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A1",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-content%E2%91%A0",
"https://drafts.csswg.org/css-flexbox-1/#valdef-flex-basis-content",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-automatic-size%E2%91%A0",
@@ -622,7 +622,7 @@
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-width%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-height%E2%91%A8",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-content%E2%91%A1",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A2",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A1",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-content%E2%91%A2",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-flex-basis%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-width%E2%91%A0%E2%91%A2",
@@ -922,7 +922,7 @@
"https://drafts.csswg.org/css-flexbox-1/#ref-for-main-size%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-preferred-aspect-ratio%E2%91%A3",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-flex-item%E2%91%A8%E2%91%A3",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A3",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A2",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-definite%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-flex-item%E2%91%A8%E2%91%A4",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-cross-size%E2%91%A0%E2%91%A2",
@@ -1533,12 +1533,12 @@
"https://drafts.csswg.org/css-flexbox-1/#ref-for-definite%E2%91%A2%E2%91%A4",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-definite%E2%91%A2%E2%91%A5",
"https://drafts.csswg.org/css-flexbox-1/#change-2016-align-self-as-specified",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-align-self%E2%91%A1%E2%91%A2",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A0",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-align-items%E2%91%A6",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-align-self%E2%91%A1%E2%91%A2",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A1",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-align-items%E2%91%A6",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A2",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A3",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-align-self%E2%91%A1%E2%91%A3",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-align-items%E2%91%A7",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-stretch%E2%91%A0",
@@ -1644,7 +1644,7 @@
"https://drafts.csswg.org/css-flexbox-1/#change-2016-auto-content-wording",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-flex-flex-basis%E2%91%A0%E2%91%A2",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-content%E2%91%A0%E2%93%AA",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A4",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A3",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-content%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-flex-basis%E2%91%A0%E2%91%A6",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-width%E2%91%A1%E2%91%A1",
@@ -1723,7 +1723,7 @@
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-display%E2%91%A1%E2%91%A1",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-flex-item%E2%91%A0%E2%91%A5%E2%91%A1",
"https://drafts.csswg.org/css-flexbox-1/#change-2015-min-auto-intrinsic-percentages",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A3",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A4",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-min-height%E2%91%A6",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-max-height%E2%91%A2",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-height%E2%91%A0%E2%91%A5",
@@ -1813,9 +1813,9 @@
"https://drafts.csswg.org/css-flexbox-1/#change-2015-align-self-auto",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-align-self%E2%91%A1%E2%91%A7",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-justify-self",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A4",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A5",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A6",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A7",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-align-self%E2%91%A1%E2%91%A8",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-align-items%E2%91%A8",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-stretch%E2%91%A1",
@@ -1941,9 +1941,9 @@
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-height%E2%91%A0%E2%91%A7",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-definite%E2%91%A4%E2%91%A2",
"https://drafts.csswg.org/css-flexbox-1/#change-201403-min-auto-main-size-basis",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A5",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A8",
"https://drafts.csswg.org/css-flexbox-1/#change-201403-min-auto-intrinsic-percentages",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A6",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-min-height%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-max-height%E2%91%A3",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-height%E2%91%A0%E2%91%A8",
@@ -2031,7 +2031,7 @@
"https://drafts.csswg.org/css-flexbox-1/#ref-for-main-size%E2%91%A4%E2%91%A1",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-flex-item%E2%91%A0%E2%91%A7%E2%91%A8",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-cross-size%E2%91%A5%E2%91%A2",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A7",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A4",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-definite%E2%91%A4%E2%91%A7",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-width-fit-content",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-flex-item%E2%91%A0%E2%91%A8%E2%93%AA",
@@ -2078,7 +2078,7 @@
"https://drafts.csswg.org/css-flexbox-1/#change-2012-flex-basis-zero",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-flex-basis%E2%91%A1%E2%91%A5",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-flex%E2%91%A2%E2%91%A7",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A7",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A5",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-flex%E2%91%A2%E2%91%A8",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-flex%E2%91%A3%E2%93%AA",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-flex%E2%91%A3%E2%91%A0",
@@ -2096,17 +2096,17 @@
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-right",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-top",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-bottom",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A8",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-left%E2%91%A0",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-right%E2%91%A0",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A8",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-align-items-auto%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-flex-item%E2%91%A0%E2%91%A8%E2%91%A2",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-main-start%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-cross-start%E2%91%A0%E2%91%A5",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-static-position",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-top%E2%91%A0",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-propdef-bottom%E2%91%A0",
- "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A0%E2%93%AA",
+ "https://drafts.csswg.org/css-flexbox-1/#ref-for-valdef-flex-basis-auto%E2%91%A6",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-flex-item%E2%91%A0%E2%91%A8%E2%91%A3",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-main-start%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-flexbox-1/#ref-for-cross-start%E2%91%A0%E2%91%A6",
diff --git a/ed/ids/css-fonts-4.json b/ed/ids/css-fonts-4.json
index 3998c2316d2b..b53e27db4778 100644
--- a/ed/ids/css-fonts-4.json
+++ b/ed/ids/css-fonts-4.json
@@ -99,7 +99,7 @@
"https://drafts.csswg.org/css-fonts-4/#ref-for-comb-one%E2%91%A8",
"https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-family-fantasy",
"https://drafts.csswg.org/css-fonts-4/#ref-for-comb-one%E2%91%A0%E2%93%AA",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-family-math",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-size-math",
"https://drafts.csswg.org/css-fonts-4/#ref-for-comb-one%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-family-monospace",
"https://drafts.csswg.org/css-fonts-4/#typedef-generic-incomplete",
@@ -776,8 +776,8 @@
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-src%E2%91%A5",
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-src%E2%91%A6",
"https://drafts.csswg.org/css-fonts-4/#font-display-desc",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display",
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-display%E2%91%A0",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-display%E2%91%A1",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-font-face-rule%E2%91%A3%E2%91%A4",
"https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-display",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-font-face-rule%E2%91%A3%E2%91%A5",
@@ -785,7 +785,7 @@
"https://drafts.csswg.org/css-fonts-4/#ref-for-comb-one%E2%91%A7%E2%91%A8",
"https://drafts.csswg.org/css-fonts-4/#ref-for-comb-one%E2%91%A8%E2%93%AA",
"https://drafts.csswg.org/css-fonts-4/#ref-for-comb-one%E2%91%A8%E2%91%A0",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-display%E2%91%A1",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-display%E2%91%A2",
"https://drafts.csswg.org/css-fonts-4/#ref-for-font-block-period%E2%91%A2",
"https://drafts.csswg.org/css-fonts-4/#valdef-font-face-font-display-auto",
"https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-display-block",
@@ -814,14 +814,14 @@
"https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-face-font-display-fallback%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#font-display-font-feature-values",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-ruledef-font-feature-values",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A0",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-ruledef-font-feature-values%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-font-face-rule%E2%91%A3%E2%91%A6",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-display%E2%91%A2",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-display%E2%91%A3",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-font-face-rule%E2%91%A3%E2%91%A7",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A1",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-ruledef-font-feature-values%E2%91%A1",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A2",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A1",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-font-face-rule%E2%91%A3%E2%91%A8",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-font-face-rule%E2%91%A4%E2%93%AA",
"https://drafts.csswg.org/css-fonts-4/#descdef-font-feature-values-font-display",
@@ -859,7 +859,7 @@
"https://drafts.csswg.org/css-fonts-4/#ref-for-ascent-metric",
"https://drafts.csswg.org/css-fonts-4/#ref-for-descent-metric",
"https://drafts.csswg.org/css-fonts-4/#ref-for-line-gap-metric",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-font-variant-east-asian-normal-value",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-normal",
"https://drafts.csswg.org/css-fonts-4/#ex-percent-resolve",
"https://drafts.csswg.org/css-fonts-4/#ref-for-ascent-metric%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ex-override-local-metrics",
@@ -1015,7 +1015,7 @@
"https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-ligatures-contextual",
"https://drafts.csswg.org/css-fonts-4/#valdef-font-variant-ligatures-no-contextual",
"https://drafts.csswg.org/css-fonts-4/#rlig-unaffected",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-synthesis-small-caps-none",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-font-optical-sizing-none-value",
"https://drafts.csswg.org/css-fonts-4/#font-variant-position-prop",
"https://drafts.csswg.org/css-fonts-4/#ref-for-propdef-font-variant-position%E2%91%A2",
"https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-position",
@@ -1168,7 +1168,7 @@
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-ruledef-font-feature-values%E2%91%A8",
"https://drafts.csswg.org/css-fonts-4/#ref-for-typedef-declaration-rule-list%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-rule",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A3",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A2",
"https://drafts.csswg.org/css-fonts-4/#ref-for-cssstyledeclaration-declarations",
"https://drafts.csswg.org/css-fonts-4/#font-feature-value-declaration",
"https://drafts.csswg.org/css-fonts-4/#ref-for-css-css-identifier",
@@ -1286,7 +1286,7 @@
"https://drafts.csswg.org/css-fonts-4/#font-variant-normal-value",
"https://drafts.csswg.org/css-fonts-4/#ref-for-propdef-font-variant%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-fonts-4/#font-variant-none-value",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-synthesis-style-none",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-synthesis-weight-none",
"https://drafts.csswg.org/css-fonts-4/#ref-for-propdef-font-variant-ligatures%E2%91%A2",
"https://drafts.csswg.org/css-fonts-4/#ref-for-propdef-font-variant%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ref-for-propdef-font-variant%E2%91%A0%E2%91%A1",
@@ -1549,22 +1549,22 @@
"https://drafts.csswg.org/css-fonts-4/#ref-for-propdef-color%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ex-normal-is-index-0",
"https://drafts.csswg.org/css-fonts-4/#ref-for-propdef-font-palette%E2%91%A2",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-normal",
- "https://drafts.csswg.org/css-fonts-4/#valdef-font-palette-light",
"https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-normal%E2%91%A0",
- "https://drafts.csswg.org/css-fonts-4/#valdef-font-palette-dark",
+ "https://drafts.csswg.org/css-fonts-4/#valdef-font-palette-light",
"https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-normal%E2%91%A1",
+ "https://drafts.csswg.org/css-fonts-4/#valdef-font-palette-dark",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-normal%E2%91%A2",
"https://drafts.csswg.org/css-fonts-4/#typedef-font-palette-palette-identifier",
"https://drafts.csswg.org/css-fonts-4/#ref-for-typedef-font-palette-palette-identifier%E2%91%A1",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-ruledef-font-palette-values%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-ruledef-font-palette-values%E2%91%A1",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-normal%E2%91%A2",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-normal%E2%91%A3",
"https://drafts.csswg.org/css-fonts-4/#ref-for-typedef-font-palette-palette-identifier%E2%91%A2",
"https://drafts.csswg.org/css-fonts-4/#ref-for-typedef-dashed-ident",
"https://drafts.csswg.org/css-fonts-4/#typedef-font-palette-palette-mix",
"https://drafts.csswg.org/css-fonts-4/#ref-for-funcdef-palette-mix%E2%91%A4",
"https://drafts.csswg.org/css-fonts-4/#ref-for-typedef-font-palette-palette-identifier%E2%91%A3",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-normal%E2%91%A3",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-normal%E2%91%A4",
"https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-light",
"https://drafts.csswg.org/css-fonts-4/#ref-for-valdef-font-palette-dark",
"https://drafts.csswg.org/css-fonts-4/#ref-for-funcdef-palette-mix%E2%91%A5",
@@ -1864,7 +1864,7 @@
"https://drafts.csswg.org/css-fonts-4/#sp217",
"https://drafts.csswg.org/css-fonts-4/#a11y",
"https://drafts.csswg.org/css-fonts-4/#acknowledgments",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A4",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-display%E2%91%A4",
"https://drafts.csswg.org/css-fonts-4/#changes",
"https://drafts.csswg.org/css-fonts-4/#changes-2021-12-21",
"https://drafts.csswg.org/css-fonts-4/#ref-for-propdef-font-palette%E2%91%A4",
@@ -2049,7 +2049,7 @@
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-font-face-rule%E2%91%A7%E2%91%A3",
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-ascent-override%E2%91%A1",
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-descent-override%E2%91%A1",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-display%E2%91%A3",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-display%E2%91%A5",
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-family%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-feature-settings%E2%91%A1",
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-font-language-override%E2%91%A1",
@@ -2063,7 +2063,7 @@
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-face-unicode-range%E2%91%A8",
"https://drafts.csswg.org/css-fonts-4/#font-feature-values-descriptor-table",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-ruledef-font-feature-values%E2%91%A1%E2%91%A0",
- "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A5",
+ "https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-feature-values-font-display%E2%91%A3",
"https://drafts.csswg.org/css-fonts-4/#font-palette-values-descriptor-table",
"https://drafts.csswg.org/css-fonts-4/#ref-for-at-ruledef-font-palette-values%E2%91%A2%E2%91%A0",
"https://drafts.csswg.org/css-fonts-4/#ref-for-descdef-font-palette-values-base-palette%E2%91%A1",
diff --git a/ed/ids/css-grid-1.json b/ed/ids/css-grid-1.json
index a949c5ec4a07..1f3e9f20aacd 100644
--- a/ed/ids/css-grid-1.json
+++ b/ed/ids/css-grid-1.json
@@ -202,11 +202,11 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-block-level%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-block-formatting-context%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-block-box",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto",
"https://drafts.csswg.org/css-grid-1/#ref-for-inline-size",
"https://drafts.csswg.org/css-grid-1/#ref-for-inline-formatting-context",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A1%E2%91%A0",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-block-size",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-content",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-content",
@@ -949,8 +949,8 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-rows-none%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#example-4fe2f42d",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A6",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-implicitly-assigned-line-name%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-named-grid-area%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-funcdef-repeat%E2%91%A0%E2%93%AA",
@@ -1312,7 +1312,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-grid-row-end%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-grid-column-end%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-identifier-value%E2%91%A0%E2%91%A5",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#propdef-grid-area",
"https://drafts.csswg.org/css-grid-1/#ref-for-typedef-grid-row-start-grid-line%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-typedef-grid-row-start-grid-line%E2%91%A5",
@@ -1335,17 +1335,17 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-identifier-value%E2%91%A0%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-grid-column-end%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-identifier-value%E2%91%A0%E2%91%A7",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-grid-row-end%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-grid-row-start%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-identifier-value%E2%91%A0%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-grid-row-end%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-identifier-value%E2%91%A1%E2%93%AA",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-grid-column-start%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-grid-row-start%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-identifier-value%E2%91%A1%E2%91%A0",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-margin",
"https://drafts.csswg.org/css-grid-1/#auto-placement-algo",
"https://drafts.csswg.org/css-grid-1/#grid-item-placement-algorithm",
@@ -1479,7 +1479,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-physical",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-direction",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-writing-mode",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-property%E2%91%A0%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A6%E2%93%AA",
@@ -1491,11 +1491,11 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-grid%E2%91%A0%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-property%E2%91%A0%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-implicit-grid%E2%91%A1%E2%91%A0",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#ref-for-implicit-grid-lines%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement%E2%91%A0%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-span%E2%91%A6",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-property%E2%91%A0%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#static-position",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A6%E2%91%A2",
@@ -1664,7 +1664,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-grid%E2%91%A1%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A8%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-percentage-value%E2%91%A2",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A8%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-algo-grid-sizing%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid%E2%91%A1%E2%91%A3",
@@ -1687,7 +1687,7 @@
"https://drafts.csswg.org/css-grid-1/#intrinsic-sizing-function",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-min-content%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A3",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-funcdef-grid-template-columns-fit-content%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#flexible-sizing-function",
"https://drafts.csswg.org/css-grid-1/#ref-for-typedef-flex%E2%91%A0%E2%91%A1",
@@ -1711,10 +1711,10 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-min-content%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#ref-for-funcdef-grid-template-columns-fit-content%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-automatic-minimum-size%E2%91%A1",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A5",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-typedef-flex%E2%91%A0%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-track-sizing-algorithm%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-row%E2%91%A2",
@@ -1767,10 +1767,10 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-funcdef-grid-template-columns-minmax%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-typedef-flex%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-funcdef-grid-template-columns-fit-content%E2%91%A4",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#max-track-sizing-function",
"https://drafts.csswg.org/css-grid-1/#ref-for-funcdef-grid-template-columns-minmax%E2%91%A4",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-funcdef-grid-template-columns-fit-content%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#ref-for-funcdef-grid-template-columns-fit-content%E2%91%A6",
@@ -1781,7 +1781,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-min-content-constraint%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-content-constraint%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-available-grid-space%E2%91%A0",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-available-grid-space%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%93%AA%E2%91%A0",
@@ -1810,7 +1810,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-fixed-sizing-function%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-base-size%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-indefinite%E2%91%A4",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-intrinsic-sizing-function%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-base-size%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-track-sizing-function%E2%91%A8",
@@ -1830,7 +1830,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-base-size%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#ref-for-growth-limit%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-funcdef-grid-template-columns-fit-content%E2%91%A7",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-track-sizing-function%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#algo-baseline-shims",
@@ -1850,7 +1850,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-base-size%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-content-contribution%E2%91%A3",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%93%AA%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-content-constraint%E2%91%A1",
@@ -2110,10 +2110,10 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-layout-algorithm%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-fragmentation-container%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-grid-row%E2%91%A5",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-flex-fr%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-area%E2%91%A2%E2%91%A4",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#acks",
"https://drafts.csswg.org/css-grid-1/#changes",
"https://drafts.csswg.org/css-grid-1/#changes-202012",
@@ -2225,8 +2225,8 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-base-size%E2%91%A2%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-flexible-sizing-function%E2%91%A0%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#change-2017-track-limit-auto-min",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A7",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A0%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%91%A0%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-content-constraint%E2%91%A5",
@@ -2269,7 +2269,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-flexible-tracks%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-flexible-sizing-function%E2%91%A0%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#change-2017-no-maximize-flex",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A0%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-track-sizing-function%E2%91%A2%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-flexible-tracks%E2%91%A0%E2%91%A2",
@@ -2293,11 +2293,11 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-scroll-container%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-track%E2%91%A2%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A0%E2%91%A7",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-content-based-minimum-size%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-track%E2%91%A2%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A0%E2%91%A8",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-flexible-tracks%E2%91%A0%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-automatic-minimum-size%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#minor-2017",
@@ -2422,7 +2422,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-intrinsic-size-contribution%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#change-2017-overgrow",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-min-content%E2%91%A0%E2%93%AA",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-track-sizing-function%E2%91%A2%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A1%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A1%E2%91%A0",
@@ -2500,11 +2500,11 @@
"https://drafts.csswg.org/css-grid-1/#change-2016-auto-percent-track",
"https://drafts.csswg.org/css-grid-1/#ref-for-percentage-value%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%91%A1%E2%91%A8",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%91%A2%E2%93%AA",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%91%A2%E2%91%A0",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%91%A2%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-percentage-value%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#ref-for-fit-content-size",
@@ -2530,9 +2530,9 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%91%A2%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-align-content%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-justify-content%E2%91%A0%E2%91%A0",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-track-sizing-function%E2%91%A2%E2%91%A8",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-track-sizing-function%E2%91%A3%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-definite%E2%91%A2%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-free-space%E2%91%A0%E2%91%A3",
@@ -2550,7 +2550,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-baseline-sharing-group%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-item%E2%91%A0%E2%91%A2%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#change-2016-auto-min-fixed-tracks",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-width-auto%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-min-width%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-min-height%E2%91%A2",
@@ -2560,7 +2560,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-overflow-visible",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-track%E2%91%A2%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A1%E2%91%A0",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-item%E2%91%A0%E2%91%A2%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-track%E2%91%A2%E2%91%A7",
"https://drafts.csswg.org/css-grid-1/#ref-for-fixed-sizing-function%E2%91%A0%E2%91%A2",
@@ -2579,10 +2579,10 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-fixed-sizing-function%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-track-sizing-function%E2%91%A3%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#change-2016-auto-max-constraint",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A2%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A1%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-flexible-sizing-function%E2%91%A0%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A1%E2%91%A1",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A2%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A2%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-min-content%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A1%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-content-constraint%E2%91%A7",
@@ -2592,7 +2592,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-min-content%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A1%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A1%E2%91%A3",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A2%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%91%A3%E2%93%AA",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-content-constraint%E2%91%A8",
"https://drafts.csswg.org/css-grid-1/#ref-for-min-content-contribution%E2%91%A0%E2%91%A6",
@@ -2600,7 +2600,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-min-track-sizing-function%E2%91%A1%E2%91%A4",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A1%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-track-sizing-function%E2%91%A3%E2%91%A2",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A2%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-grid-container%E2%91%A0%E2%91%A3%E2%91%A0",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-content-constraint%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#ref-for-max-content-contribution%E2%91%A0%E2%91%A1",
@@ -2628,7 +2628,7 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-block-level%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-block-formatting-context%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-block-box%E2%91%A2",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A2%E2%91%A2",
"https://drafts.csswg.org/css-grid-1/#ref-for-inline-size%E2%91%A6",
"https://drafts.csswg.org/css-grid-1/#change-2016-tracks-before",
"https://drafts.csswg.org/css-grid-1/#ref-for-implicit-grid-track%E2%91%A5",
@@ -2643,9 +2643,9 @@
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-align-content%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-propdef-justify-content%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-max-content%E2%91%A1%E2%91%A4",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A2%E2%91%A1",
- "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A2%E2%91%A2",
- "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-valdef-grid-template-columns-auto%E2%91%A2%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-1/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A5",
"https://drafts.csswg.org/css-grid-1/#change-2016-auto-min-editorial",
"https://drafts.csswg.org/css-grid-1/#ref-for-minimum-contribution%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-grid-1/#ref-for-base-size%E2%91%A3%E2%91%A3",
diff --git a/ed/ids/css-grid-2.json b/ed/ids/css-grid-2.json
index d59ea7cb5da7..00beb3736856 100644
--- a/ed/ids/css-grid-2.json
+++ b/ed/ids/css-grid-2.json
@@ -1059,9 +1059,9 @@
"https://drafts.csswg.org/css-grid-2/#ref-for-propdef-grid-template-columns%E2%91%A1%E2%91%A0",
"https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-rows-none%E2%91%A2",
"https://drafts.csswg.org/css-grid-2/#example-4fe2f42d",
+ "https://drafts.csswg.org/css-grid-2/#ref-for-grid-placement-auto%E2%91%A0",
"https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A5",
"https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A6",
- "https://drafts.csswg.org/css-grid-2/#ref-for-grid-placement-auto%E2%91%A0",
"https://drafts.csswg.org/css-grid-2/#ref-for-implicitly-assigned-line-name%E2%91%A4",
"https://drafts.csswg.org/css-grid-2/#ref-for-named-grid-area%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-2/#ref-for-funcdef-repeat%E2%91%A0%E2%91%A0",
@@ -2069,7 +2069,7 @@
"https://drafts.csswg.org/css-grid-2/#ref-for-min-content-constraint%E2%91%A0",
"https://drafts.csswg.org/css-grid-2/#ref-for-max-content-constraint%E2%91%A0",
"https://drafts.csswg.org/css-grid-2/#ref-for-available-grid-space%E2%91%A0",
- "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-2/#ref-for-grid-placement-auto%E2%91%A8",
"https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-max-content%E2%91%A5",
"https://drafts.csswg.org/css-grid-2/#ref-for-available-grid-space%E2%91%A1",
"https://drafts.csswg.org/css-grid-2/#ref-for-grid-container%E2%91%A0%E2%91%A0%E2%91%A2",
@@ -2098,7 +2098,7 @@
"https://drafts.csswg.org/css-grid-2/#ref-for-fixed-sizing-function%E2%91%A2",
"https://drafts.csswg.org/css-grid-2/#ref-for-base-size%E2%91%A1",
"https://drafts.csswg.org/css-grid-2/#ref-for-indefinite%E2%91%A4",
- "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-2/#ref-for-intrinsic-sizing-function%E2%91%A1",
"https://drafts.csswg.org/css-grid-2/#ref-for-base-size%E2%91%A2",
"https://drafts.csswg.org/css-grid-2/#ref-for-max-track-sizing-function%E2%91%A8",
@@ -2118,7 +2118,7 @@
"https://drafts.csswg.org/css-grid-2/#ref-for-base-size%E2%91%A5",
"https://drafts.csswg.org/css-grid-2/#ref-for-growth-limit%E2%91%A3",
"https://drafts.csswg.org/css-grid-2/#ref-for-funcdef-grid-template-columns-fit-content%E2%91%A5",
- "https://drafts.csswg.org/css-grid-2/#ref-for-grid-placement-auto%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-2/#ref-for-grid-placement-auto%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-2/#ref-for-max-track-sizing-function%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-max-content%E2%91%A6",
"https://drafts.csswg.org/css-grid-2/#algo-baseline-shims",
@@ -2138,7 +2138,7 @@
"https://drafts.csswg.org/css-grid-2/#ref-for-min-track-sizing-function%E2%91%A6",
"https://drafts.csswg.org/css-grid-2/#ref-for-base-size%E2%91%A7",
"https://drafts.csswg.org/css-grid-2/#ref-for-max-content-contribution%E2%91%A3",
- "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-2/#ref-for-grid-placement-auto%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-grid-2/#ref-for-min-track-sizing-function%E2%91%A7",
"https://drafts.csswg.org/css-grid-2/#ref-for-grid-container%E2%91%A0%E2%91%A0%E2%91%A4",
"https://drafts.csswg.org/css-grid-2/#ref-for-min-content-constraint%E2%91%A1",
@@ -2216,7 +2216,7 @@
"https://drafts.csswg.org/css-grid-2/#ref-for-distribute-extra-space%E2%91%A1",
"https://drafts.csswg.org/css-grid-2/#ref-for-base-size%E2%91%A0%E2%91%A4",
"https://drafts.csswg.org/css-grid-2/#ref-for-min-track-sizing-function%E2%91%A0%E2%91%A0",
- "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A2",
"https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-max-content%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-grid-2/#ref-for-limited-contribution%E2%91%A2",
"https://drafts.csswg.org/css-grid-2/#ref-for-distribute-extra-space%E2%91%A2",
@@ -2365,7 +2365,7 @@
"https://drafts.csswg.org/css-grid-2/#ref-for-grid-container%E2%91%A0%E2%91%A1%E2%91%A2",
"https://drafts.csswg.org/css-grid-2/#ref-for-valdef-justify-content-normal",
"https://drafts.csswg.org/css-grid-2/#ref-for-valdef-align-content-stretch",
- "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-grid-2/#ref-for-max-track-sizing-function%E2%91%A1%E2%91%A0",
"https://drafts.csswg.org/css-grid-2/#ref-for-definite%E2%91%A1%E2%91%A0",
"https://drafts.csswg.org/css-grid-2/#ref-for-free-space%E2%91%A0%E2%93%AA",
@@ -2391,10 +2391,10 @@
"https://drafts.csswg.org/css-grid-2/#ref-for-layout-algorithm%E2%91%A1",
"https://drafts.csswg.org/css-grid-2/#ref-for-fragmentation-container%E2%91%A1",
"https://drafts.csswg.org/css-grid-2/#ref-for-propdef-grid-row%E2%91%A5",
- "https://drafts.csswg.org/css-grid-2/#ref-for-grid-placement-auto%E2%91%A0%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A4",
"https://drafts.csswg.org/css-grid-2/#ref-for-valdef-flex-fr%E2%91%A8",
"https://drafts.csswg.org/css-grid-2/#ref-for-grid-area%E2%91%A2%E2%91%A5",
- "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-2/#ref-for-valdef-grid-template-columns-auto%E2%91%A0%E2%91%A5",
"https://drafts.csswg.org/css-grid-2/#priv",
"https://drafts.csswg.org/css-grid-2/#sec",
"https://drafts.csswg.org/css-grid-2/#changes",
diff --git a/ed/ids/css-grid-3.json b/ed/ids/css-grid-3.json
index c86a633f354b..1e393963a570 100644
--- a/ed/ids/css-grid-3.json
+++ b/ed/ids/css-grid-3.json
@@ -35,24 +35,44 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#grid-axis",
"https://drafts.csswg.org/css-grid-3/#ref-for-flex-layout",
- "https://drafts.csswg.org/css-grid-3/#masonry-axis",
+ "https://drafts.csswg.org/css-grid-3/#stacking-axis",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-flex-layout%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-item",
"https://drafts.csswg.org/css-grid-3/#ref-for-blockify",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-track",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container",
+ "https://drafts.csswg.org/css-grid-3/#masonry-item",
+ "https://drafts.csswg.org/css-grid-3/#masonry-track",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-order",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis",
"https://drafts.csswg.org/css-grid-3/#masonry-container",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A4",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#column-masonry-container",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis",
"https://drafts.csswg.org/css-grid-3/#ref-for-block-axis",
"https://drafts.csswg.org/css-grid-3/#row-masonry-container",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-inline-axis",
+ "https://drafts.csswg.org/css-grid-3/#order-accessibility",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-slack",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-definite-grid-position",
+ "https://drafts.csswg.org/css-grid-3/#example-684ef793",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-reading-flow",
+ "https://drafts.csswg.org/css-grid-3/#issue-f3901e05",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-slack%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-flex-layout%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-order%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#masonry-model-grid-option",
"https://drafts.csswg.org/css-grid-3/#grid-template-masonry",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-template-columns",
@@ -61,15 +81,15 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-template-rows%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-grid-template-rows-none",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A6",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-used-value",
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-grid-template-rows-none%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-inline-axis%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#grid-auto-flow",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-auto-flow",
"https://drafts.csswg.org/css-grid-3/#propdef-grid-auto-flow",
@@ -82,8 +102,9 @@
"https://drafts.csswg.org/css-grid-3/#valdef-grid-auto-flow-row-reverse",
"https://drafts.csswg.org/css-grid-3/#valdef-grid-auto-flow-column-reverse",
"https://drafts.csswg.org/css-grid-3/#valdef-grid-auto-flow-wrap-reverse",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A6",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item-placement-algorithm",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#issue-5ab6c3f7",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-auto-flow%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#issue-152d283d",
@@ -95,11 +116,11 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-display%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-comb-one%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#valdef-display-masonry",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#ref-for-block-level",
"https://drafts.csswg.org/css-grid-3/#ref-for-flow-layout",
"https://drafts.csswg.org/css-grid-3/#valdef-display-inline-masonry",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-inline-level",
"https://drafts.csswg.org/css-grid-3/#ref-for-flow-layout%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#masonry-direction",
@@ -108,38 +129,38 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-comb-one%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-comb-one%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-comb-one%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-direction%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A4",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-column",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-direction%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-block-start",
- "https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-column-reverse",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-column",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A6",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-block-start",
+ "https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-column-reverse",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#ref-for-block-end",
"https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-row",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A7",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A6",
"https://drafts.csswg.org/css-grid-3/#ref-for-inline-axis%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-inline-start",
"https://drafts.csswg.org/css-grid-3/#valdef-masonry-direction-row-reverse",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A8",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A7",
"https://drafts.csswg.org/css-grid-3/#ref-for-inline-axis%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#ref-for-inline-end",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%93%AA",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A8",
"https://drafts.csswg.org/css-grid-3/#masonry-fill",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-fill",
"https://drafts.csswg.org/css-grid-3/#propdef-masonry-fill",
"https://drafts.csswg.org/css-grid-3/#ref-for-comb-one%E2%91%A6",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-fill%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#valdef-masonry-fill-normal",
"https://drafts.csswg.org/css-grid-3/#valdef-masonry-fill-reverse",
@@ -169,65 +190,67 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-direction%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-fill%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#masonry-track-templates",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-explicit-grid",
"https://drafts.csswg.org/css-grid-3/#ref-for-implicit-grid",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A5",
"https://drafts.csswg.org/css-grid-3/#ref-for-available",
"https://drafts.csswg.org/css-grid-3/#masonry-track-grid-option",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-auto-rows",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-auto-columns",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A6",
- "https://drafts.csswg.org/css-grid-3/#masonry-track-masonry-option",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A6",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#masonry-track-masonry-option",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-template-tracks%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-template-areas%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-auto-tracks",
"https://drafts.csswg.org/css-grid-3/#propdef-masonry-template-tracks",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-template-columns%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-computed-track-list",
"https://drafts.csswg.org/css-grid-3/#ref-for-computed-value",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-template-tracks%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-template-columns%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-template-areas%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A6",
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-grid-template-columns-auto",
"https://drafts.csswg.org/css-grid-3/#propdef-masonry-template-areas",
"https://drafts.csswg.org/css-grid-3/#ref-for-comb-one%E2%91%A7",
"https://drafts.csswg.org/css-grid-3/#ref-for-string-value",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A7",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-template-areas%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-template-areas",
"https://drafts.csswg.org/css-grid-3/#propdef-masonry-auto-tracks",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-auto-columns%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-computed-track-list%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-auto-tracks%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-auto-columns%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#subgrids",
"https://drafts.csswg.org/css-grid-3/#ref-for-subgrid",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A8",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A7",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A7",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-display-masonry%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A0%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%93%AA",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-template-columns%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-grid-template-none",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A7",
- "https://drafts.csswg.org/css-grid-3/#ref-for-subgrid%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#example-bf887843",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-subgrid%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#example-7ec09684",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-3/#ref-for-inline-axis%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-subgrid%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#submasonry",
"https://drafts.csswg.org/css-grid-3/#repeat-notation",
"https://drafts.csswg.org/css-grid-3/#ref-for-funcdef-repeat",
@@ -244,32 +267,37 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-grid-template-areas-none",
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-repeat-auto-fill%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A8",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#repeat-auto-fit",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%93%AA",
- "https://drafts.csswg.org/css-grid-3/#ref-for-valdef-repeat-auto-fill%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#repeat-auto-fit",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-repeat-auto-fit",
- "https://drafts.csswg.org/css-grid-3/#ref-for-valdef-repeat-auto-fill%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-valdef-repeat-auto-fill%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-collapsed-track",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-repeat-auto-fit%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-collapsed-track%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-collapsed-track%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-valdef-repeat-auto-fill%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-valdef-repeat-auto-fit%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#track-sizing",
"https://drafts.csswg.org/css-grid-3/#ref-for-automatic-grid-position",
"https://drafts.csswg.org/css-grid-3/#example-6d22f73d",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-3/#ref-for-automatic-grid-position%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#example-f3e866aa",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#track-sizing-subgrid",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-submasonry",
"https://drafts.csswg.org/css-grid-3/#ref-for-automatic-grid-position%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-submasonry%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-definite-grid-position",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-definite-grid-position%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-automatic-grid-position%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#track-sizing-performance",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-item",
"https://drafts.csswg.org/css-grid-3/#item-groups",
"https://drafts.csswg.org/css-grid-3/#ref-for-baseline-sharing-group",
"https://drafts.csswg.org/css-grid-3/#ref-for-automatic-grid-position%E2%91%A3",
@@ -278,20 +306,20 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-baseline-alignment",
"https://drafts.csswg.org/css-grid-3/#ref-for-virtual-masonry-item",
"https://drafts.csswg.org/css-grid-3/#ref-for-virtual-masonry-item%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A4",
- "https://drafts.csswg.org/css-grid-3/#masonry-track-placement",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#masonry-track-placement",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-placement-property",
"https://drafts.csswg.org/css-grid-3/#ref-for-automatic-grid-position%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#example-26ddc5f7",
"https://drafts.csswg.org/css-grid-3/#issue-33788d66",
"https://drafts.csswg.org/css-grid-3/#masonry-placement-grid-option",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#masonry-placement-masonry-option",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A4",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#masonry-placement-masonry-option",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A6",
"https://drafts.csswg.org/css-grid-3/#propdef-masonry-track-start",
"https://drafts.csswg.org/css-grid-3/#propdef-masonry-track-end",
"https://drafts.csswg.org/css-grid-3/#propdef-masonry-track",
@@ -299,93 +327,94 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-column-end",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-column",
"https://drafts.csswg.org/css-grid-3/#masonry-slack",
- "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-slack",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-slack%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#propdef-masonry-slack",
"https://drafts.csswg.org/css-grid-3/#ref-for-typedef-length-percentage",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A6",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#ref-for-content-box",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-content-box",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A1%E2%91%A8",
- "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-slack%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A2%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-item%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-track",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-slack%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#valdef-masonry-slack-length",
"https://drafts.csswg.org/css-grid-3/#ref-for-length-value",
"https://drafts.csswg.org/css-grid-3/#masonry-tie-threshold",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A2%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A2%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#issue-7bbfe9d5",
"https://drafts.csswg.org/css-grid-3/#masonry-layout-algorithm",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A7",
"https://drafts.csswg.org/css-grid-3/#running-position",
"https://drafts.csswg.org/css-grid-3/#auto-placement-cursor",
"https://drafts.csswg.org/css-grid-3/#ref-for-order-modified-document-order",
- "https://drafts.csswg.org/css-grid-3/#ref-for-definite-grid-position%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A7",
- "https://drafts.csswg.org/css-grid-3/#issue-9c647ef6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-definite-grid-position%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A0%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#issue-9c647ef6",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-implicit-grid%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-running-position",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-tie-threshold",
"https://drafts.csswg.org/css-grid-3/#ref-for-auto-placement-cursor",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-auto-placement-cursor%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-auto-placement-cursor%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-running-position%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-running-position%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-outer-size",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-gap",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-auto-flow%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-flow%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#containing-block",
"https://drafts.csswg.org/css-grid-3/#ref-for-containing-block",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A0%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A0%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-area",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A5",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-content-box%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#rtl-example",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-layout%E2%91%A7",
"https://drafts.csswg.org/css-grid-3/#ref-for-writing-mode",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-direction",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#example-de83ba08",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-direction%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A7",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-direction%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#example-7150e913",
+ "https://drafts.csswg.org/css-grid-3/#example-82fa5f37",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-direction%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-direction%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#intrinsic-sizes",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-max-content",
"https://drafts.csswg.org/css-grid-3/#ref-for-min-content",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%91%A4",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A4",
- "https://drafts.csswg.org/css-grid-3/#ref-for-css-start",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-box",
"https://drafts.csswg.org/css-grid-3/#ref-for-max-content-constraint",
"https://drafts.csswg.org/css-grid-3/#ref-for-min-content-constraint",
"https://drafts.csswg.org/css-grid-3/#example-759140be",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#alignment",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A7",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A6",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%91%A7",
"https://drafts.csswg.org/css-grid-3/#ref-for-alignment-subject",
"https://drafts.csswg.org/css-grid-3/#masonry-box",
"https://drafts.csswg.org/css-grid-3/#ref-for-margin-box",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-box",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-box%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-alignment-subject%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A0%E2%91%A8",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-align-content",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-justify-content",
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-self-position-start",
@@ -397,76 +426,78 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-valdef-self-position-start%E2%91%A0",
"https://drafts.csswg.org/css-grid-3/#ref-for-distributed-alignment",
"https://drafts.csswg.org/css-grid-3/#ref-for-fallback-alignment",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A6",
"https://drafts.csswg.org/css-grid-3/#ref-for-content-box%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A0%E2%91%A8",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-box%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A1%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-box%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A7",
"https://drafts.csswg.org/css-grid-3/#ref-for-content-box%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#issue-cb8bd40b",
+ "https://drafts.csswg.org/css-grid-3/#issue-491b71c9",
"https://drafts.csswg.org/css-grid-3/#masonry-axis-baseline-alignment",
"https://drafts.csswg.org/css-grid-3/#ref-for-baseline-alignment%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A1%E2%91%A8",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%93%AA",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A0%E2%91%A8",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%93%AA",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-baseline-alignment%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A1%E2%93%AA",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A1%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A1",
"https://drafts.csswg.org/css-grid-3/#ref-for-alignment-baseline",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A5",
"https://drafts.csswg.org/css-grid-3/#issue-4a2d589c",
"https://drafts.csswg.org/css-grid-3/#issue-f1320409",
"https://drafts.csswg.org/css-grid-3/#pagination",
"https://drafts.csswg.org/css-grid-3/#masonry-axis-pagination",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%93%AA",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A1%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A0",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A1%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-item%E2%91%A6",
"https://drafts.csswg.org/css-grid-3/#ref-for-forced-break",
"https://drafts.csswg.org/css-grid-3/#ref-for-running-position%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-fragmentainer",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-fragmentainer",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#example-d9ac598c",
- "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A0%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#grid-axis-pagination",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A0%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#grid-axis-pagination",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#example-62d55948",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A0%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-inline-axis%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A4",
- "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A4",
- "https://drafts.csswg.org/css-grid-3/#ref-for-inline-axis%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#example-62d55948",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A0%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-inline-axis%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-inline-axis%E2%91%A5",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-layout%E2%91%A0%E2%91%A4",
"https://drafts.csswg.org/css-grid-3/#abspos",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A2%E2%91%A0",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A1%E2%91%A1",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-box%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-container%E2%91%A2%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-container%E2%91%A1%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A1%E2%91%A2",
"https://drafts.csswg.org/css-grid-3/#ref-for-masonry-box%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#issue-7bbe63a7",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A1%E2%91%A2",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-box%E2%91%A3",
+ "https://drafts.csswg.org/css-grid-3/#issue-4007c2e6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A1%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-running-position%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A5",
- "https://drafts.csswg.org/css-grid-3/#performance-notes",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A1%E2%91%A3",
- "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A5",
"https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A6",
- "https://drafts.csswg.org/css-grid-3/#ref-for-masonry-axis%E2%91%A1%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#performance-notes",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A1%E2%91%A4",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-grid-axis%E2%91%A2%E2%91%A7",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-stacking-axis%E2%91%A1%E2%91%A5",
"https://drafts.csswg.org/css-grid-3/#graceful-degradation",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-grid-template",
"https://drafts.csswg.org/css-grid-3/#example-fdd3f2c6",
- "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A6",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-block-axis%E2%91%A7",
"https://drafts.csswg.org/css-grid-3/#acknowledgements",
+ "https://drafts.csswg.org/css-grid-3/#security",
+ "https://drafts.csswg.org/css-grid-3/#privacy",
"https://drafts.csswg.org/css-grid-3/#w3c-conformance",
"https://drafts.csswg.org/css-grid-3/#w3c-conventions",
"https://drafts.csswg.org/css-grid-3/#w3c-example",
@@ -504,19 +535,26 @@
"https://drafts.csswg.org/css-grid-3/#e7f0dd6c",
"https://drafts.csswg.org/css-grid-3/#f271d0a1",
"https://drafts.csswg.org/css-grid-3/#d7fa3e1c",
+ "https://drafts.csswg.org/css-grid-3/#f210b721",
"https://drafts.csswg.org/css-grid-3/#ba9b3d06",
+ "https://drafts.csswg.org/css-grid-3/#ecf777ac",
"https://drafts.csswg.org/css-grid-3/#73a98e20",
"https://drafts.csswg.org/css-grid-3/#f83b5bfc",
"https://drafts.csswg.org/css-grid-3/#d5412931",
"https://drafts.csswg.org/css-grid-3/#a079e809",
"https://drafts.csswg.org/css-grid-3/#62c91816",
+ "https://drafts.csswg.org/css-grid-3/#17638765",
+ "https://drafts.csswg.org/css-grid-3/#1b9df455",
"https://drafts.csswg.org/css-grid-3/#53deb49f",
+ "https://drafts.csswg.org/css-grid-3/#f9ab2883",
"https://drafts.csswg.org/css-grid-3/#f6ac6c55",
"https://drafts.csswg.org/css-grid-3/#f3917b3e",
"https://drafts.csswg.org/css-grid-3/#e3ccce60",
"https://drafts.csswg.org/css-grid-3/#f005b2f6",
"https://drafts.csswg.org/css-grid-3/#1044d688",
+ "https://drafts.csswg.org/css-grid-3/#5ad6bed8",
"https://drafts.csswg.org/css-grid-3/#a27e1637",
+ "https://drafts.csswg.org/css-grid-3/#79b8b44f",
"https://drafts.csswg.org/css-grid-3/#e8bb041c",
"https://drafts.csswg.org/css-grid-3/#a28c0f38",
"https://drafts.csswg.org/css-grid-3/#58d94cb8",
@@ -554,7 +592,6 @@
"https://drafts.csswg.org/css-grid-3/#8f96f376",
"https://drafts.csswg.org/css-grid-3/#f4a5f1c1",
"https://drafts.csswg.org/css-grid-3/#466b2ed9",
- "https://drafts.csswg.org/css-grid-3/#8067deca",
"https://drafts.csswg.org/css-grid-3/#a73617e0",
"https://drafts.csswg.org/css-grid-3/#references",
"https://drafts.csswg.org/css-grid-3/#normative",
@@ -582,7 +619,7 @@
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-direction%E2%91%A5",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-fill%E2%91%A5",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-flow%E2%91%A2",
- "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-slack%E2%91%A1",
+ "https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-slack%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-template-areas%E2%91%A6",
"https://drafts.csswg.org/css-grid-3/#ref-for-propdef-masonry-template-tracks%E2%91%A3",
"https://drafts.csswg.org/css-grid-3/#issues-index"
diff --git a/ed/ids/css-pseudo-4.json b/ed/ids/css-pseudo-4.json
index 29e912898eb0..02e597857caf 100644
--- a/ed/ids/css-pseudo-4.json
+++ b/ed/ids/css-pseudo-4.json
@@ -542,7 +542,7 @@
"https://drafts.csswg.org/css-pseudo-4/#ref-for-originating-element%E2%91%A1%E2%91%A0",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-csspseudoelement%E2%91%A8",
"https://drafts.csswg.org/css-pseudo-4/#issue-302461e7",
- "https://drafts.csswg.org/css-pseudo-4/#ref-for-dom-csspseudoelement-pseudo",
+ "https://drafts.csswg.org/css-pseudo-4/#ref-for-dom-csspseudoelement-pseudo-type%E2%91%A0",
"https://drafts.csswg.org/css-pseudo-4/#getComputedStyle",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-dom-window-getcomputedstyle",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-highlight-pseudo-element%E2%91%A0%E2%91%A7",
@@ -588,7 +588,7 @@
"https://drafts.csswg.org/css-pseudo-4/#ref-for-x22%E2%91%A1",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-csspseudoelement%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-dom-csspseudoelement-parent%E2%91%A2",
- "https://drafts.csswg.org/css-pseudo-4/#ref-for-dom-csspseudoelement-pseudo-type%E2%91%A0",
+ "https://drafts.csswg.org/css-pseudo-4/#ref-for-dom-csspseudoelement-pseudo-type%E2%91%A1",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-sub-pseudo-element%E2%91%A5",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-selectordef-target-text%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-selectordef-first-line%E2%91%A1%E2%91%A8",
@@ -605,7 +605,7 @@
"https://drafts.csswg.org/css-pseudo-4/#ref-for-propdef-direction%E2%91%A0",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-selectordef-marker%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-csspseudoelement%E2%91%A0%E2%91%A0",
- "https://drafts.csswg.org/css-pseudo-4/#ref-for-dom-csspseudoelement-pseudo-type%E2%91%A1",
+ "https://drafts.csswg.org/css-pseudo-4/#ref-for-dom-element-pseudo%E2%91%A1",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-valdef-color-currentcolor%E2%91%A3",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-highlight-pseudo-element%E2%91%A1%E2%91%A3",
"https://drafts.csswg.org/css-pseudo-4/#ref-for-selectordef-first-line%E2%91%A2%E2%91%A0",
diff --git a/ed/ids/css-view-transitions-2.json b/ed/ids/css-view-transitions-2.json
index 88fd17911cbb..5c8580a40678 100644
--- a/ed/ids/css-view-transitions-2.json
+++ b/ed/ids/css-view-transitions-2.json
@@ -421,6 +421,9 @@
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-captured-element%E2%91%A0",
"https://drafts.csswg.org/css-view-transitions-2/#view-transition-params-initial-snapshot-containing-block-size",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-tuple",
+ "https://drafts.csswg.org/css-view-transitions-2/#page-visibility-change-steps-additions",
+ "https://drafts.csswg.org/css-view-transitions-2/#ref-for-view-transition-page-visibility-change-steps",
+ "https://drafts.csswg.org/css-view-transitions-2/#ref-for-document-inbound-view-transition-params",
"https://drafts.csswg.org/css-view-transitions-2/#capture-classes-data-structure",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-captured-element%E2%91%A1",
"https://drafts.csswg.org/css-view-transitions-2/#captured-element-class-list",
@@ -486,7 +489,7 @@
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-viewtransition%E2%91%A0%E2%91%A5",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-viewtransition-outbound-post-capture-steps%E2%91%A0",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-view-transition-params%E2%91%A1",
- "https://drafts.csswg.org/css-view-transitions-2/#ref-for-document-inbound-view-transition-params",
+ "https://drafts.csswg.org/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A0",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-event-pagereveal%E2%91%A3",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%93%AA",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-perform-pending-transition-operations",
@@ -533,8 +536,8 @@
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-assert%E2%91%A2",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-has-been-revealed%E2%91%A0",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-update-the-opt-in-state-for-outbound-transitions%E2%91%A0",
- "https://drafts.csswg.org/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A0",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A1",
+ "https://drafts.csswg.org/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A2",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A3",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-resolve-view-transition-rule%E2%91%A1",
"https://drafts.csswg.org/css-view-transitions-2/#ref-for-viewtransition%E2%91%A0%E2%91%A7",
@@ -685,6 +688,7 @@
"https://drafts.csswg.org/css-view-transitions-2/#d30ba1d7",
"https://drafts.csswg.org/css-view-transitions-2/#4bbbd725",
"https://drafts.csswg.org/css-view-transitions-2/#0a4fa7a5",
+ "https://drafts.csswg.org/css-view-transitions-2/#bf38b6c1",
"https://drafts.csswg.org/css-view-transitions-2/#d8558f07",
"https://drafts.csswg.org/css-view-transitions-2/#ff8bd316",
"https://drafts.csswg.org/css-view-transitions-2/#e8b75507",
diff --git a/ed/ids/idle-detection.json b/ed/ids/idle-detection.json
index 1e9f4322aec4..7791db63b028 100644
--- a/ed/ids/idle-detection.json
+++ b/ed/ids/idle-detection.json
@@ -183,16 +183,27 @@
"https://wicg.github.io/idle-detection/#infopaneltitle-for-dom-idledetector-requestpermission",
"https://wicg.github.io/idle-detection/#infopanel-for-dom-idledetector-requestpermission",
"https://wicg.github.io/idle-detection/#infopaneltitle-for-dom-idledetector-requestpermission",
- "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global",
"https://wicg.github.io/idle-detection/#ref-for-this%E2%91%A1",
- "https://wicg.github.io/idle-detection/#ref-for-transient-activation",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-document-window",
+ "https://wicg.github.io/idle-detection/#ref-for-fully-active",
"https://wicg.github.io/idle-detection/#ref-for-a-promise-rejected-with",
- "https://wicg.github.io/idle-detection/#ref-for-notallowederror",
+ "https://wicg.github.io/idle-detection/#ref-for-invalidstateerror",
"https://wicg.github.io/idle-detection/#ref-for-idl-DOMException",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A0",
+ "https://wicg.github.io/idle-detection/#ref-for-this%E2%91%A2",
+ "https://wicg.github.io/idle-detection/#ref-for-transient-activation",
+ "https://wicg.github.io/idle-detection/#ref-for-a-promise-rejected-with%E2%91%A0",
+ "https://wicg.github.io/idle-detection/#ref-for-notallowederror",
+ "https://wicg.github.io/idle-detection/#ref-for-idl-DOMException%E2%91%A0",
"https://wicg.github.io/idle-detection/#ref-for-a-new-promise",
"https://wicg.github.io/idle-detection/#ref-for-in-parallel",
"https://wicg.github.io/idle-detection/#ref-for-dfn-request-permission-to-use",
"https://wicg.github.io/idle-detection/#ref-for-permissiondef-idle-detection",
+ "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A1",
+ "https://wicg.github.io/idle-detection/#ref-for-this%E2%91%A3",
+ "https://wicg.github.io/idle-detection/#ref-for-idle-detection-task-source",
"https://wicg.github.io/idle-detection/#ref-for-resolve",
"https://wicg.github.io/idle-detection/#api-idledetector-start",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-start%E2%91%A0",
@@ -201,20 +212,25 @@
"https://wicg.github.io/idle-detection/#infopaneltitle-for-dom-idledetector-start",
"https://wicg.github.io/idle-detection/#infopanel-for-dom-idledetector-start",
"https://wicg.github.io/idle-detection/#infopaneltitle-for-dom-idledetector-start",
- "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A0",
- "https://wicg.github.io/idle-detection/#ref-for-concept-document-window",
+ "https://wicg.github.io/idle-detection/#ref-for-this%E2%91%A4",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A2",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-document-window%E2%91%A0",
+ "https://wicg.github.io/idle-detection/#ref-for-fully-active%E2%91%A0",
+ "https://wicg.github.io/idle-detection/#ref-for-a-promise-rejected-with%E2%91%A1",
+ "https://wicg.github.io/idle-detection/#ref-for-invalidstateerror%E2%91%A0",
+ "https://wicg.github.io/idle-detection/#ref-for-idl-DOMException%E2%91%A1",
"https://wicg.github.io/idle-detection/#ref-for-allowed-to-use",
"https://wicg.github.io/idle-detection/#ref-for-permissiondef-idle-detection%E2%91%A0",
- "https://wicg.github.io/idle-detection/#ref-for-a-promise-rejected-with%E2%91%A0",
+ "https://wicg.github.io/idle-detection/#ref-for-a-promise-rejected-with%E2%91%A2",
"https://wicg.github.io/idle-detection/#ref-for-notallowederror%E2%91%A0",
- "https://wicg.github.io/idle-detection/#ref-for-idl-DOMException%E2%91%A0",
+ "https://wicg.github.io/idle-detection/#ref-for-idl-DOMException%E2%91%A2",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-state-slot",
- "https://wicg.github.io/idle-detection/#ref-for-a-promise-rejected-with%E2%91%A1",
- "https://wicg.github.io/idle-detection/#ref-for-invalidstateerror",
- "https://wicg.github.io/idle-detection/#ref-for-idl-DOMException%E2%91%A1",
+ "https://wicg.github.io/idle-detection/#ref-for-a-promise-rejected-with%E2%91%A3",
+ "https://wicg.github.io/idle-detection/#ref-for-invalidstateerror%E2%91%A1",
+ "https://wicg.github.io/idle-detection/#ref-for-idl-DOMException%E2%91%A3",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-state-slot%E2%91%A0",
"https://wicg.github.io/idle-detection/#ref-for-dom-idleoptions-threshold%E2%91%A1",
- "https://wicg.github.io/idle-detection/#ref-for-a-promise-rejected-with%E2%91%A2",
+ "https://wicg.github.io/idle-detection/#ref-for-a-promise-rejected-with%E2%91%A4",
"https://wicg.github.io/idle-detection/#ref-for-exceptiondef-typeerror",
"https://wicg.github.io/idle-detection/#ref-for-a-new-promise%E2%91%A0",
"https://wicg.github.io/idle-detection/#ref-for-dom-idleoptions-signal",
@@ -231,20 +247,20 @@
"https://wicg.github.io/idle-detection/#ref-for-abortsignal-abort-reason%E2%91%A0",
"https://wicg.github.io/idle-detection/#ref-for-in-parallel%E2%91%A0",
"https://wicg.github.io/idle-detection/#ref-for-dfn-permission-state",
- "https://wicg.github.io/idle-detection/#ref-for-queue-a-task",
- "https://wicg.github.io/idle-detection/#ref-for-idle-detection-task-source",
+ "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task%E2%91%A0",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A3",
+ "https://wicg.github.io/idle-detection/#ref-for-this%E2%91%A5",
+ "https://wicg.github.io/idle-detection/#ref-for-idle-detection-task-source%E2%91%A0",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-state-slot%E2%91%A2",
"https://wicg.github.io/idle-detection/#ref-for-reject%E2%91%A1",
"https://wicg.github.io/idle-detection/#ref-for-notallowederror%E2%91%A1",
- "https://wicg.github.io/idle-detection/#ref-for-idl-DOMException%E2%91%A2",
- "https://wicg.github.io/idle-detection/#ref-for-queue-a-task%E2%91%A0",
- "https://wicg.github.io/idle-detection/#ref-for-idle-detection-task-source%E2%91%A0",
- "https://wicg.github.io/idle-detection/#ref-for-abort-when",
+ "https://wicg.github.io/idle-detection/#ref-for-idl-DOMException%E2%91%A4",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-state-slot%E2%91%A3",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-state-slot%E2%91%A4",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-threshold-slot",
"https://wicg.github.io/idle-detection/#ref-for-dom-idleoptions-threshold%E2%91%A2",
"https://wicg.github.io/idle-detection/#ref-for-resolve%E2%91%A0",
+ "https://wicg.github.io/idle-detection/#ref-for-in-parallel%E2%91%A1",
"https://wicg.github.io/idle-detection/#example-eaf26322",
"https://wicg.github.io/idle-detection/#ref-for-idledetector%E2%91%A2",
"https://wicg.github.io/idle-detection/#ref-for-window",
@@ -265,8 +281,8 @@
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-userstate-slot%E2%91%A0",
"https://wicg.github.io/idle-detection/#ref-for-dom-useridlestate-active%E2%91%A0",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-threshold-slot%E2%91%A0",
- "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task",
- "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A1",
+ "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task%E2%91%A1",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A4",
"https://wicg.github.io/idle-detection/#ref-for-idle-detection-task-source%E2%91%A1",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-userstate-slot%E2%91%A1",
"https://wicg.github.io/idle-detection/#ref-for-dom-useridlestate-idle%E2%91%A0",
@@ -274,8 +290,8 @@
"https://wicg.github.io/idle-detection/#ref-for-event-change%E2%91%A1",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-userstate-slot%E2%91%A2",
"https://wicg.github.io/idle-detection/#ref-for-dom-useridlestate-idle%E2%91%A1",
- "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task%E2%91%A0",
- "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A2",
+ "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task%E2%91%A2",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A5",
"https://wicg.github.io/idle-detection/#ref-for-idle-detection-task-source%E2%91%A2",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-userstate-slot%E2%91%A3",
"https://wicg.github.io/idle-detection/#ref-for-dom-useridlestate-active%E2%91%A1",
@@ -283,8 +299,8 @@
"https://wicg.github.io/idle-detection/#ref-for-event-change%E2%91%A2",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-screenstate-slot%E2%91%A0",
"https://wicg.github.io/idle-detection/#ref-for-dom-screenidlestate-unlocked%E2%91%A0",
- "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task%E2%91%A1",
- "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A3",
+ "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task%E2%91%A3",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A6",
"https://wicg.github.io/idle-detection/#ref-for-idle-detection-task-source%E2%91%A3",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-screenstate-slot%E2%91%A1",
"https://wicg.github.io/idle-detection/#ref-for-dom-screenidlestate-locked%E2%91%A0",
@@ -292,8 +308,8 @@
"https://wicg.github.io/idle-detection/#ref-for-event-change%E2%91%A3",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-screenstate-slot%E2%91%A2",
"https://wicg.github.io/idle-detection/#ref-for-dom-screenidlestate-locked%E2%91%A1",
- "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task%E2%91%A2",
- "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A4",
+ "https://wicg.github.io/idle-detection/#ref-for-queue-a-global-task%E2%91%A4",
+ "https://wicg.github.io/idle-detection/#ref-for-concept-relevant-global%E2%91%A7",
"https://wicg.github.io/idle-detection/#ref-for-idle-detection-task-source%E2%91%A4",
"https://wicg.github.io/idle-detection/#ref-for-dom-idledetector-screenstate-slot%E2%91%A3",
"https://wicg.github.io/idle-detection/#ref-for-dom-screenidlestate-unlocked%E2%91%A1",
@@ -393,6 +409,11 @@
"https://wicg.github.io/idle-detection/#infopaneltitle-for-03675365",
"https://wicg.github.io/idle-detection/#infopanel-for-03675365",
"https://wicg.github.io/idle-detection/#infopaneltitle-for-03675365",
+ "https://wicg.github.io/idle-detection/#0e3ba9f8",
+ "https://wicg.github.io/idle-detection/#infopanel-for-0e3ba9f8",
+ "https://wicg.github.io/idle-detection/#infopaneltitle-for-0e3ba9f8",
+ "https://wicg.github.io/idle-detection/#infopanel-for-0e3ba9f8",
+ "https://wicg.github.io/idle-detection/#infopaneltitle-for-0e3ba9f8",
"https://wicg.github.io/idle-detection/#a72449dd",
"https://wicg.github.io/idle-detection/#infopanel-for-a72449dd",
"https://wicg.github.io/idle-detection/#infopaneltitle-for-a72449dd",
@@ -413,11 +434,6 @@
"https://wicg.github.io/idle-detection/#infopaneltitle-for-48438eb3",
"https://wicg.github.io/idle-detection/#infopanel-for-48438eb3",
"https://wicg.github.io/idle-detection/#infopaneltitle-for-48438eb3",
- "https://wicg.github.io/idle-detection/#9a517a7d",
- "https://wicg.github.io/idle-detection/#infopanel-for-9a517a7d",
- "https://wicg.github.io/idle-detection/#infopaneltitle-for-9a517a7d",
- "https://wicg.github.io/idle-detection/#infopanel-for-9a517a7d",
- "https://wicg.github.io/idle-detection/#infopaneltitle-for-9a517a7d",
"https://wicg.github.io/idle-detection/#e99bd18e",
"https://wicg.github.io/idle-detection/#infopanel-for-e99bd18e",
"https://wicg.github.io/idle-detection/#infopaneltitle-for-e99bd18e",
@@ -428,11 +444,6 @@
"https://wicg.github.io/idle-detection/#infopaneltitle-for-47fe679e",
"https://wicg.github.io/idle-detection/#infopanel-for-47fe679e",
"https://wicg.github.io/idle-detection/#infopaneltitle-for-47fe679e",
- "https://wicg.github.io/idle-detection/#1adcc035",
- "https://wicg.github.io/idle-detection/#infopanel-for-1adcc035",
- "https://wicg.github.io/idle-detection/#infopaneltitle-for-1adcc035",
- "https://wicg.github.io/idle-detection/#infopanel-for-1adcc035",
- "https://wicg.github.io/idle-detection/#infopaneltitle-for-1adcc035",
"https://wicg.github.io/idle-detection/#6d19ac93",
"https://wicg.github.io/idle-detection/#infopanel-for-6d19ac93",
"https://wicg.github.io/idle-detection/#infopaneltitle-for-6d19ac93",
@@ -587,7 +598,7 @@
"https://wicg.github.io/idle-detection/#informative",
"https://wicg.github.io/idle-detection/#biblio-device-orientation",
"https://wicg.github.io/idle-detection/#biblio-fetch",
- "https://wicg.github.io/idle-detection/#biblio-geolocation-api",
+ "https://wicg.github.io/idle-detection/#biblio-geolocation",
"https://wicg.github.io/idle-detection/#biblio-push-api",
"https://wicg.github.io/idle-detection/#idl-index"
]
diff --git a/ed/ids/shared-storage.json b/ed/ids/shared-storage.json
index 468553269186..7735bcc85f86 100644
--- a/ed/ids/shared-storage.json
+++ b/ed/ids/shared-storage.json
@@ -337,7 +337,8 @@
"https://wicg.github.io/shared-storage/#ref-for-concept-document-origin",
"https://wicg.github.io/shared-storage/#ref-for-determine-remaining-navigation-budget",
"https://wicg.github.io/shared-storage/#ref-for-list-size%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-default-index",
+ "https://wicg.github.io/shared-storage/#ref-for-charge-shared-storage-top-level-traversable-budgets",
+ "https://wicg.github.io/shared-storage/#ref-for-default-selecturl-index",
"https://wicg.github.io/shared-storage/#ref-for-fenced-frame-config%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-fenced-frame-config-mapped-url",
"https://wicg.github.io/shared-storage/#ref-for-fenced-frame-config-mapping-finalize-a-pending-config",
@@ -347,7 +348,7 @@
"https://wicg.github.io/shared-storage/#ref-for-upon-rejection",
"https://wicg.github.io/shared-storage/#ref-for-fenced-frame-config%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-fenced-frame-config-mapped-url%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-default-index%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-default-selecturl-index%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-fenced-frame-config-mapping-finalize-a-pending-config%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-terminate-a-worklet-global-scope%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-this%E2%91%A0%E2%91%A0",
@@ -553,14 +554,11 @@
"https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-concept-header-list-append",
"https://wicg.github.io/shared-storage/#ref-for-concept-header",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-data-origin",
"https://wicg.github.io/shared-storage/#ref-for-concept-request-header-list",
- "https://wicg.github.io/shared-storage/#shared-storage-cross-origin-worklet-allowed",
- "https://wicg.github.io/shared-storage/#http-headerdef-shared-storage-cross-origin-worklet-allowed",
- "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-shared-storage-cross-origin-worklet-allowed",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-shared-storage-cross-origin-worklet-allowed",
- "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-shared-storage-cross-origin-worklet-allowed",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-shared-storage-cross-origin-worklet-allowed",
+ "https://wicg.github.io/shared-storage/#worklet-allowed-header",
"https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A1",
@@ -575,41 +573,21 @@
"https://wicg.github.io/shared-storage/#ref-for-sharedstorage",
"https://wicg.github.io/shared-storage/#ref-for-obtain-a-shared-storage-bottle-map",
"https://wicg.github.io/shared-storage/#ref-for-sharedstorage-data-partition-origin",
- "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A1",
"https://wicg.github.io/shared-storage/#http-fetch-monkey-patch",
"https://wicg.github.io/shared-storage/#ref-for-concept-http-fetch",
"https://wicg.github.io/shared-storage/#ref-for-concept-http-fetch%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request-destination",
- "https://wicg.github.io/shared-storage/#ref-for-concept-header-list-get",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request-header-list%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url-parser%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request-origin",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request-origin%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request-url%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A8",
+ "https://wicg.github.io/shared-storage/#ref-for-window%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-same-origin%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%93%AA",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request-url%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-same-origin%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-concept-response-header-list",
- "https://wicg.github.io/shared-storage/#ref-for-concept-header-list-get-structured-header",
- "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-concept-network-error",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-window%E2%91%A0%E2%93%AA",
- "https://wicg.github.io/shared-storage/#ref-for-same-origin%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-sharedstorage-data-partition-origin%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-window%E2%91%A0%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site-remaining-navigation-budget",
+ "https://wicg.github.io/shared-storage/#ref-for-site",
+ "https://wicg.github.io/shared-storage/#ref-for-site-remaining-navigation-budget",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-run%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-concept-global-object-realm%E2%91%A2",
@@ -626,7 +604,7 @@
"https://wicg.github.io/shared-storage/#ref-for-sharedstorageworklet-has-cross-origin-data-origin%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-a-promise-rejected-with%E2%91%A1%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-dom-worklet-addmodule%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-run%E2%91%A3",
@@ -638,7 +616,7 @@
"https://wicg.github.io/shared-storage/#ref-for-upon-fulfillment%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-upon-rejection%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-concept-worklet-global-scopes%E2%91%A0%E2%93%AA",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A7",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-list-size%E2%91%A6",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworkletglobalscope-privateaggregation",
"https://wicg.github.io/shared-storage/#ref-for-allowed-to-use",
@@ -665,8 +643,8 @@
"https://wicg.github.io/shared-storage/#ref-for-sharedstorageworklet%E2%91%A0%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-worklet-destination-type",
"https://wicg.github.io/shared-storage/#request-destination-monkey-patch",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request-destination",
"https://wicg.github.io/shared-storage/#ref-for-concept-request-destination%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request-destination%E2%91%A1",
"https://wicg.github.io/shared-storage/#callbackdef-runfunctionforsharedstorageselecturloperation",
"https://wicg.github.io/shared-storage/#infopanel-for-callbackdef-runfunctionforsharedstorageselecturloperation",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-callbackdef-runfunctionforsharedstorageselecturloperation",
@@ -850,7 +828,7 @@
"https://wicg.github.io/shared-storage/#infopanel-for-get-the-canonical-url-string-if-valid",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-get-the-canonical-url-string-if-valid",
"https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url-parser%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-parser%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-concept-url-serializer",
"https://wicg.github.io/shared-storage/#register-reporting-metadata",
@@ -861,13 +839,13 @@
"https://wicg.github.io/shared-storage/#ref-for-idl-object%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-fenced-frame-config%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-map-is-empty%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A8",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-dfn-dictionary%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-map-is-empty%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-ordered-map%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-map-iterate%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url-parser%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%93%AA",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-parser%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-map-set%E2%91%A0",
"https://wicg.github.io/shared-storage/#issue-451ee8b5",
@@ -876,29 +854,42 @@
"https://wicg.github.io/shared-storage/#ref-for-bits-of-entropy",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-user-agent",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%93%AA",
+ "https://wicg.github.io/shared-storage/#ref-for-default-selecturl-index%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#get-the-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#infopanel-for-get-the-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-get-the-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#infopanel-for-get-the-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-get-the-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-appendmode-sequence",
+ "https://wicg.github.io/shared-storage/#ref-for-idl-USVString%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-idl-unsigned-long%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-the-exclusive-range",
+ "https://wicg.github.io/shared-storage/#ref-for-list-size%E2%91%A7",
+ "https://wicg.github.io/shared-storage/#default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#infopanel-for-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#infopanel-for-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#ref-for-get-the-default-selecturl-index",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-appendmode-sequence%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-idl-USVString%E2%91%A3",
"https://wicg.github.io/shared-storage/#nav-budget",
"https://wicg.github.io/shared-storage/#ref-for-tracking-user-activation",
"https://wicg.github.io/shared-storage/#ref-for-the-fencedframe-element%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-concept-node-document",
"https://wicg.github.io/shared-storage/#ref-for-concept-document-bc",
"https://wicg.github.io/shared-storage/#ref-for-browsing-context-fenced-frame-config-instance%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%93%AA",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-navigate",
"https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-entropy-bits",
"https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A0%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-navigation-entropy-allowance",
- "https://wicg.github.io/shared-storage/#calling-site",
- "https://wicg.github.io/shared-storage/#infopanel-for-calling-site",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-calling-site",
- "https://wicg.github.io/shared-storage/#infopanel-for-calling-site",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-calling-site",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-site",
"https://wicg.github.io/shared-storage/#navigation-entropy-allowance",
"https://wicg.github.io/shared-storage/#infopanel-for-navigation-entropy-allowance",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-navigation-entropy-allowance",
@@ -909,10 +900,10 @@
"https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-navigate%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-navigation-budget-epoch",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-navigation-entropy-allowance%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-dfn-duration%E2%91%A0",
"https://wicg.github.io/shared-storage/#navigation-budget-lifetime",
@@ -935,7 +926,7 @@
"https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-navigation-budget-table",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-navigation-budget-table",
"https://wicg.github.io/shared-storage/#ref-for-ordered-map%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-navigation-entropy-ledger",
"https://wicg.github.io/shared-storage/#navigation-entropy-ledger",
"https://wicg.github.io/shared-storage/#infopanel-for-navigation-entropy-ledger",
@@ -972,68 +963,37 @@
"https://wicg.github.io/shared-storage/#infopanel-for-bit-debit-expired",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-bit-debit-expired",
"https://wicg.github.io/shared-storage/#ref-for-entropy-bits%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-bit-debit-timestamp%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-bit-debit%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-navigation-budget-table",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site%E2%91%A4",
- "https://wicg.github.io/shared-storage/#calling-site-remaining-navigation-budget",
- "https://wicg.github.io/shared-storage/#infopanel-for-calling-site-remaining-navigation-budget",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-calling-site-remaining-navigation-budget",
- "https://wicg.github.io/shared-storage/#infopanel-for-calling-site-remaining-navigation-budget",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-calling-site-remaining-navigation-budget",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#site-remaining-navigation-budget",
+ "https://wicg.github.io/shared-storage/#infopanel-for-site-remaining-navigation-budget",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-site-remaining-navigation-budget",
+ "https://wicg.github.io/shared-storage/#infopanel-for-site-remaining-navigation-budget",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-site-remaining-navigation-budget",
"https://wicg.github.io/shared-storage/#ref-for-navigation-entropy-allowance%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-bit-debit%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-bit-debit-timestamp%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-navigation-budget-epoch%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-site-remaining-navigation-budget%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A2",
- "https://wicg.github.io/shared-storage/#selecturl-input-url-list",
- "https://wicg.github.io/shared-storage/#infopanel-for-selecturl-input-url-list",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-selecturl-input-url-list",
- "https://wicg.github.io/shared-storage/#infopanel-for-selecturl-input-url-list",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-selecturl-input-url-list",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site%E2%91%A5",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site-remaining-navigation-budget%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-typedefdef-sharedstorageresponse%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-fencedframeconfig%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-urn-uuid",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageurlwithmetadata-url",
"https://wicg.github.io/shared-storage/#ref-for-dictdef-sharedstorageurlwithmetadata%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-default-index%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-selecturl-input-url-list",
- "https://wicg.github.io/shared-storage/#default-index",
- "https://wicg.github.io/shared-storage/#infopanel-for-default-index",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-default-index",
- "https://wicg.github.io/shared-storage/#infopanel-for-default-index",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-default-index",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-implementation-defined%E2%91%A1",
- "https://wicg.github.io/shared-storage/#issue-eaab2bb9",
- "https://wicg.github.io/shared-storage/#example-8fff774a",
- "https://wicg.github.io/shared-storage/#ref-for-default-index%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site-remaining-navigation-budget%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A5",
- "https://wicg.github.io/shared-storage/#ref-for-typedefdef-sharedstorageresponse%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageurlwithmetadata-url%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-selecturl-input-url-list%E2%91%A0",
- "https://wicg.github.io/shared-storage/#example-10ddf013",
- "https://wicg.github.io/shared-storage/#ref-for-default-index%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-selecturl-input-url-list%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-list-size%E2%91%A7",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site-remaining-navigation-budget%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A6",
- "https://wicg.github.io/shared-storage/#ref-for-typedefdef-sharedstorageresponse%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageurlwithmetadata-url%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-selecturl-input-url-list%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-default-selecturl-index%E2%91%A2",
"https://wicg.github.io/shared-storage/#determine-remaining-navigation-budget",
"https://wicg.github.io/shared-storage/#infopanel-for-determine-remaining-navigation-budget",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-determine-remaining-navigation-budget",
"https://wicg.github.io/shared-storage/#infopanel-for-determine-remaining-navigation-budget",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-determine-remaining-navigation-budget",
"https://wicg.github.io/shared-storage/#ref-for-environment-settings-object%E2%91%A6",
- "https://wicg.github.io/shared-storage/#ref-for-calling-site%E2%91%A6",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A7",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A6",
"https://wicg.github.io/shared-storage/#ref-for-concept-origin-opaque%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-navigation-entropy-allowance%E2%91%A3",
@@ -1066,9 +1026,9 @@
"https://wicg.github.io/shared-storage/#ref-for-concept-node-document%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-concept-document-bc%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-browsing-context-fenced-frame-config-instance%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A7",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-bit-debit-bits%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A8",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-navigation-budget-table%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-beginning-navigation",
@@ -1089,13 +1049,6 @@
"https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-charge-shared-storage-navigation-budget%E2%91%A0",
"https://wicg.github.io/shared-storage/#issue-2c9003c1",
- "https://wicg.github.io/shared-storage/#issue-3534ecb9",
- "https://wicg.github.io/shared-storage/#shared-storage-navigation-budget-charged",
- "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-navigation-budget-charged",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-navigation-budget-charged",
- "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-navigation-budget-charged",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-navigation-budget-charged",
- "https://wicg.github.io/shared-storage/#ref-for-browsing-context-fenced-frame-config-instance%E2%91%A4",
"https://wicg.github.io/shared-storage/#charge-shared-storage-navigation-budget",
"https://wicg.github.io/shared-storage/#infopanel-for-charge-shared-storage-navigation-budget",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-charge-shared-storage-navigation-budget",
@@ -1111,12 +1064,11 @@
"https://wicg.github.io/shared-storage/#ref-for-concept-document-origin%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-concept-node-document%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-concept-document-bc%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-browsing-context-fenced-frame-config-instance%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-browsing-context-fenced-frame-config-instance%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-nav-parent",
"https://wicg.github.io/shared-storage/#ref-for-concept-origin-opaque%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-iteration-continue",
"https://wicg.github.io/shared-storage/#ref-for-pending-shared-storage-budget-debit%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-shared-storage-navigation-budget-charged",
"https://wicg.github.io/shared-storage/#ref-for-iteration-continue%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-navigation-budget-table%E2%91%A4",
@@ -1125,87 +1077,7 @@
"https://wicg.github.io/shared-storage/#ref-for-dfn-current-wall-time%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-bit-debit-timestamp%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-list-append%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-shared-storage-navigation-budget-charged%E2%91%A0",
- "https://wicg.github.io/shared-storage/#report-budget",
- "https://wicg.github.io/shared-storage/#ref-for-dom-fence-reportevent%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-the-fencedframe-element%E2%91%A5",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A1%E2%93%AA",
- "https://wicg.github.io/shared-storage/#ref-for-dom-fenceevent-destination%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-list-contain%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-dom-fenceevent-eventtype%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A0%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-entropy-bits%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-page-load",
- "https://wicg.github.io/shared-storage/#ref-for-reporting-entropy-allowance",
- "https://wicg.github.io/shared-storage/#page-load",
- "https://wicg.github.io/shared-storage/#infopanel-for-page-load",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-page-load",
- "https://wicg.github.io/shared-storage/#infopanel-for-page-load",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-page-load",
- "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A6",
- "https://wicg.github.io/shared-storage/#reporting-entropy-allowance",
- "https://wicg.github.io/shared-storage/#infopanel-for-reporting-entropy-allowance",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-reporting-entropy-allowance",
- "https://wicg.github.io/shared-storage/#infopanel-for-reporting-entropy-allowance",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-reporting-entropy-allowance",
- "https://wicg.github.io/shared-storage/#ref-for-entropy-bits%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-dom-fence-reportevent%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-reporting-entropy-allowance%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A7",
- "https://wicg.github.io/shared-storage/#ref-for-idl-double",
- "https://wicg.github.io/shared-storage/#shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-reporting-entropy-allowance%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A8",
- "https://wicg.github.io/shared-storage/#ref-for-dom-fence-reportevent%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-dom-fenceevent-destination%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-list-contain%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-charge-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#issue-82e0fec0",
- "https://wicg.github.io/shared-storage/#ref-for-dom-fence-reportevent%E2%91%A3",
- "https://wicg.github.io/shared-storage/#determine-reporting-budget-to-charge",
- "https://wicg.github.io/shared-storage/#infopanel-for-determine-reporting-budget-to-charge",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-determine-reporting-budget-to-charge",
- "https://wicg.github.io/shared-storage/#infopanel-for-determine-reporting-budget-to-charge",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-determine-reporting-budget-to-charge",
- "https://wicg.github.io/shared-storage/#ref-for-document%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-node-navigable%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-source-snapshot-params-initiator-fenced-frame-config-instance",
- "https://wicg.github.io/shared-storage/#ref-for-nav-parent%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-iteration-continue%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-pending-shared-storage-budget-debit%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-shared-storage-reporting-budget-charged",
- "https://wicg.github.io/shared-storage/#issue-2c90d642",
- "https://wicg.github.io/shared-storage/#shared-storage-reporting-budget-charged",
- "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-reporting-budget-charged",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-reporting-budget-charged",
- "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-reporting-budget-charged",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-reporting-budget-charged",
- "https://wicg.github.io/shared-storage/#ref-for-browsing-context-fenced-frame-config-instance%E2%91%A6",
- "https://wicg.github.io/shared-storage/#charge-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#infopanel-for-charge-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-charge-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#infopanel-for-charge-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-charge-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#ref-for-document%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-determine-reporting-budget-to-charge",
- "https://wicg.github.io/shared-storage/#ref-for-node-navigable%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A0%E2%93%AA",
- "https://wicg.github.io/shared-storage/#ref-for-shared-storage-reporting-budget",
- "https://wicg.github.io/shared-storage/#ref-for-concept-node-document%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-concept-document-bc%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-browsing-context-fenced-frame-config-instance%E2%91%A7",
- "https://wicg.github.io/shared-storage/#ref-for-pending-shared-storage-budget-debit%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-shared-storage-reporting-budget-charged%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-nav-parent%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-shared-storage-reporting-budget%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-purge-expired-bit-debits-from-all-navigation-entropy-ledgers",
"https://wicg.github.io/shared-storage/#ref-for-bit-debit-expired",
"https://wicg.github.io/shared-storage/#ref-for-bit-debit%E2%91%A6",
@@ -1215,11 +1087,95 @@
"https://wicg.github.io/shared-storage/#infopanel-for-purge-expired-bit-debits-from-all-navigation-entropy-ledgers",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-purge-expired-bit-debits-from-all-navigation-entropy-ledgers",
"https://wicg.github.io/shared-storage/#ref-for-map-iterate%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-navigation-budget-table%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-map-iterate%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-check-whether-a-bit-debit-is-expired%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-list-remove",
+ "https://wicg.github.io/shared-storage/#top-budgets",
+ "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-the-fencedframe-element%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#overall-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#infopanel-for-overall-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-overall-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#infopanel-for-overall-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-overall-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#site-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#infopanel-for-site-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-site-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#infopanel-for-site-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-site-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A7",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A8",
+ "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A8",
+ "https://wicg.github.io/shared-storage/#traversable-navigable-shared-storage-page-budget",
+ "https://wicg.github.io/shared-storage/#infopanel-for-traversable-navigable-shared-storage-page-budget",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-traversable-navigable-shared-storage-page-budget",
+ "https://wicg.github.io/shared-storage/#infopanel-for-traversable-navigable-shared-storage-page-budget",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-traversable-navigable-shared-storage-page-budget",
+ "https://wicg.github.io/shared-storage/#ref-for-struct%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-struct-item%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#shared-storage-page-budget-overall-budget",
+ "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-page-budget-overall-budget",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-page-budget-overall-budget",
+ "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-page-budget-overall-budget",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-page-budget-overall-budget",
+ "https://wicg.github.io/shared-storage/#shared-storage-page-budget-site-budget-map",
+ "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-page-budget-site-budget-map",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-page-budget-site-budget-map",
+ "https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-page-budget-site-budget-map",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-page-budget-site-budget-map",
+ "https://wicg.github.io/shared-storage/#ref-for-ordered-map%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A0%E2%93%AA",
+ "https://wicg.github.io/shared-storage/#patch-trav-nav",
+ "https://wicg.github.io/shared-storage/#ref-for-nav-traversable%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-navigable%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-nav-traversable%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#traversable-navigable-page-budget",
+ "https://wicg.github.io/shared-storage/#infopanel-for-traversable-navigable-page-budget",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-traversable-navigable-page-budget",
+ "https://wicg.github.io/shared-storage/#infopanel-for-traversable-navigable-page-budget",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-traversable-navigable-page-budget",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-shared-storage-page-budget",
+ "https://wicg.github.io/shared-storage/#patch-navigables",
+ "https://wicg.github.io/shared-storage/#ref-for-navigable%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-initialize-the-navigable",
+ "https://wicg.github.io/shared-storage/#ref-for-nav-traversable%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-shared-storage-page-budget%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-shared-storage-page-budget-site-budget-map",
+ "https://wicg.github.io/shared-storage/#ref-for-shared-storage-page-budget-overall-budget",
+ "https://wicg.github.io/shared-storage/#ref-for-overall-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-page-budget",
+ "https://wicg.github.io/shared-storage/#charge-top-trav-budgets",
+ "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A0%E2%93%AA",
+ "https://wicg.github.io/shared-storage/#charge-shared-storage-top-level-traversable-budgets",
+ "https://wicg.github.io/shared-storage/#infopanel-for-charge-shared-storage-top-level-traversable-budgets",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-charge-shared-storage-top-level-traversable-budgets",
+ "https://wicg.github.io/shared-storage/#infopanel-for-charge-shared-storage-top-level-traversable-budgets",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-charge-shared-storage-top-level-traversable-budgets",
+ "https://wicg.github.io/shared-storage/#ref-for-navigable%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-site%E2%91%A0%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A0%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A7",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-page-budget%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-page-budget%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-shared-storage-page-budget-overall-budget%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-page-budget%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-shared-storage-page-budget-site-budget-map%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-map-set%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-page-budget%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-shared-storage-page-budget-site-budget-map%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-site-page-entropy-allowance",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-page-budget%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-shared-storage-page-budget-site-budget-map%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-page-budget%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-shared-storage-page-budget-site-budget-map%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-traversable-navigable-page-budget%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-shared-storage-page-budget-overall-budget%E2%91%A1",
"https://wicg.github.io/shared-storage/#backend",
"https://wicg.github.io/shared-storage/#ref-for-model",
"https://wicg.github.io/shared-storage/#ref-for-registered-storage-endpoints",
@@ -1228,7 +1184,7 @@
"https://wicg.github.io/shared-storage/#ref-for-model%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-storage-type",
"https://wicg.github.io/shared-storage/#ref-for-model%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-shed",
"https://wicg.github.io/shared-storage/#ref-for-storage-endpoint%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-storage-type%E2%91%A0",
@@ -1244,7 +1200,7 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-shed",
"https://wicg.github.io/shared-storage/#infopanel-for-shared-storage-shed",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-shared-storage-shed",
- "https://wicg.github.io/shared-storage/#ref-for-ordered-map%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-ordered-map%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-concept-origin%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-storage-shelf",
"https://wicg.github.io/shared-storage/#ref-for-storage-shed",
@@ -1257,7 +1213,7 @@
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-shed%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-storage-shelf%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-bucket-map",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-shed%E2%91%A2",
"https://wicg.github.io/shared-storage/#shared-storage",
"https://wicg.github.io/shared-storage/#infopanel-for-shared-storage",
@@ -1317,14 +1273,14 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-obtain-a-shared-storage-bottle-map",
"https://wicg.github.io/shared-storage/#ref-for-environment-settings-object%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-concept-origin%E2%91%A6",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A7",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-shed%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-obtain-a-shared-storage-shelf",
"https://wicg.github.io/shared-storage/#ref-for-bucket-map%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-bottle-map%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-storage-proxy-map",
"https://wicg.github.io/shared-storage/#ref-for-storage-proxy-map-backing-map",
- "https://wicg.github.io/shared-storage/#ref-for-ordered-map%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-ordered-map%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-set-append",
"https://wicg.github.io/shared-storage/#ref-for-storage-bottle-proxy-map-reference-set",
"https://wicg.github.io/shared-storage/#database",
@@ -1366,7 +1322,7 @@
"https://wicg.github.io/shared-storage/#infopanel-for-entry-key",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-entry-key",
"https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A8",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A6",
"https://wicg.github.io/shared-storage/#key-maximum-length",
"https://wicg.github.io/shared-storage/#infopanel-for-key-maximum-length",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-key-maximum-length",
@@ -1383,7 +1339,7 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-entry-value-struct",
"https://wicg.github.io/shared-storage/#infopanel-for-entry-value-struct",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-entry-value-struct",
- "https://wicg.github.io/shared-storage/#ref-for-struct%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-struct%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A3",
"https://wicg.github.io/shared-storage/#value-struct-value",
"https://wicg.github.io/shared-storage/#infopanel-for-value-struct-value",
@@ -1397,14 +1353,14 @@
"https://wicg.github.io/shared-storage/#infopanel-for-value-struct-last-updated",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-value-struct-last-updated",
"https://wicg.github.io/shared-storage/#ref-for-dfn-unix-epoch%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A1%E2%93%AA",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A7",
"https://wicg.github.io/shared-storage/#value-maximum-length",
"https://wicg.github.io/shared-storage/#infopanel-for-value-maximum-length",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-value-maximum-length",
"https://wicg.github.io/shared-storage/#infopanel-for-value-maximum-length",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-value-maximum-length",
"https://wicg.github.io/shared-storage/#ref-for-value-struct-value",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A1%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A0%E2%91%A8",
"https://wicg.github.io/shared-storage/#default-entry-lifetime",
"https://wicg.github.io/shared-storage/#infopanel-for-default-entry-lifetime",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-default-entry-lifetime",
@@ -1413,7 +1369,7 @@
"https://wicg.github.io/shared-storage/#ref-for-dfn-duration%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-database-entry%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-database-store-an-entry-in-the-database%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A1%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A1%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-default-entry-lifetime",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-database-purge-expired-entries-from-the-database%E2%91%A0",
"https://wicg.github.io/shared-storage/#database-algorithms",
@@ -1432,7 +1388,7 @@
"https://wicg.github.io/shared-storage/#ref-for-value-struct-value%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-dfn-eso-current-wall-time%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-value-struct-last-updated",
- "https://wicg.github.io/shared-storage/#ref-for-map-set%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-map-set%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-an-exception-was-thrown",
"https://wicg.github.io/shared-storage/#ref-for-storage-proxy-map%E2%91%A1",
"https://wicg.github.io/shared-storage/#shared-storage-database-retrieve-an-entry-from-the-database",
@@ -1444,7 +1400,7 @@
"https://wicg.github.io/shared-storage/#ref-for-storage-proxy-map%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-environment-settings-object%E2%91%A0%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-entry-key%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-map-get",
"https://wicg.github.io/shared-storage/#ref-for-an-exception-was-thrown%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-storage-proxy-map%E2%91%A3",
@@ -1514,7 +1470,7 @@
"https://wicg.github.io/shared-storage/#ref-for-environment-settings-object%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-entry-value-struct%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-value-struct-last-updated%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A1%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-user-agent%E2%91%A1%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-default-entry-lifetime%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-dfn-eso-current-wall-time%E2%91%A1",
"https://wicg.github.io/shared-storage/#window-extension",
@@ -1552,7 +1508,7 @@
"https://wicg.github.io/shared-storage/#ref-for-sharedstorageworklet%E2%91%A0%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-environment",
"https://wicg.github.io/shared-storage/#ref-for-sharedstorageworkletglobalscope%E2%91%A0%E2%91%A6",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A1%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-run%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorage-worklet",
"https://wicg.github.io/shared-storage/#ref-for-dom-worklet-addmodule%E2%91%A8",
@@ -1594,7 +1550,7 @@
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorage-clear",
"https://wicg.github.io/shared-storage/#ref-for-Exposed%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-idl-promise%E2%91%A0%E2%93%AA",
- "https://wicg.github.io/shared-storage/#ref-for-typedefdef-sharedstorageresponse%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-typedefdef-sharedstorageresponse%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorage-selecturl%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-idl-DOMString%E2%91%A8",
"https://wicg.github.io/shared-storage/#dom-sharedstorage-selecturl-name-urls-options-name",
@@ -1615,7 +1571,7 @@
"https://wicg.github.io/shared-storage/#ref-for-idl-promise%E2%91%A0%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-sharedstorageworklet%E2%91%A1%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorage-createworklet%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-idl-USVString%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-idl-USVString%E2%91%A4",
"https://wicg.github.io/shared-storage/#dom-sharedstorage-createworklet-moduleurl-options-moduleurl",
"https://wicg.github.io/shared-storage/#ref-for-dictdef-sharedstorageworkletoptions",
"https://wicg.github.io/shared-storage/#dom-sharedstorage-createworklet-moduleurl-options-options",
@@ -1634,11 +1590,11 @@
"https://wicg.github.io/shared-storage/#dom-sharedstorage-get-key-key",
"https://wicg.github.io/shared-storage/#ref-for-Exposed%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-idl-promise%E2%91%A0%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-idl-unsigned-long%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-idl-unsigned-long%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorage-length",
"https://wicg.github.io/shared-storage/#ref-for-Exposed%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-idl-promise%E2%91%A0%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-idl-double%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-idl-double",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorage-remainingbudget",
"https://wicg.github.io/shared-storage/#ref-for-Exposed%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-idl-DOMString%E2%91%A0%E2%91%A2",
@@ -1655,13 +1611,13 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dictdef-sharedstorageprivateaggregationconfig",
"https://wicg.github.io/shared-storage/#infopanel-for-dictdef-sharedstorageprivateaggregationconfig",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dictdef-sharedstorageprivateaggregationconfig",
- "https://wicg.github.io/shared-storage/#ref-for-idl-USVString%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-idl-USVString%E2%91%A5",
"https://wicg.github.io/shared-storage/#dom-sharedstorageprivateaggregationconfig-aggregationcoordinatororigin",
"https://wicg.github.io/shared-storage/#infopanel-for-dom-sharedstorageprivateaggregationconfig-aggregationcoordinatororigin",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dom-sharedstorageprivateaggregationconfig-aggregationcoordinatororigin",
"https://wicg.github.io/shared-storage/#infopanel-for-dom-sharedstorageprivateaggregationconfig-aggregationcoordinatororigin",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dom-sharedstorageprivateaggregationconfig-aggregationcoordinatororigin",
- "https://wicg.github.io/shared-storage/#ref-for-idl-USVString%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-idl-USVString%E2%91%A6",
"https://wicg.github.io/shared-storage/#dom-sharedstorageprivateaggregationconfig-contextid",
"https://wicg.github.io/shared-storage/#infopanel-for-dom-sharedstorageprivateaggregationconfig-contextid",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dom-sharedstorageprivateaggregationconfig-contextid",
@@ -1712,7 +1668,7 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dom-sharedstorage-selecturl",
"https://wicg.github.io/shared-storage/#ref-for-this%E2%91%A1%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorage-worklet%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A1%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A0%E2%91%A8",
"https://wicg.github.io/shared-storage/#dom-sharedstorage-run",
"https://wicg.github.io/shared-storage/#infopanel-for-dom-sharedstorage-run",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dom-sharedstorage-run",
@@ -1729,7 +1685,7 @@
"https://wicg.github.io/shared-storage/#infopanel-for-dom-sharedstorage-createworklet",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dom-sharedstorage-createworklet",
"https://wicg.github.io/shared-storage/#ref-for-sharedstorageworklet%E2%91%A1%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-sharedstorageworklet-data-origin%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-dom-worklet-addmodule%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-idl-promise%E2%91%A0%E2%91%A5",
@@ -2098,7 +2054,7 @@
"https://wicg.github.io/shared-storage/#ref-for-obtain-a-site%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-concept-realm-settings-object%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-concept-settings-object-origin%E2%91%A1%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A0%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-concept-origin-opaque%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-database%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-database-shared-storage-database-queue%E2%91%A0%E2%91%A3",
@@ -2300,56 +2256,112 @@
"https://wicg.github.io/shared-storage/#ref-for-dom-request%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-concept-request-request%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-dom-requestinit-sharedstoragewritable%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-request-shared-storage-writable%E2%91%A1",
"https://wicg.github.io/shared-storage/#mod-http-net-fetch",
"https://wicg.github.io/shared-storage/#ref-for-concept-http-network-or-cache-fetch",
"https://wicg.github.io/shared-storage/#ref-for-concept-http-network-or-cache-fetch%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request-header-list%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request-header-list%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-append-or-modify-a-sec-shared-storage-writable-request-header",
"https://wicg.github.io/shared-storage/#mod-http-fetch",
"https://wicg.github.io/shared-storage/#ref-for-concept-http-fetch%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-concept-http-fetch%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-concept-response-status",
"https://wicg.github.io/shared-storage/#ref-for-redirect-status",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request-destination%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header-list-get",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-data-origin%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request-header-list%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-parser%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%93%AA",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request-origin",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request-origin%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request-url%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-same-origin%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request-url%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-same-origin%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-response-header-list",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header-list-get-structured-header",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-network-error",
"https://wicg.github.io/shared-storage/#ref-for-handle-a-shared-storage-write-response",
"https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A0",
"https://wicg.github.io/shared-storage/#headers",
- "https://wicg.github.io/shared-storage/#request-header",
- "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-writable",
- "https://wicg.github.io/shared-storage/#http-headerdef-sec-shared-storage-writable",
- "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-sec-shared-storage-writable",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-sec-shared-storage-writable",
- "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-sec-shared-storage-writable",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-sec-shared-storage-writable",
+ "https://wicg.github.io/shared-storage/#data-origin-request-header",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-data-origin%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#http-headerdef-sec-shared-storage-data-origin",
+ "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-sec-shared-storage-data-origin",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-sec-shared-storage-data-origin",
+ "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-sec-shared-storage-data-origin",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-sec-shared-storage-data-origin",
"https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-writable%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-data-origin%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header-value",
+ "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-data-origin%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header-value%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#cross-origin-response-header",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#http-headerdef-shared-storage-cross-origin-worklet-allowed",
+ "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-shared-storage-cross-origin-worklet-allowed",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-shared-storage-cross-origin-worklet-allowed",
+ "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-shared-storage-cross-origin-worklet-allowed",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-shared-storage-cross-origin-worklet-allowed",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-specify",
"https://wicg.github.io/shared-storage/#ref-for-boolean%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-cross-origin-worklet-allowed%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#writable-request-header",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-writable",
+ "https://wicg.github.io/shared-storage/#http-headerdef-sec-shared-storage-writable",
+ "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-sec-shared-storage-writable",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-sec-shared-storage-writable",
+ "https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-sec-shared-storage-writable",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-sec-shared-storage-writable",
"https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-writable%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-specify%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-boolean%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-writable%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A1",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage%E2%91%A3",
- "https://wicg.github.io/shared-storage/#response-header",
+ "https://wicg.github.io/shared-storage/#write-response-header",
"https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-write",
"https://wicg.github.io/shared-storage/#http-headerdef-shared-storage-write",
"https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-shared-storage-write",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-shared-storage-write",
"https://wicg.github.io/shared-storage/#infopanel-for-http-headerdef-shared-storage-write",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-http-headerdef-shared-storage-write",
- "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-write%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-specify%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-header%E2%91%A8",
+ "https://wicg.github.io/shared-storage/#ref-for-specify%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-list%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-token",
- "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-binary",
"https://wicg.github.io/shared-storage/#ref-for-utf-8-encode",
"https://wicg.github.io/shared-storage/#ref-for-ascii-code-point",
@@ -2358,13 +2370,13 @@
"https://wicg.github.io/shared-storage/#ref-for-param",
"https://wicg.github.io/shared-storage/#ref-for-param%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-token%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A6",
"https://wicg.github.io/shared-storage/#ref-for-binary%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-token%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-binary%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-param%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-boolean%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-boolean%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-param%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-param%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-database%E2%91%A0%E2%91%A5",
@@ -2384,10 +2396,10 @@
"https://wicg.github.io/shared-storage/#ref-for-concept-origin%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-param%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-token%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A7",
+ "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-binary%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-token%E2%91%A3",
- "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A8",
+ "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-binary%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-param%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-database%E2%91%A0%E2%91%A8",
@@ -2411,7 +2423,7 @@
"https://wicg.github.io/shared-storage/#ref-for-concept-origin%E2%91%A0%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-param%E2%91%A0%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-token%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A0%E2%93%AA",
+ "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A0%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-binary%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-database-entry%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-shared-storage-database%E2%91%A1%E2%91%A1",
@@ -2430,17 +2442,17 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-determine-whether-a-request-can-currently-use-shared-storage",
"https://wicg.github.io/shared-storage/#infopanel-for-determine-whether-a-request-can-currently-use-shared-storage",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-determine-whether-a-request-can-currently-use-shared-storage",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A6",
"https://wicg.github.io/shared-storage/#ref-for-concept-request-window%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-environment-settings-object%E2%91%A0%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-concept-realm-global%E2%91%A1%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-window%E2%91%A1%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-determine-whether-shared-storage-is-allowed-by-context%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-concept-request-current-url%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A6",
"https://wicg.github.io/shared-storage/#ref-for-check-if-user-preference-setting-allows-access-to-shared-storage%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-concept-request-current-url%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url-origin%E2%91%A0%E2%91%A7",
"https://wicg.github.io/shared-storage/#issue-9d2a534a",
"https://wicg.github.io/shared-storage/#ref-for-determine-whether-a-request-can-currently-use-shared-storage",
"https://wicg.github.io/shared-storage/#append-or-modify-a-sec-shared-storage-writable-request-header",
@@ -2448,7 +2460,7 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-append-or-modify-a-sec-shared-storage-writable-request-header",
"https://wicg.github.io/shared-storage/#infopanel-for-append-or-modify-a-sec-shared-storage-writable-request-header",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-append-or-modify-a-sec-shared-storage-writable-request-header",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A7",
"https://wicg.github.io/shared-storage/#ref-for-request-shared-storage-writable%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-request-shared-storage-writable%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-determine-whether-a-request-can-currently-use-shared-storage%E2%91%A0",
@@ -2464,14 +2476,14 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-handle-a-shared-storage-write-response",
"https://wicg.github.io/shared-storage/#infopanel-for-handle-a-shared-storage-write-response",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-handle-a-shared-storage-write-response",
- "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A6",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-response%E2%91%A7",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-request%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-concept-header-list-get-structured-header%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-http-headerdef-sec-shared-storage-writable%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-concept-request-header-list%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-boolean%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-boolean%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-concept-request-window%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-environment-settings-object%E2%91%A0%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-concept-realm-global%E2%91%A1%E2%91%A8",
"https://wicg.github.io/shared-storage/#ref-for-window%E2%91%A1%E2%91%A6",
@@ -2482,7 +2494,7 @@
"https://wicg.github.io/shared-storage/#ref-for-http-headerdef-shared-storage-write%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-list-empty%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-inner-list",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-item",
"https://wicg.github.io/shared-storage/#ref-for-get-the-string-value",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorage-clear%E2%91%A1",
@@ -2495,7 +2507,7 @@
"https://wicg.github.io/shared-storage/#ref-for-obtain-a-string-like-parameter-value%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-dictdef-sharedstoragesetmethodoptions%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-obtain-a-boolean-parameter-value",
- "https://wicg.github.io/shared-storage/#ref-for-map-set%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-map-set%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorage-set%E2%91%A1",
"https://wicg.github.io/shared-storage/#check-if-string-like",
"https://wicg.github.io/shared-storage/#infopanel-for-check-if-string-like",
@@ -2503,7 +2515,7 @@
"https://wicg.github.io/shared-storage/#infopanel-for-check-if-string-like",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-check-if-string-like",
"https://wicg.github.io/shared-storage/#ref-for-item%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A0%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A0%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-token%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-binary%E2%91%A8",
"https://wicg.github.io/shared-storage/#get-the-string-value",
@@ -2514,8 +2526,8 @@
"https://wicg.github.io/shared-storage/#ref-for-item%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-check-if-string-like",
"https://wicg.github.io/shared-storage/#ref-for-token%E2%91%A6",
- "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A0%E2%91%A1",
- "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-string%E2%91%A0%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-assert%E2%91%A1%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-ascii-string",
"https://wicg.github.io/shared-storage/#ref-for-binary%E2%91%A0%E2%93%AA",
"https://wicg.github.io/shared-storage/#ref-for-utf-8-decode",
@@ -2526,7 +2538,7 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-obtain-a-string-like-parameter-value",
"https://wicg.github.io/shared-storage/#ref-for-param%E2%91%A0%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-token%E2%91%A7",
- "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A3",
+ "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-check-if-string-like%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-get-the-string-value%E2%91%A0",
"https://wicg.github.io/shared-storage/#obtain-a-boolean-parameter-value",
@@ -2536,8 +2548,8 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-obtain-a-boolean-parameter-value",
"https://wicg.github.io/shared-storage/#ref-for-param%E2%91%A0%E2%91%A5",
"https://wicg.github.io/shared-storage/#ref-for-token%E2%91%A8",
- "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A4",
- "https://wicg.github.io/shared-storage/#ref-for-boolean%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-map-exists%E2%91%A0%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-boolean%E2%91%A5",
"https://wicg.github.io/shared-storage/#permission",
"https://wicg.github.io/shared-storage/#ref-for-policy-controlled-feature%E2%91%A0",
"https://wicg.github.io/shared-storage/#permissionspolicy-shared-storage",
@@ -2553,20 +2565,20 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-permissionspolicy-shared-storage-select-url",
"https://wicg.github.io/shared-storage/#ref-for-permissionspolicy-shared-storage%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-permissionspolicy-shared-storage-select-url%E2%91%A0",
- "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A1%E2%91%A2",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-sharedstorageworklet-selecturl%E2%91%A1%E2%93%AA",
"https://wicg.github.io/shared-storage/#clear",
"https://wicg.github.io/shared-storage/#privacy",
"https://wicg.github.io/shared-storage/#ref-for-sharedstorageworklet%E2%91%A1%E2%91%A4",
"https://wicg.github.io/shared-storage/#ref-for-sharedstorageworklet%E2%91%A1%E2%91%A5",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A0%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A0%E2%91%A2",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-the-fencedframe-element%E2%91%A6",
- "https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A0%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-concept-url%E2%91%A0%E2%91%A3",
"https://wicg.github.io/shared-storage/#ref-for-the-fencedframe-element%E2%91%A7",
- "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A0%E2%91%A0",
+ "https://wicg.github.io/shared-storage/#ref-for-nav-top%E2%91%A0%E2%91%A1",
"https://wicg.github.io/shared-storage/#ref-for-navigate%E2%91%A2",
"https://wicg.github.io/shared-storage/#ref-for-the-fencedframe-element%E2%91%A8",
- "https://wicg.github.io/shared-storage/#ref-for-dom-fence-reportevent%E2%91%A4",
+ "https://wicg.github.io/shared-storage/#ref-for-dom-fence-reportevent%E2%91%A0",
"https://wicg.github.io/shared-storage/#ref-for-something%E2%91%A1",
"https://wicg.github.io/shared-storage/#w3c-conformance",
"https://wicg.github.io/shared-storage/#w3c-conventions",
@@ -2689,11 +2701,6 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-e5128568",
"https://wicg.github.io/shared-storage/#infopanel-for-e5128568",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-e5128568",
- "https://wicg.github.io/shared-storage/#6417de26",
- "https://wicg.github.io/shared-storage/#infopanel-for-6417de26",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-6417de26",
- "https://wicg.github.io/shared-storage/#infopanel-for-6417de26",
- "https://wicg.github.io/shared-storage/#infopaneltitle-for-6417de26",
"https://wicg.github.io/shared-storage/#e231e88f",
"https://wicg.github.io/shared-storage/#infopanel-for-e231e88f",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-e231e88f",
@@ -2834,6 +2841,11 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dc1cd39b",
"https://wicg.github.io/shared-storage/#infopanel-for-dc1cd39b",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-dc1cd39b",
+ "https://wicg.github.io/shared-storage/#8a608b90",
+ "https://wicg.github.io/shared-storage/#infopanel-for-8a608b90",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-8a608b90",
+ "https://wicg.github.io/shared-storage/#infopanel-for-8a608b90",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-8a608b90",
"https://wicg.github.io/shared-storage/#1ab127d6",
"https://wicg.github.io/shared-storage/#infopanel-for-1ab127d6",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-1ab127d6",
@@ -3049,6 +3061,11 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-a72449dd",
"https://wicg.github.io/shared-storage/#infopanel-for-a72449dd",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-a72449dd",
+ "https://wicg.github.io/shared-storage/#2fa84525",
+ "https://wicg.github.io/shared-storage/#infopanel-for-2fa84525",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-2fa84525",
+ "https://wicg.github.io/shared-storage/#infopanel-for-2fa84525",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-2fa84525",
"https://wicg.github.io/shared-storage/#9b3743cd",
"https://wicg.github.io/shared-storage/#infopanel-for-9b3743cd",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-9b3743cd",
@@ -3404,6 +3421,11 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-984221ca",
"https://wicg.github.io/shared-storage/#infopanel-for-984221ca",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-984221ca",
+ "https://wicg.github.io/shared-storage/#cf6542b2",
+ "https://wicg.github.io/shared-storage/#infopanel-for-cf6542b2",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-cf6542b2",
+ "https://wicg.github.io/shared-storage/#infopanel-for-cf6542b2",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-cf6542b2",
"https://wicg.github.io/shared-storage/#6d19ac93",
"https://wicg.github.io/shared-storage/#infopanel-for-6d19ac93",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-6d19ac93",
@@ -3414,6 +3436,11 @@
"https://wicg.github.io/shared-storage/#infopaneltitle-for-12d6b9a8",
"https://wicg.github.io/shared-storage/#infopanel-for-12d6b9a8",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-12d6b9a8",
+ "https://wicg.github.io/shared-storage/#2c8f3d9c",
+ "https://wicg.github.io/shared-storage/#infopanel-for-2c8f3d9c",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-2c8f3d9c",
+ "https://wicg.github.io/shared-storage/#infopanel-for-2c8f3d9c",
+ "https://wicg.github.io/shared-storage/#infopaneltitle-for-2c8f3d9c",
"https://wicg.github.io/shared-storage/#47a2271a",
"https://wicg.github.io/shared-storage/#infopanel-for-47a2271a",
"https://wicg.github.io/shared-storage/#infopaneltitle-for-47a2271a",
@@ -3921,6 +3948,7 @@
"https://wicg.github.io/shared-storage/#biblio-html",
"https://wicg.github.io/shared-storage/#biblio-i18n-glossary",
"https://wicg.github.io/shared-storage/#biblio-infra",
+ "https://wicg.github.io/shared-storage/#biblio-media-source-2",
"https://wicg.github.io/shared-storage/#biblio-permissions-policy-1",
"https://wicg.github.io/shared-storage/#biblio-private-aggregation-api",
"https://wicg.github.io/shared-storage/#biblio-rfc2119",
diff --git a/ed/ids/webgpu.json b/ed/ids/webgpu.json
index f221a7422ef2..3d8b4e3d6783 100644
--- a/ed/ids/webgpu.json
+++ b/ed/ids/webgpu.json
@@ -98,11 +98,11 @@
"https://gpuweb.github.io/gpuweb/#api-conventions",
"https://gpuweb.github.io/gpuweb/#shorthands",
"https://gpuweb.github.io/gpuweb/#ref-for-ordered-map",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert",
"https://gpuweb.github.io/gpuweb/#ref-for-map-exists",
"https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-ordered-map%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-ordered-map%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-gpubuffer%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#slot-backed-attribute",
"https://gpuweb.github.io/gpuweb/#webgpu-objects",
@@ -157,7 +157,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-device",
"https://gpuweb.github.io/gpuweb/#ref-for-device%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-internal-object%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuobjectbase%E2%91%A3",
@@ -433,7 +433,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-usage-scope%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-internal-usage%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-internal-usage%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-list-append",
"https://gpuweb.github.io/gpuweb/#abstract-opdef-usage-scope-merge",
"https://gpuweb.github.io/gpuweb/#ref-for-usage-scope%E2%91%A1",
@@ -1074,7 +1074,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-exceptiondef-typeerror%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A1%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-idl-unrestricted-double",
"https://gpuweb.github.io/gpuweb/#ref-for-idl-unrestricted-float",
"https://gpuweb.github.io/gpuweb/#ref-for-sec-returnifabrupt-shorthands",
@@ -1107,7 +1107,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-exceptiondef-typeerror%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A1%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-sec-returnifabrupt-shorthands%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-to-wgsl-type",
"https://gpuweb.github.io/gpuweb/#ref-for-implementation-defined%E2%91%A2",
@@ -1371,7 +1371,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-device%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-lose-the-device%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudevicelostreason-unknown%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-adapter-state-slot%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-adapter-state-expired%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpu-requestadapter%E2%91%A0%E2%91%A0",
@@ -1556,7 +1556,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-destroy-started-slot%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A1%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-destroy-started-slot%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-lose-the-device%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A0%E2%91%A1",
@@ -1993,9 +1993,9 @@
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A2%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-pending_map-slot%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-unmap%E2%91%A0%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-gpubuffer-internal-state-unavailable%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-initialize-an-active-buffer-mapping%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-pending_map-slot%E2%91%A4",
@@ -2008,8 +2008,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A2%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-pending_map-slot%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-unmap%E2%91%A0%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-pending_map-slot%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-reject%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-aborterror",
@@ -2092,7 +2092,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A3%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A1%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-internal-state-slot%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-gpubuffer-internal-state-unavailable%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-queue-timeline%E2%91%A8",
@@ -2769,7 +2769,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gputextureviewdescriptor%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A4%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-format%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-resolving-gputextureaspect%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexture-format%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-aspect%E2%91%A4",
@@ -2777,12 +2777,12 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexture-format%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-format%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-miplevelcount%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-miplevelcount%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexture-miplevelcount%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-basemiplevel%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-dimension%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexture-dimension%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturedimension-1d%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-dimension%E2%91%A5",
@@ -2797,7 +2797,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-dimension%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-3d%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-arraylayercount%E2%91%A0%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-dimension%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-1d%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-2d%E2%91%A3",
@@ -3282,31 +3282,31 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#dom-gpubindgrouplayoutentry-buffer",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubufferbindinglayout%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-binding-resource-type",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A0%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubufferbinding%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#dom-gpubindgrouplayoutentry-sampler",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpusamplerbindinglayout%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-binding-resource-type%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-gpusampler%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#dom-gpubindgrouplayoutentry-texture",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gputexturebindinglayout%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-binding-resource-type%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview%E2%91%A0%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#dom-gpubindgrouplayoutentry-storagetexture",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpustoragetexturebindinglayout%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-binding-resource-type%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#dom-gpubindgrouplayoutentry-externaltexture",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpuexternaltexturebindinglayout%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-binding-resource-type%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuexternaltexture%E2%91%A0%E2%91%A6",
@@ -3407,16 +3407,16 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-read-only-storage%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxstoragebufferspershaderstage%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-sampler%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxsamplerspershaderstage%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-texture%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxsampledtexturespershaderstage%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxstoragetexturespershaderstage%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-externaltexture%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxsampledtexturespershaderstage%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxsamplerspershaderstage%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxuniformbufferspershaderstage%E2%91%A1",
@@ -3529,7 +3529,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A1%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutdescriptor-entries%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-sec-returnifabrupt-shorthands%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validate-texture-format-required-features%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A4",
@@ -3556,16 +3556,20 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-sampler%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-texture%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-visibility%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-namespacedef-gpushaderstage%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-visibility%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpushaderstage-vertex%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A0%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A0%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-type%E2%91%A0%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-uniform%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-read-only-storage%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-access%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-read-only%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-texture%E2%91%A4",
@@ -3576,21 +3580,21 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-texture%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturebindinglayout-sampletype%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturesampletype-float%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-viewdimension%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-cube%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-cube-array%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-format%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-format%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-access%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayout-descriptor-slot",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayout-dynamicoffsetcount-slot",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A0%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A0%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-hasdynamicoffset%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayout-exclusivepipeline-slot",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A2%E2%91%A0",
@@ -3643,12 +3647,12 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroup-layout-slot",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayout-entrymap-slot%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroupentry-binding%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A0%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroupentry-resource",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubufferbinding%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-hasdynamicoffset%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-offset%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-set-append",
@@ -3713,7 +3717,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-buffer%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#dom-gpubufferbinding-size",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpusize64%E2%91%A0%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-offset%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-buffer%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#dom-gpudevice-createbindgroup",
@@ -3777,14 +3781,14 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturebindinglayout-multisampled%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturedescriptor-samplecount%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturedescriptor-samplecount%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-texture-slot%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-viewdimension%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-dimension%E2%91%A0%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-format%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-descriptor-slot%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-format%E2%91%A0%E2%91%A3",
@@ -3793,18 +3797,18 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureusage-storage_binding%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-descriptor-slot%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-miplevelcount%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubufferbinding%E2%91%A0%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-buffer%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-offset%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-size%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-effective-buffer-binding-size",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-minbindingsize%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-minbindingsize%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-type%E2%91%A0%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-uniform%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-uniform%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-buffer%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferdescriptor-usage%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferusage-uniform%E2%91%A2",
@@ -3812,7 +3816,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxuniformbufferbindingsize%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-offset%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-minuniformbufferoffsetalignment%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-read-only-storage%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-buffer%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferdescriptor-usage%E2%91%A0%E2%93%AA",
@@ -3837,14 +3841,14 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroup-usedresources-slot%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroupentry-prevalidatedsize-slot",
"https://gpuweb.github.io/gpuweb/#ref-for-binding-member%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-minbindingsize%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#abstract-opdef-effective-buffer-binding-size",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubufferbinding%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpusize64%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-size%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-buffer%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-size%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-offset%E2%91%A7",
@@ -3858,7 +3862,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-offset%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-size%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-size%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#gpupipelinelayout",
"https://gpuweb.github.io/gpuweb/#pipeline-layout",
"https://gpuweb.github.io/gpuweb/#ref-for-gpupipelinelayout%E2%91%A2%E2%91%A2",
@@ -4317,7 +4321,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpuprogrammablestage",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpushaderstageflags%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-get-the-entry-point",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-statically-used",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A2%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-binding%E2%91%A6",
@@ -4334,8 +4338,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-type%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-read-only-storage%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-type%E2%91%A0%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gputexturebindinglayout%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturebindinglayout-sampletype%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturesampletype-depth%E2%91%A1",
@@ -4360,16 +4364,16 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-write-only%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-access%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-read-write%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-binding%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-visibility%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-visibility%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-visibility%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-minbindingsize%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-minbindingsize%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-minbindingsize%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A1%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-minbindingsize%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-minbindingsize%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-texture%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturebindinglayout-sampletype%E2%91%A8",
@@ -4442,7 +4446,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpuprogrammablestage%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A6%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuprogrammablestage-entrypoint%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuprogrammablestage-module%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuprogrammablestage-entrypoint%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuprogrammablestage-module%E2%91%A3",
@@ -4477,7 +4481,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-statically-used%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-pipeline-overridable-constant-default-value",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuprogrammablestage-constants%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-pipeline-creation-error",
"https://gpuweb.github.io/gpuweb/#ref-for-program-error%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-shader-binding",
@@ -4486,13 +4490,13 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A2%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-binding%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-binding-member%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-type%E2%91%A0%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-uniform%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-uniform%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-read-only-storage%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-minbindingsize%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-minimum-buffer-binding-size%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-sampler%E2%91%A8",
@@ -4525,19 +4529,19 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-cube%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-cube-array%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-3d%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-viewdimension%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-1d%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-2d%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-2d-array%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-3d%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-access%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-write-only%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-read-only%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-read-write%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A0%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-format%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#minimum-buffer-binding-size",
"https://gpuweb.github.io/gpuweb/#ref-for-store-type",
@@ -4553,9 +4557,9 @@
"https://gpuweb.github.io/gpuweb/#ref-for-pipeline%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-gpucomputepassencoder%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-gpupipelinelayout%E2%91%A1%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A1%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-write-only%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-read-write%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-pipeline%E2%91%A5",
@@ -4605,7 +4609,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-get-the-entry-point%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpushaderstage-compute%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepipelinedescriptor-compute%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-roundup",
"https://gpuweb.github.io/gpuweb/#ref-for-sizeof%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-address-spaces-workgroup%E2%91%A0",
@@ -4683,10 +4687,10 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpucolortargetstate",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpudepthstencilstate",
"https://gpuweb.github.io/gpuweb/#ref-for-pipeline%E2%91%A0%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-type%E2%91%A0%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A1%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A1%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-access%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-write-only%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetextureaccess-read-write%E2%91%A6",
@@ -4752,7 +4756,7 @@
"https://gpuweb.github.io/gpuweb/#dom-gpurenderpipelinedescriptor-fragment",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpufragmentstate%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-pipeline%E2%91%A0%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#dom-gpudevice-createrenderpipeline",
"https://gpuweb.github.io/gpuweb/#ref-for-gpurenderpipeline%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-immediate-pipeline-creation%E2%91%A0",
@@ -4764,7 +4768,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpurenderpipeline%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A5%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-list-iterate",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpufragmentstate-targets%E2%91%A1",
@@ -4773,7 +4777,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-format",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A2%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-depthstencil%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A1%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-sec-returnifabrupt-shorthands%E2%91%A1%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validate-texture-format-required-features%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-depthstencil%E2%91%A1",
@@ -4788,16 +4792,16 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpupipelinedescriptorbase-layout%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuautolayoutmode-auto%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpupipelinedescriptorbase-layout%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A0%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gpurenderpipelinedescriptor",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-vertex%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpupipelinelayout-bindgrouplayouts-slot%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A2%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-limits-slot%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxbindgroupsplusvertexbuffers%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-vertex%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-pipeline-creation-error%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-uncategorized-error%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-an-internal-error%E2%91%A3",
@@ -4808,7 +4812,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipeline-writesstencil-slot",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-depthstencil%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-depthwriteenabled",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipeline-writesdepth-slot%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-depthwriteenabled%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-stencilwritemask",
@@ -4870,7 +4874,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpupipelineerrorinit-reason%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpupipelineerrorreason-internal%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalid%E2%91%A1%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A5%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-reject%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-gpupipelineerror%E2%91%A0%E2%91%A0",
@@ -4884,7 +4888,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gpuvertexstate",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-vertex%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gpufragmentstate",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-built-in-values-sample_mask",
@@ -4896,14 +4900,14 @@
"https://gpuweb.github.io/gpuweb/#ref-for-shader-stage-output%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-depthstencil%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-depthstencil%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-format%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-aspect-depth%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gpuprimitivestate",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-primitive%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-depthstencil%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gpudepthstencilstate",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-depthstencil%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-primitive%E2%91%A2",
@@ -4913,7 +4917,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-multisample%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpumultisamplestate-alphatocoverageenabled%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpufragmentstate-targets%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-list-contain%E2%91%A1",
@@ -4943,7 +4947,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-input-output-locations",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-vertex%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A0%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxinterstageshadervariables%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-built-in-values",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A0%E2%91%A2",
@@ -4952,7 +4956,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-input-output-locations%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-interpolation",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A0%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-input-output-locations%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxinterstageshadervariables%E2%91%A2",
@@ -5000,7 +5004,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuprimitivetopology-line-strip%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuprimitivetopology-triangle-strip%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuprimitivestate-stripindexformat%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuprimitivestate-unclippeddepth%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-depth-clip-control%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-enabled-for",
@@ -5085,6 +5089,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gpuprogrammablestage%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpushaderstage-fragment%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpufragmentstate-targets%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-limits-slot%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxcolorattachments",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-get-the-entry-point%E2%91%A3",
@@ -5096,7 +5101,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureusage-render_attachment%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-writemask",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-blend",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-format%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-blendable%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-blend%E2%91%A0",
@@ -5131,7 +5136,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturesampletype-sint%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturesampletype-uint%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-blend%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-blend%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpublendstate-color%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpublendcomponent-srcfactor%E2%91%A1",
@@ -5146,6 +5151,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-input-output-locations%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-input-output-locations%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpufragmentstate-targets%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-shader-stage-output%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-input-output-locations%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-use-dual-source-blending",
@@ -5378,7 +5384,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-depth-or-stencil-format%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-depthwriteenabled%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-depthcompare%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A2%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomparefunction-always%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-format%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-stencilfront%E2%91%A1",
@@ -5386,9 +5392,9 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-format%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-format%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-depthwriteenabled%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-depthcompare%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-depthwriteenabled%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-stencilfront%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustencilfacestate-depthfailop%E2%91%A1",
@@ -5504,6 +5510,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexformat-sint32x3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexformat-sint32x4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexformat-unorm10-10-10-2",
+ "https://gpuweb.github.io/gpuweb/#abstract-opdef-gpuvertexformat-bytesize",
"https://gpuweb.github.io/gpuweb/#dom-gpuvertexformat-uint8x2",
"https://gpuweb.github.io/gpuweb/#dom-gpuvertexformat-uint8x4",
"https://gpuweb.github.io/gpuweb/#dom-gpuvertexformat-sint8x2",
@@ -5601,14 +5608,17 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-attributes%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-arraystride%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-offset%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-gpuvertexformat-bytesize",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-format%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A3%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-limits-slot%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxvertexbufferarraystride%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-offset%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-gpuvertexformat-bytesize%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-format%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-arraystride%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-offset%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-gpuvertexformat-bytesize%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-format%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-shaderlocation%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A3%E2%91%A1",
@@ -5616,7 +5626,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxvertexattributes",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-get-the-entry-point%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpushaderstage-vertex%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-statically-used%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-attributes%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-format%E2%91%A4",
@@ -5630,12 +5640,14 @@
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gpuprogrammablestage%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpushaderstage-vertex%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A3%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-limits-slot%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxvertexbuffers%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gpuvertexbufferlayout",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-attributes%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A3%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-limits-slot%E2%91%A0%E2%91%A3",
@@ -5774,7 +5786,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuimagecopytexture-texture%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexture-dimension%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturedimension-1d%E2%91%A0%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturedimension-2d%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexturedimension-3d%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuimagecopytexture-miplevel%E2%91%A0",
@@ -5944,10 +5956,10 @@
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A8%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-width%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-texel-block-width%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-height%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-texel-block-height%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-texel-block-copy-footprint%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuimagedatalayout-bytesperrow%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-depthorarraylayers%E2%91%A0%E2%91%A3",
@@ -6060,7 +6072,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-encoder-state-open%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#encoder-state-ended",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-the-encoder-state",
"https://gpuweb.github.io/gpuweb/#ref-for-gpucommandsmixin%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A8%E2%91%A6",
@@ -6069,7 +6081,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-encoder-state-locked",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-encoder-state-ended",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#abstract-opdef-enqueue-a-command",
"https://gpuweb.github.io/gpuweb/#ref-for-gpucommandsmixin%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-gpu-command%E2%91%A5",
@@ -6174,7 +6186,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpucommandencoder%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A8%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%93%AA%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalid%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#example-ee4e6506",
@@ -6192,6 +6204,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A6%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-colorattachments%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-clearvalue",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-sec-returnifabrupt-shorthands%E2%91%A2%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validate-gpucolor-shape",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-clearvalue%E2%91%A0",
@@ -6219,7 +6232,6 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurendercommandsmixin-usage-scope-slot",
"https://gpuweb.github.io/gpuweb/#ref-for-internal-usage-attachment%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-depthstencilattachment%E2%91%A0%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-view%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-usage-scope-add%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-aspect-depth%E2%91%A2",
@@ -6242,10 +6254,10 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurendercommandsmixin-layout-slot",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-derive-render-targets-layout-from-pass",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-timestampwrites",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-timestampwrites%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasstimestampwrites-beginningofpasswriteindex",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-list-append%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-gpu-command%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucommandsmixin-commands-slot%E2%91%A0",
@@ -6253,7 +6265,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasstimestampwrites-beginningofpasswriteindex%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasstimestampwrites-queryset",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasstimestampwrites-endofpasswriteindex",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassencoder-endtimestampwrite-slot",
"https://gpuweb.github.io/gpuweb/#ref-for-gpu-command%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-current-queue-timestamp%E2%91%A1",
@@ -6290,8 +6302,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-framebuffer-memory%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-clearvalue%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthloadop",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthreadonly%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-aspect-depth%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview-subresources",
@@ -6307,8 +6319,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview-subresources%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthclearvalue%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-stencilloadop",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-stencilreadonly%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-aspect-stencil%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview-subresources%E2%91%A2",
@@ -6342,15 +6354,15 @@
"https://gpuweb.github.io/gpuweb/#ref-for-encoder-state-locked%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepassdescriptor-timestampwrites",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validate-timestampwrites",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A3%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepassdescriptor-timestampwrites%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepassdescriptor-timestampwrites%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A3%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepassdescriptor-timestampwrites%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepasstimestampwrites-beginningofpasswriteindex",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-list-append%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-gpu-command%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucommandsmixin-commands-slot%E2%91%A1",
@@ -6358,7 +6370,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepasstimestampwrites-beginningofpasswriteindex%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepasstimestampwrites-queryset",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepasstimestampwrites-endofpasswriteindex",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepassencoder-endtimestampwrite-slot",
"https://gpuweb.github.io/gpuweb/#ref-for-gpu-command%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-current-queue-timestamp%E2%91%A3",
@@ -6475,7 +6487,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpuorigin3d-y%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-width%E2%91%A1%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-height%E2%91%A1%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-depthorarraylayers%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-texture-copy-sub-region",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuorigin3d-z%E2%91%A2",
@@ -6530,7 +6542,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpuorigin3d-y%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-width%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-height%E2%91%A1%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-depthorarraylayers%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-texture-copy-sub-region%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuorigin3d-z%E2%91%A3",
@@ -6603,7 +6615,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpuorigin3d-y%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-width%E2%91%A1%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-height%E2%91%A1%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-depthorarraylayers%E2%91%A1%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-texture-copy-sub-region%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuorigin3d-z%E2%91%A4",
@@ -6667,7 +6679,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-list-is-empty",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucommandsmixin-state-slot%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-encoder-state-ended%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A2%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-gpucommandbuffer%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucommandbuffer-command_list-slot",
@@ -6723,7 +6735,7 @@
"https://gpuweb.github.io/gpuweb/#dom-gpubindingcommandsmixin-setbindgroup-index-bindgroup-dynamicoffsets-dynamicoffsets",
"https://gpuweb.github.io/gpuweb/#ref-for-idl-sequence%E2%91%A0%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpubufferdynamicoffset%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-hasdynamicoffset%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-idl-undefined%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A2%E2%91%A7",
@@ -6741,6 +6753,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A4%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-limits-slot%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxbindgroups%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-map-remove",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindingcommandsmixin-bind_groups-slot%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-map-remove%E2%91%A0",
@@ -6753,10 +6766,10 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-buffer%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-size%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-type%E2%91%A0%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-uniform%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-uniform%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-minuniformbufferoffsetalignment%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-type%E2%91%A0%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-read-only-storage%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-minstoragebufferoffsetalignment%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindingcommandsmixin-bind_groups-slot%E2%91%A1",
@@ -6777,7 +6790,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpubindgroup%E2%91%A2%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#dom-gpubindingcommandsmixin-setbindgroup-index-bindgroup-dynamicoffsetsdata-dynamicoffsetsdatastart-dynamicoffsetsdatalength-dynamicoffsetsdata",
"https://gpuweb.github.io/gpuweb/#ref-for-idl-Uint32Array%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-hasdynamicoffset%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#dom-gpubindingcommandsmixin-setbindgroup-index-bindgroup-dynamicoffsetsdata-dynamicoffsetsdatastart-dynamicoffsetsdatalength-dynamicoffsetsdatastart",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpusize64%E2%91%A3%E2%91%A0",
@@ -6799,10 +6812,10 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A3%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayout-entrymap-slot%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroupentry-binding%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-hasdynamicoffset%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroupentry-resource%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-encoder-bind-groups",
"https://gpuweb.github.io/gpuweb/#ref-for-gpubindingcommandsmixin%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-gpupipelinebase%E2%91%A0%E2%93%AA",
@@ -6821,12 +6834,12 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroup-layout-slot%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayout-entrymap-slot%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroupentry-binding%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A2%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A3%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroupentry-resource%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubufferbinding%E2%91%A0%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A3%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A3%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-hasdynamicoffset%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbinding-offset%E2%91%A0%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgroupentry-prevalidatedsize-slot%E2%91%A0",
@@ -6861,9 +6874,9 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A3%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubufferbinding%E2%91%A0%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-visibility%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A3%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-buffer%E2%91%A3%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindinglayout-type%E2%91%A0%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubufferbinding%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-idl-boolean%E2%91%A2%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-buffer-binding-aliasing",
@@ -6871,10 +6884,10 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubindgrouplayoutentry%E2%91%A3%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview%E2%91%A1%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-visibility%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A1%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-access%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A1%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindgrouplayoutentry-storagetexture%E2%91%A1%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpustoragetexturebindinglayout-access%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview%E2%91%A1%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-idl-boolean%E2%91%A2%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-texture-view-aliasing",
@@ -7112,7 +7125,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A5%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A2%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassencoder-command_encoder-slot",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucommandsmixin-state-slot%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-encoder-state-open%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucommandsmixin-state-slot%E2%91%A5",
@@ -7284,18 +7297,19 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpudevice%E2%91%A5%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpurenderpassdescriptor%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-colorattachments%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-limits-slot%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxcolorattachments%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-colorattachments%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-view%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-resolvetarget%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-resolvetarget%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A1%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-gpurenderpasscolorattachment-gpurenderpasscolorattachment-valid-usage",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-depthstencilattachment%E2%91%A0%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-depthstencilattachment%E2%91%A0%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-view%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A1%E2%91%A2",
@@ -7316,13 +7330,14 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-view%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-renderextent-slot%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-occlusionqueryset%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-occlusionqueryset%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-occlusionqueryset%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuqueryset-type",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuquerytype-occlusion",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-timestampwrites%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validate-timestampwrites%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-timestampwrites%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpurenderpassdescriptors-color-attachment-bytes-per-sample",
@@ -7369,7 +7384,7 @@
"https://gpuweb.github.io/gpuweb/#dom-gpurenderpasscolorattachment-clearvalue",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpucolor%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-view%E2%91%A0%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-loadop%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuloadop-clear%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-clearvalue%E2%91%A3",
@@ -7385,12 +7400,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpurenderpasscolorattachment%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-view%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-descriptor-slot%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-resolvetarget%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-descriptor-slot%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-view%E2%91%A0%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-texture-slot%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-resolvetarget%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-texture-slot%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-format%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-color-renderable-format",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-view%E2%91%A0%E2%91%A4",
@@ -7398,22 +7409,26 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-dimension%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdimension-3d%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-depthslice%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-depthorarraylayers%E2%91%A1%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-logical-miplevel-specific-texture-extent%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-subresource%E2%91%A0%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-mipmap-level%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-basemiplevel%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-depthslice%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A4%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-loadop%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuloadop-clear%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-clearvalue%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-to-a-texel-value-of-texture-format%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureviewdescriptor-format%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-resolvetarget%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-resolvetarget%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-descriptor-slot%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-resolvetarget%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-texture-slot%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexture-samplecount%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexture-samplecount%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasscolorattachment-resolvetarget%E2%91%A7",
@@ -7446,7 +7461,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-idl-sequence%E2%91%A0%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-enumdef-gputextureformat%E2%91%A2%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpusize32%E2%91%A5%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-color-renderable-format%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-render-target-pixel-byte-cost",
"https://gpuweb.github.io/gpuweb/#ref-for-render-target-component-alignment",
@@ -7517,25 +7532,25 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthloadop%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuloadop-clear%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthclearvalue%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthreadonly%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthloadop%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthstoreop%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthloadop%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthstoreop%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-stencilreadonly%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-stencilloadop%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-stencilstoreop%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-stencilloadop%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-stencilstoreop%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A5%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#load-and-store-ops",
"https://gpuweb.github.io/gpuweb/#enumdef-gpuloadop",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuloadop-load%E2%91%A4",
@@ -7596,7 +7611,6 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-colorformats%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-colorformats%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdescriptor-depthstencilattachment%E2%91%A1%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-view%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-samplecount%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputextureview-texture-slot%E2%91%A7",
@@ -7613,12 +7627,12 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-multisample%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpumultisamplestate-count%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-depthstencil%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-depthstencilformat%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-depthstencil%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudepthstencilstate-format%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A0%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-fragment%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpufragmentstate-targets%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-format%E2%91%A7",
@@ -7634,7 +7648,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A5%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A3%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassencoder-command_encoder-slot%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucommandsmixin-state-slot%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-encoder-state-open%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucommandsmixin-state-slot%E2%91%A0%E2%93%AA",
@@ -7678,8 +7692,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-texel-block%E2%91%A1%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-renderstate-depthstencilattachment-slot%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthloadop%E2%91%A5",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-depthreadonly%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-aspect-depth%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview-subresources%E2%91%A5",
@@ -7692,8 +7706,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-aspect-depth%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview-subresources%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-stencilloadop%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpassdepthstencilattachment-stencilreadonly%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-aspect-stencil%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-gputextureview-subresources%E2%91%A8",
@@ -7935,11 +7949,13 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-vertex%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpuindex32%E2%91%A0%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-iteration-continue",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurendercommandsmixin-vertex_buffer_sizes-slot%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-arraystride%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-attributes%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-offset%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-gpuvertexformat-bytesize%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-format%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-list-empty",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-stepmode%E2%91%A0",
@@ -7977,10 +7993,12 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-vertex%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpuindex32%E2%91%A0%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-iteration-continue%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurendercommandsmixin-vertex_buffer_sizes-slot%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-arraystride%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-offset%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-gpuvertexformat-bytesize%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-format%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-attributes%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-stepmode%E2%91%A1",
@@ -7989,6 +8007,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-enqueue-a-render-command%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-queue-timeline%E2%91%A3%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-queue-timeline%E2%91%A3%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-enumdef-gpuvertexstepmode%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstepmode-vertex%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-invalid-memory-reference",
"https://gpuweb.github.io/gpuweb/#dom-gpurendercommandsmixin-drawindirect",
@@ -8073,10 +8092,11 @@
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpuindex32%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-vertex%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A0%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpipelinedescriptor-vertex%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A0%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurendercommandsmixin-vertex_buffers-slot%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxbindgroupsplusvertexbuffers%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubindingcommandsmixin-bind_groups-slot%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurendercommandsmixin-vertex_buffers-slot%E2%91%A2",
@@ -8341,19 +8361,22 @@
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validate-texture-format-required-features%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-colorformats%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A7%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-depthstencilformat%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-sec-returnifabrupt-shorthands%E2%91%A3%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validate-texture-format-required-features%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-depthstencilformat%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-depthstencilformat%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A7%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-sec-returnifabrupt-shorthands%E2%91%A3%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-create-a-new-webgpu-object%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-gpurenderbundleencoder%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A6%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A6%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A4%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalid%E2%91%A1%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-colorformats%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A0%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-limits-slot%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxcolorattachments%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-colorformats%E2%91%A7",
@@ -8362,12 +8385,12 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-colorformats%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-device-limits-slot%E2%91%A1%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-supported-limits-maxcolorattachmentbytespersample%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-depthstencilformat%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-depthstencilformat%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A7%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-depthstencilformat%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-depth-or-stencil-format%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-colorformats%E2%91%A0%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-depthstencilformat%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderpasslayout-depthstencilformat%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurendercommandsmixin-layout-slot%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpurenderpasslayout%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurendercommandsmixin-depthreadonly-slot%E2%91%A2",
@@ -8413,7 +8436,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-list-is-empty%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucommandsmixin-state-slot%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-encoder-state-ended%E2%91%A3",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A4%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-gpurenderbundle%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurenderbundle-command_list-slot%E2%91%A0",
@@ -8498,7 +8521,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dfn-get-buffer-source-copy%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A7%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A7%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A2%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubuffer-internal-state-slot%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-gpubuffer-internal-state-available%E2%91%A3",
@@ -8531,7 +8554,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A7%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A7%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-byte-sequence-length",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A2%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A1%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuimagecopytexture-texture%E2%91%A1%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexture-destroyed-slot%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-texture-buffer-copy%E2%91%A1",
@@ -8551,7 +8574,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpuorigin3d-y%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-width%E2%91%A1%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-height%E2%91%A1%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-depthorarraylayers%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-texture-copy-sub-region%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-gpuorigin3d-z%E2%91%A6",
@@ -8599,7 +8622,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A7%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A7%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuimagecopytexture-texture%E2%91%A1%E2%91%A8",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A2%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A2%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gputexture-destroyed-slot%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A2%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gpuimagecopytexture%E2%91%A2",
@@ -8627,7 +8650,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-gpuextent3d-depthorarraylayers%E2%91%A1%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-queue-timeline%E2%91%A5%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-queue-timeline%E2%91%A5%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%93%AA",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A1%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-texel-block-width%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuimagecopytexture-texture%E2%91%A2%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-texel-block-height%E2%91%A0%E2%91%A1",
@@ -8660,7 +8683,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A0%E2%93%AA%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A7%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A7%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A2%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A2%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A4%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-gpucommandbuffer%E2%91%A1%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-gpucommandbuffer%E2%91%A1%E2%91%A4",
@@ -8764,7 +8787,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuquerysetdescriptor-count%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A8%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A8%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A2%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A2%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalidate%E2%91%A4%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-invalid%E2%91%A1%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuquerysetdescriptor-count%E2%91%A1",
@@ -8823,8 +8846,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-valid-to-use-with%E2%91%A2%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuqueryset-type%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuquerytype-timestamp%E2%91%A2",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A7",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A7%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A7%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuqueryset-count%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#canvas-rendering",
"https://gpuweb.github.io/gpuweb/#canvas-getcontext",
@@ -8921,7 +8944,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucanvascontext-drawingbuffer-slot%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A8%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-device-timeline%E2%91%A0%E2%91%A8%E2%91%A6",
- "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A2%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-generate-a-validation-error%E2%91%A2%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-validating-gputexturedescriptor%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-supported-context-formats",
"https://gpuweb.github.io/gpuweb/#ref-for-list-contain%E2%91%A3",
@@ -8946,7 +8969,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A0%E2%91%A0%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-invalidstateerror",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A0",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucanvascontext-texturedescriptor-slot%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucanvasconfiguration-device%E2%91%A0",
@@ -9368,7 +9391,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-resolve%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpudevice-errorscopestack-slot%E2%91%A4",
- "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-reject%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-operationerror%E2%91%A5",
@@ -9432,7 +9455,9 @@
"https://gpuweb.github.io/gpuweb/#detailed-operations",
"https://gpuweb.github.io/gpuweb/#issue-96bfad03",
"https://gpuweb.github.io/gpuweb/#computing-operations",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpubufferbindinglayout%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-enumdef-gpubufferbindingtype%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpustoragetexturebindinglayout%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-gpucomputepassencoder%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomputepassencoder-dispatchworkgroups%E2%91%A0%E2%93%AA",
@@ -9500,7 +9525,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferusage-indirect%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpuvertexstate%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-gpurendercommandsmixin%E2%91%A1%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-enumdef-gpubufferbindingtype%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexstate-buffers%E2%91%A0%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpurendercommandsmixin-vertex_buffers-slot%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-stepmode%E2%91%A2",
@@ -9509,6 +9535,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-attributes%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexbufferlayout-arraystride%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-offset%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-abstract-opdef-gpuvertexformat-bytesize%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuvertexattribute-format%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-implementation-defined%E2%91%A0%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#ref-for-list-empty%E2%91%A1",
@@ -9770,7 +9797,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-aspect%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-enumdef-gpucomparefunction%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucomparefunction-always%E2%91%A1",
- "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-enumdef-gpubufferbindingtype%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-dom-gpubufferbindingtype-storage%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#output-merging",
"https://gpuweb.github.io/gpuweb/#ref-for-pipeline%E2%91%A1%E2%93%AA",
"https://gpuweb.github.io/gpuweb/#abstract-opdef-process-depth-stencil",
@@ -9808,7 +9836,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-dom-renderstate-colorattachments-slot%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-fragment-colors%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-blend%E2%91%A0%E2%93%AA",
- "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A6%E2%91%A8",
+ "https://gpuweb.github.io/gpuweb/#ref-for-map-exists%E2%91%A7%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-blend%E2%91%A0%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpublendstate-color%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolortargetstate-blend%E2%91%A0%E2%91%A1",
@@ -9901,24 +9929,25 @@
"https://gpuweb.github.io/gpuweb/#gpucolor-r",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpucolordict%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolordict-r%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A1",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A0",
"https://gpuweb.github.io/gpuweb/#gpucolor-g",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpucolordict%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolordict-g%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A2",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#gpucolor-b",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpucolordict%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolordict-b%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A2",
"https://gpuweb.github.io/gpuweb/#gpucolor-a",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpucolordict%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpucolordict-a%E2%91%A0",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-gpucolor-shape",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpucolor%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-idl-undefined%E2%91%A7%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A0%E2%91%A3",
"https://gpuweb.github.io/gpuweb/#dictdef-gpuorigin2ddict",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpuintegercoordinate%E2%91%A1%E2%91%A1",
"https://gpuweb.github.io/gpuweb/#dom-gpuorigin2ddict-x",
@@ -9940,6 +9969,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-idl-undefined%E2%91%A7%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A0%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#dictdef-gpuorigin3ddict",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpuintegercoordinate%E2%91%A1%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#dom-gpuorigin3ddict-x",
@@ -9966,6 +9996,7 @@
"https://gpuweb.github.io/gpuweb/#ref-for-idl-undefined%E2%91%A7%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A0%E2%91%A5",
"https://gpuweb.github.io/gpuweb/#dictdef-gpuextent3ddict",
"https://gpuweb.github.io/gpuweb/#ref-for-typedefdef-gpuintegercoordinate%E2%91%A1%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuextent3ddict-width%E2%91%A6",
@@ -9993,7 +10024,7 @@
"https://gpuweb.github.io/gpuweb/#gpuextent3d-width",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpuextent3ddict%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuextent3ddict-width%E2%91%A7",
- "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A5",
+ "https://gpuweb.github.io/gpuweb/#ref-for-assert%E2%91%A2%E2%91%A4",
"https://gpuweb.github.io/gpuweb/#gpuextent3d-height",
"https://gpuweb.github.io/gpuweb/#ref-for-dictdef-gpuextent3ddict%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-dom-gpuextent3ddict-height%E2%91%A7",
@@ -10005,6 +10036,8 @@
"https://gpuweb.github.io/gpuweb/#ref-for-idl-undefined%E2%91%A7%E2%91%A8",
"https://gpuweb.github.io/gpuweb/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A6",
"https://gpuweb.github.io/gpuweb/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A0%E2%91%A6",
+ "https://gpuweb.github.io/gpuweb/#ref-for-list-size%E2%91%A0%E2%91%A7",
"https://gpuweb.github.io/gpuweb/#feature-index",
"https://gpuweb.github.io/gpuweb/#depth-clip-control",
"https://gpuweb.github.io/gpuweb/#dom-gpufeaturename-depth-clip-control",
diff --git a/ed/index.json b/ed/index.json
index a9d6a4e229ce..21d32ec150a6 100644
--- a/ed/index.json
+++ b/ed/index.json
@@ -1,7 +1,7 @@
{
"type": "crawl",
"title": "Reffy crawl",
- "date": "2024-09-10T18:41:00.585Z",
+ "date": "2024-09-11T01:08:18.998Z",
"options": {
"fallback": "ed/index.json",
"output": "report",
@@ -671,7 +671,7 @@
},
"stats": {
"crawled": 640,
- "errors": 1
+ "errors": 13
},
"crawler": "reffy-17.2.5",
"results": [
@@ -762,11 +762,11 @@
],
"crawled": "https://aomediacodec.github.io/av1-avif/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 09:01:05 GMT"
+ "lastModified": "Tue, 10 Sep 2024 18:49:14 GMT"
},
"generator": "bikeshed",
"date": "25 June 2024",
- "revision": "aa906e00c9d8655a8b97718aa16d379970678663",
+ "revision": "96fe1743b499deca7634b5cc7092c2783eb47831",
"links": "links/av1-avif.json",
"refs": "refs/av1-avif.json",
"dfns": "dfns/av1-avif.json",
@@ -1493,7 +1493,8 @@
"links": "links/css-typed-om-2.json",
"refs": "refs/css-typed-om-2.json",
"headings": "headings/css-typed-om-2.json",
- "ids": "ids/css-typed-om-2.json"
+ "ids": "ids/css-typed-om-2.json",
+ "error": "Error: Loading https://drafts.css-houdini.org/css-typed-om-2/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)"
},
{
"url": "https://drafts.css-houdini.org/font-metrics-api-1/",
@@ -1543,7 +1544,8 @@
"idl": "idl/font-metrics-api.idl",
"dfns": "dfns/font-metrics-api-1.json",
"headings": "headings/font-metrics-api-1.json",
- "ids": "ids/font-metrics-api-1.json"
+ "ids": "ids/font-metrics-api-1.json",
+ "error": "Error: Loading https://drafts.css-houdini.org/font-metrics-api-1/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 16)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://drafts.csswg.org/css-backgrounds-4/",
@@ -1594,11 +1596,11 @@
],
"crawled": "https://drafts.csswg.org/css-backgrounds-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "18 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-backgrounds-4.json",
"refs": "refs/css-backgrounds-4.json",
"css": "css/css-backgrounds-4.json",
@@ -1654,11 +1656,11 @@
],
"crawled": "https://drafts.csswg.org/css-borders-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "25 December 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-borders-4.json",
"refs": "refs/css-borders-4.json",
"css": "css/css-borders.json",
@@ -1715,11 +1717,11 @@
],
"crawled": "https://drafts.csswg.org/css-color-6/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "14 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-color-6.json",
"refs": "refs/css-color-6.json",
"css": "css/css-color-6.json",
@@ -1767,11 +1769,11 @@
],
"crawled": "https://drafts.csswg.org/css-color-hdr/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "25 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-color-hdr.json",
"refs": "refs/css-color-hdr.json",
"css": "css/css-color-hdr.json",
@@ -1821,11 +1823,11 @@
],
"crawled": "https://drafts.csswg.org/css-conditional-values-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "21 February 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-conditional-values-1.json",
"refs": "refs/css-conditional-values-1.json",
"css": "css/css-conditional-values.json",
@@ -1882,11 +1884,11 @@
],
"crawled": "https://drafts.csswg.org/css-display-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "13 June 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-display-4.json",
"refs": "refs/css-display-4.json",
"css": "css/css-display.json",
@@ -1942,11 +1944,11 @@
],
"crawled": "https://drafts.csswg.org/css-env-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "30 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-env-1.json",
"links": "links/css-env-1.json",
"refs": "refs/css-env-1.json",
@@ -1997,11 +1999,11 @@
],
"crawled": "https://drafts.csswg.org/css-extensions-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-extensions-1.json",
"refs": "refs/css-extensions-1.json",
"css": "css/css-extensions.json",
@@ -2051,11 +2053,11 @@
],
"crawled": "https://drafts.csswg.org/css-forms-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "11 October 2017",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-forms-1.json",
"refs": "refs/css-forms-1.json",
"headings": "headings/css-forms-1.json",
@@ -2110,11 +2112,11 @@
],
"crawled": "https://drafts.csswg.org/css-gcpm-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-gcpm-4.json",
"refs": "refs/css-gcpm-4.json",
"css": "css/css-gcpm-4.json",
@@ -2171,11 +2173,11 @@
],
"crawled": "https://drafts.csswg.org/css-grid-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
- "date": "6 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "date": "10 September 2024",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-grid-3.json",
"links": "links/css-grid-3.json",
"refs": "refs/css-grid-3.json",
@@ -2233,11 +2235,11 @@
],
"crawled": "https://drafts.csswg.org/css-images-5/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-images-5.json",
"refs": "refs/css-images-5.json",
"css": "css/css-images-5.json",
@@ -2287,11 +2289,11 @@
],
"crawled": "https://drafts.csswg.org/css-link-params-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "7 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-link-params-1.json",
"refs": "refs/css-link-params-1.json",
"css": "css/css-link-params.json",
@@ -2341,11 +2343,11 @@
],
"crawled": "https://drafts.csswg.org/css-mixins-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "19 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-mixins-1.json",
"links": "links/css-mixins-1.json",
"refs": "refs/css-mixins-1.json",
@@ -2404,11 +2406,11 @@
],
"crawled": "https://drafts.csswg.org/css-multicol-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "5 October 2021",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-multicol-2.json",
"refs": "refs/css-multicol-2.json",
"css": "css/css-multicol-2.json",
@@ -2465,11 +2467,11 @@
],
"crawled": "https://drafts.csswg.org/css-overflow-5/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "30 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-overflow-5.json",
"links": "links/css-overflow-5.json",
"refs": "refs/css-overflow-5.json",
@@ -2527,11 +2529,11 @@
],
"crawled": "https://drafts.csswg.org/css-page-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "12 May 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-page-4.json",
"refs": "refs/css-page-4.json",
"dfns": "dfns/css-page-4.json",
@@ -2587,11 +2589,11 @@
],
"crawled": "https://drafts.csswg.org/css-position-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "30 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-position-4.json",
"links": "links/css-position-4.json",
"refs": "refs/css-position-4.json",
@@ -2649,11 +2651,11 @@
],
"crawled": "https://drafts.csswg.org/css-shapes-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "1 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-shapes-2.json",
"refs": "refs/css-shapes-2.json",
"css": "css/css-shapes-2.json",
@@ -2709,11 +2711,11 @@
],
"crawled": "https://drafts.csswg.org/css-size-adjust-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-size-adjust-1.json",
"refs": "refs/css-size-adjust-1.json",
"css": "css/css-size-adjust.json",
@@ -2770,11 +2772,11 @@
],
"crawled": "https://drafts.csswg.org/css-variables-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "27 February 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-variables-2.json",
"links": "links/css-variables-2.json",
"refs": "refs/css-variables-2.json",
@@ -2832,11 +2834,11 @@
],
"crawled": "https://drafts.csswg.org/selectors-5/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "13 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/selectors-5.json",
"refs": "refs/selectors-5.json",
"css": "css/selectors-5.json",
@@ -2961,7 +2963,8 @@
"css": "css/filter-effects-2.json",
"dfns": "dfns/filter-effects-2.json",
"headings": "headings/filter-effects-2.json",
- "ids": "ids/filter-effects-2.json"
+ "ids": "ids/filter-effects-2.json",
+ "error": "Error: Loading https://drafts.fxtf.org/filter-effects-2/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 40)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://encoding.spec.whatwg.org/",
@@ -4264,11 +4267,11 @@
],
"crawled": "https://privacycg.github.io/storage-access/",
"crawlCacheInfo": {
- "lastModified": "Mon, 09 Sep 2024 16:03:42 GMT"
+ "lastModified": "Tue, 10 Sep 2024 21:58:02 GMT"
},
"generator": "bikeshed",
- "date": "9 September 2024",
- "revision": "3d7c161193e1f8e5a6250a0d835b3abbd7a7ef0b",
+ "date": "10 September 2024",
+ "revision": "185f6025d36a6326a047b8cdc08f659d85791214",
"algorithms": "algorithms/storage-access.json",
"links": "links/storage-access.json",
"refs": "refs/storage-access.json",
@@ -11578,11 +11581,11 @@
],
"crawled": "https://wicg.github.io/idle-detection/",
"crawlCacheInfo": {
- "lastModified": "Tue, 11 Jul 2023 21:23:10 GMT"
+ "lastModified": "Tue, 10 Sep 2024 20:10:58 GMT"
},
"generator": "bikeshed",
- "date": "11 July 2023",
- "revision": "3537859c8226d3a328c421b6a2802135a274be6b",
+ "date": "10 September 2024",
+ "revision": "6c7be3c59497fffd9442561286e9e95cafc1bed7",
"algorithms": "algorithms/idle-detection.json",
"links": "links/idle-detection.json",
"refs": "refs/idle-detection.json",
@@ -13512,11 +13515,11 @@
],
"crawled": "https://wicg.github.io/shared-storage/",
"crawlCacheInfo": {
- "lastModified": "Fri, 06 Sep 2024 19:59:47 GMT"
+ "lastModified": "Tue, 10 Sep 2024 20:10:37 GMT"
},
"generator": "bikeshed",
- "date": "6 September 2024",
- "revision": "83525617fdd9d760193bf3a41a630de5b76bc947",
+ "date": "10 September 2024",
+ "revision": "4bf9007b5e7080735af3f5e2b3ce4f22735623e7",
"algorithms": "algorithms/shared-storage.json",
"links": "links/shared-storage.json",
"refs": "refs/shared-storage.json",
@@ -17671,11 +17674,11 @@
],
"crawled": "https://drafts.csswg.org/css-2022/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-2022.json",
"refs": "refs/css-2022.json",
"dfns": "dfns/css-2022.json",
@@ -17731,11 +17734,11 @@
],
"crawled": "https://drafts.csswg.org/css-2023/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "11 December 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-2023.json",
"refs": "refs/css-2023.json",
"dfns": "dfns/css-2023.json",
@@ -17797,11 +17800,11 @@
],
"crawled": "https://drafts.csswg.org/css-align-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "30 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-align-3.json",
"links": "links/css-align-3.json",
"refs": "refs/css-align-3.json",
@@ -17859,11 +17862,11 @@
],
"crawled": "https://drafts.csswg.org/css-anchor-position-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "4 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-anchor-position-1.json",
"links": "links/css-anchor-position-1.json",
"refs": "refs/css-anchor-position-1.json",
@@ -17935,7 +17938,8 @@
"idl": "idl/css-animation-worklet.idl",
"dfns": "dfns/css-animation-worklet-1.json",
"headings": "headings/css-animation-worklet-1.json",
- "ids": "ids/css-animation-worklet-1.json"
+ "ids": "ids/css-animation-worklet-1.json",
+ "error": "Error: Loading https://drafts.css-houdini.org/css-animationworklet-1/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 325)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://www.w3.org/TR/css-animations-1/",
@@ -17993,11 +17997,11 @@
],
"crawled": "https://drafts.csswg.org/css-animations-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "8 December 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-animations-1.json",
"refs": "refs/css-animations-1.json",
"events": "events/css-animations-1.json",
@@ -18062,11 +18066,11 @@
],
"crawled": "https://drafts.csswg.org/css-animations-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "17 May 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-animations-2.json",
"links": "links/css-animations-2.json",
"refs": "refs/css-animations-2.json",
@@ -18132,11 +18136,11 @@
],
"crawled": "https://drafts.csswg.org/css-backgrounds-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "13 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-backgrounds-3.json",
"links": "links/css-backgrounds-3.json",
"refs": "refs/css-backgrounds-3.json",
@@ -18201,11 +18205,11 @@
],
"crawled": "https://drafts.csswg.org/css-box-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "4 April 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-box-3.json",
"refs": "refs/css-box-3.json",
"dfns": "dfns/css-box-3.json",
@@ -18267,11 +18271,11 @@
],
"crawled": "https://drafts.csswg.org/css-box-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "4 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-box-4.json",
"refs": "refs/css-box-4.json",
"css": "css/css-box.json",
@@ -18335,11 +18339,11 @@
],
"crawled": "https://drafts.csswg.org/css-break-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-break-3.json",
"refs": "refs/css-break-3.json",
"dfns": "dfns/css-break-3.json",
@@ -18401,11 +18405,11 @@
],
"crawled": "https://drafts.csswg.org/css-break-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "11 March 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-break-4.json",
"refs": "refs/css-break-4.json",
"css": "css/css-break.json",
@@ -18468,11 +18472,11 @@
],
"crawled": "https://drafts.csswg.org/css-cascade-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "30 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-cascade-3.json",
"refs": "refs/css-cascade-3.json",
"dfns": "dfns/css-cascade-3.json",
@@ -18536,11 +18540,11 @@
],
"crawled": "https://drafts.csswg.org/css-cascade-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-cascade-4.json",
"links": "links/css-cascade-4.json",
"refs": "refs/css-cascade-4.json",
@@ -18604,11 +18608,11 @@
],
"crawled": "https://drafts.csswg.org/css-cascade-5/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-cascade-5.json",
"refs": "refs/css-cascade-5.json",
"idl": "idl/css-cascade.idl",
@@ -18672,11 +18676,11 @@
],
"crawled": "https://drafts.csswg.org/css-cascade-6/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "4 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-cascade-6.json",
"refs": "refs/css-cascade-6.json",
"idl": "idl/css-cascade-6.idl",
@@ -18740,7 +18744,7 @@
],
"crawled": "https://drafts.csswg.org/css-color-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"date": "18 January 2022",
"links": "links/css-color-3.json",
@@ -18806,11 +18810,11 @@
],
"crawled": "https://drafts.csswg.org/css-color-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "4 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-color-4.json",
"links": "links/css-color-4.json",
"refs": "refs/css-color-4.json",
@@ -18875,11 +18879,11 @@
],
"crawled": "https://drafts.csswg.org/css-color-5/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "7 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-color-5.json",
"links": "links/css-color-5.json",
"refs": "refs/css-color-5.json",
@@ -18944,11 +18948,11 @@
],
"crawled": "https://drafts.csswg.org/css-color-adjust-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "26 October 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-color-adjust-1.json",
"links": "links/css-color-adjust-1.json",
"refs": "refs/css-color-adjust-1.json",
@@ -19013,11 +19017,11 @@
],
"crawled": "https://drafts.csswg.org/css-conditional-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "13 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-conditional-3.json",
"links": "links/css-conditional-3.json",
"refs": "refs/css-conditional-3.json",
@@ -19083,11 +19087,11 @@
],
"crawled": "https://drafts.csswg.org/css-conditional-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "19 March 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-conditional-4.json",
"refs": "refs/css-conditional-4.json",
"css": "css/css-conditional-4.json",
@@ -19150,11 +19154,11 @@
],
"crawled": "https://drafts.csswg.org/css-conditional-5/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "4 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-conditional-5.json",
"links": "links/css-conditional-5.json",
"refs": "refs/css-conditional-5.json",
@@ -19219,11 +19223,11 @@
],
"crawled": "https://drafts.csswg.org/css-contain-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 June 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-contain-1.json",
"links": "links/css-contain-1.json",
"refs": "refs/css-contain-1.json",
@@ -19288,11 +19292,11 @@
],
"crawled": "https://drafts.csswg.org/css-contain-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "15 June 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-contain-2.json",
"links": "links/css-contain-2.json",
"refs": "refs/css-contain-2.json",
@@ -19358,11 +19362,11 @@
],
"crawled": "https://drafts.csswg.org/css-contain-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "20 June 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-contain-3.json",
"refs": "refs/css-contain-3.json",
"headings": "headings/css-contain-3.json",
@@ -19423,11 +19427,11 @@
],
"crawled": "https://drafts.csswg.org/css-content-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "17 May 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-content-3.json",
"links": "links/css-content-3.json",
"refs": "refs/css-content-3.json",
@@ -19491,11 +19495,11 @@
],
"crawled": "https://drafts.csswg.org/css-counter-styles-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "18 December 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-counter-styles-3.json",
"links": "links/css-counter-styles-3.json",
"refs": "refs/css-counter-styles-3.json",
@@ -19561,11 +19565,11 @@
],
"crawled": "https://drafts.csswg.org/css-display-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "22 November 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-display-3.json",
"refs": "refs/css-display-3.json",
"dfns": "dfns/css-display-3.json",
@@ -19628,11 +19632,11 @@
],
"crawled": "https://drafts.csswg.org/css-easing-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-easing-1.json",
"links": "links/css-easing-1.json",
"refs": "refs/css-easing-1.json",
@@ -19695,11 +19699,11 @@
],
"crawled": "https://drafts.csswg.org/css-easing-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
- "date": "5 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "date": "10 September 2024",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-easing-2.json",
"links": "links/css-easing-2.json",
"refs": "refs/css-easing-2.json",
@@ -19763,11 +19767,11 @@
],
"crawled": "https://drafts.csswg.org/css-flexbox-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "9 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-flexbox-1.json",
"links": "links/css-flexbox-1.json",
"refs": "refs/css-flexbox-1.json",
@@ -19831,11 +19835,11 @@
],
"crawled": "https://drafts.csswg.org/css-font-loading-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "11 May 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-font-loading-3.json",
"links": "links/css-font-loading-3.json",
"refs": "refs/css-font-loading-3.json",
@@ -19903,11 +19907,11 @@
],
"crawled": "https://drafts.csswg.org/css-fonts-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "8 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-fonts-4.json",
"links": "links/css-fonts-4.json",
"refs": "refs/css-fonts-4.json",
@@ -19972,11 +19976,11 @@
],
"crawled": "https://drafts.csswg.org/css-fonts-5/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "11 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-fonts-5.json",
"refs": "refs/css-fonts-5.json",
"css": "css/css-fonts-5.json",
@@ -20040,11 +20044,11 @@
],
"crawled": "https://drafts.csswg.org/css-gcpm-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "4 May 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-gcpm-3.json",
"refs": "refs/css-gcpm-3.json",
"css": "css/css-gcpm.json",
@@ -20107,11 +20111,11 @@
],
"crawled": "https://drafts.csswg.org/css-grid-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "3 November 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-grid-1.json",
"links": "links/css-grid-1.json",
"refs": "refs/css-grid-1.json",
@@ -20176,11 +20180,11 @@
],
"crawled": "https://drafts.csswg.org/css-grid-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "13 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-grid-2.json",
"links": "links/css-grid-2.json",
"refs": "refs/css-grid-2.json",
@@ -20238,11 +20242,11 @@
],
"crawled": "https://drafts.csswg.org/css-highlight-api-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "30 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-highlight-api-1.json",
"links": "links/css-highlight-api-1.json",
"refs": "refs/css-highlight-api-1.json",
@@ -20308,11 +20312,11 @@
],
"crawled": "https://drafts.csswg.org/css-images-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "19 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-images-3.json",
"links": "links/css-images-3.json",
"refs": "refs/css-images-3.json",
@@ -20377,11 +20381,11 @@
],
"crawled": "https://drafts.csswg.org/css-images-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "3 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-images-4.json",
"links": "links/css-images-4.json",
"refs": "refs/css-images-4.json",
@@ -20446,11 +20450,11 @@
],
"crawled": "https://drafts.csswg.org/css-inline-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "14 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-inline-3.json",
"links": "links/css-inline-3.json",
"refs": "refs/css-inline-3.json",
@@ -20522,7 +20526,8 @@
"css": "css/css-layout-api.json",
"dfns": "dfns/css-layout-api-1.json",
"headings": "headings/css-layout-api-1.json",
- "ids": "ids/css-layout-api-1.json"
+ "ids": "ids/css-layout-api-1.json",
+ "error": "Error: Loading https://drafts.css-houdini.org/css-layout-api-1/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 363)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://www.w3.org/TR/css-line-grid-1/",
@@ -20573,11 +20578,11 @@
],
"crawled": "https://drafts.csswg.org/css-line-grid-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "26 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-line-grid-1.json",
"refs": "refs/css-line-grid-1.json",
"css": "css/css-line-grid.json",
@@ -20640,11 +20645,11 @@
],
"crawled": "https://drafts.csswg.org/css-lists-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-lists-3.json",
"links": "links/css-lists-3.json",
"refs": "refs/css-lists-3.json",
@@ -20708,11 +20713,11 @@
],
"crawled": "https://drafts.csswg.org/css-logical-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-logical-1.json",
"refs": "refs/css-logical-1.json",
"css": "css/css-logical.json",
@@ -20843,11 +20848,11 @@
],
"crawled": "https://drafts.csswg.org/css-multicol-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "6 May 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-multicol-1.json",
"refs": "refs/css-multicol-1.json",
"css": "css/css-multicol.json",
@@ -20910,11 +20915,11 @@
],
"crawled": "https://drafts.csswg.org/css-namespaces-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-namespaces-3.json",
"refs": "refs/css-namespaces-3.json",
"css": "css/css-namespaces.json",
@@ -20971,11 +20976,11 @@
],
"crawled": "https://drafts.csswg.org/css-nav-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "29 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-nav-1.json",
"links": "links/css-nav-1.json",
"refs": "refs/css-nav-1.json",
@@ -21035,11 +21040,11 @@
],
"crawled": "https://drafts.csswg.org/css-nesting-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "19 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-nesting-1.json",
"refs": "refs/css-nesting-1.json",
"idl": "idl/css-nesting.idl",
@@ -21104,11 +21109,11 @@
],
"crawled": "https://drafts.csswg.org/css-overflow-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "21 June 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-overflow-3.json",
"refs": "refs/css-overflow-3.json",
"css": "css/css-overflow.json",
@@ -21172,11 +21177,11 @@
],
"crawled": "https://drafts.csswg.org/css-overflow-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "10 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-overflow-4.json",
"refs": "refs/css-overflow-4.json",
"css": "css/css-overflow-4.json",
@@ -21239,11 +21244,11 @@
],
"crawled": "https://drafts.csswg.org/css-overscroll-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "3 March 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-overscroll-1.json",
"refs": "refs/css-overscroll-1.json",
"css": "css/css-overscroll.json",
@@ -21307,11 +21312,11 @@
],
"crawled": "https://drafts.csswg.org/css-page-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "5 December 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-page-3.json",
"links": "links/css-page-3.json",
"refs": "refs/css-page-3.json",
@@ -21369,11 +21374,11 @@
],
"crawled": "https://drafts.csswg.org/css-page-floats-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-page-floats-3.json",
"links": "links/css-page-floats-3.json",
"refs": "refs/css-page-floats-3.json",
@@ -21445,7 +21450,8 @@
"css": "css/css-paint-api.json",
"dfns": "dfns/css-paint-api-1.json",
"headings": "headings/css-paint-api-1.json",
- "ids": "ids/css-paint-api-1.json"
+ "ids": "ids/css-paint-api-1.json",
+ "error": "Error: Loading https://drafts.css-houdini.org/css-paint-api-1/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 377)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://www.w3.org/TR/css-position-3/",
@@ -21503,11 +21509,11 @@
],
"crawled": "https://drafts.csswg.org/css-position-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "12 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-position-3.json",
"links": "links/css-position-3.json",
"refs": "refs/css-position-3.json",
@@ -21579,7 +21585,8 @@
"css": "css/css-properties-values-api.json",
"dfns": "dfns/css-properties-values-api-1.json",
"headings": "headings/css-properties-values-api-1.json",
- "ids": "ids/css-properties-values-api-1.json"
+ "ids": "ids/css-properties-values-api-1.json",
+ "error": "Error: Loading https://drafts.css-houdini.org/css-properties-values-api-1/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 379)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://www.w3.org/TR/css-pseudo-4/",
@@ -21636,11 +21643,11 @@
],
"crawled": "https://drafts.csswg.org/css-pseudo-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "30 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-pseudo-4.json",
"links": "links/css-pseudo-4.json",
"refs": "refs/css-pseudo-4.json",
@@ -21699,11 +21706,11 @@
],
"crawled": "https://drafts.csswg.org/css-regions-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-regions-1.json",
"refs": "refs/css-regions-1.json",
"idl": "idl/css-regions.idl",
@@ -21761,11 +21768,11 @@
],
"crawled": "https://drafts.csswg.org/css-rhythm-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-rhythm-1.json",
"refs": "refs/css-rhythm-1.json",
"css": "css/css-rhythm.json",
@@ -21828,11 +21835,11 @@
],
"crawled": "https://drafts.csswg.org/css-round-display-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "1 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-round-display-1.json",
"refs": "refs/css-round-display-1.json",
"css": "css/css-round-display.json",
@@ -21895,11 +21902,11 @@
],
"crawled": "https://drafts.csswg.org/css-ruby-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "15 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-ruby-1.json",
"links": "links/css-ruby-1.json",
"refs": "refs/css-ruby-1.json",
@@ -21963,11 +21970,11 @@
],
"crawled": "https://drafts.csswg.org/css-scoping-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "2 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-scoping-1.json",
"links": "links/css-scoping-1.json",
"refs": "refs/css-scoping-1.json",
@@ -22031,11 +22038,11 @@
],
"crawled": "https://drafts.csswg.org/css-scroll-anchoring-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "22 December 2020",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-scroll-anchoring-1.json",
"links": "links/css-scroll-anchoring-1.json",
"refs": "refs/css-scroll-anchoring-1.json",
@@ -22100,11 +22107,11 @@
],
"crawled": "https://drafts.csswg.org/css-scroll-snap-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "11 April 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-scroll-snap-1.json",
"links": "links/css-scroll-snap-1.json",
"refs": "refs/css-scroll-snap-1.json",
@@ -22168,11 +22175,11 @@
],
"crawled": "https://drafts.csswg.org/css-scroll-snap-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "19 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-scroll-snap-2.json",
"links": "links/css-scroll-snap-2.json",
"refs": "refs/css-scroll-snap-2.json",
@@ -22238,11 +22245,11 @@
],
"crawled": "https://drafts.csswg.org/css-scrollbars-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "4 April 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-scrollbars-1.json",
"refs": "refs/css-scrollbars-1.json",
"css": "css/css-scrollbars.json",
@@ -22305,11 +22312,11 @@
],
"crawled": "https://drafts.csswg.org/css-shadow-parts-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "20 March 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-shadow-parts-1.json",
"links": "links/css-shadow-parts-1.json",
"refs": "refs/css-shadow-parts-1.json",
@@ -22375,11 +22382,11 @@
],
"crawled": "https://drafts.csswg.org/css-shapes-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "20 February 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-shapes-1.json",
"refs": "refs/css-shapes-1.json",
"css": "css/css-shapes.json",
@@ -22443,11 +22450,11 @@
],
"crawled": "https://drafts.csswg.org/css-sizing-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "25 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-sizing-3.json",
"links": "links/css-sizing-3.json",
"refs": "refs/css-sizing-3.json",
@@ -22511,11 +22518,11 @@
],
"crawled": "https://drafts.csswg.org/css-sizing-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "25 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-sizing-4.json",
"refs": "refs/css-sizing-4.json",
"css": "css/css-sizing-4.json",
@@ -22578,11 +22585,11 @@
],
"crawled": "https://drafts.csswg.org/css-speech-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-speech-1.json",
"refs": "refs/css-speech-1.json",
"css": "css/css-speech.json",
@@ -22643,7 +22650,7 @@
],
"crawled": "https://drafts.csswg.org/css-style-attr/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"date": "10 April 2015",
"links": "links/css-style-attr.json",
@@ -22708,11 +22715,11 @@
],
"crawled": "https://drafts.csswg.org/css-syntax-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "25 June 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-syntax-3.json",
"links": "links/css-syntax-3.json",
"refs": "refs/css-syntax-3.json",
@@ -22776,11 +22783,11 @@
],
"crawled": "https://drafts.csswg.org/css-tables-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "1 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-tables-3.json",
"links": "links/css-tables-3.json",
"refs": "refs/css-tables-3.json",
@@ -22845,11 +22852,11 @@
],
"crawled": "https://drafts.csswg.org/css-text-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "31 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-text-3.json",
"links": "links/css-text-3.json",
"refs": "refs/css-text-3.json",
@@ -22913,11 +22920,11 @@
],
"crawled": "https://drafts.csswg.org/css-text-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "31 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-text-4.json",
"links": "links/css-text-4.json",
"refs": "refs/css-text-4.json",
@@ -22982,11 +22989,11 @@
],
"crawled": "https://drafts.csswg.org/css-text-decor-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-text-decor-3.json",
"refs": "refs/css-text-decor-3.json",
"css": "css/css-text-decor.json",
@@ -23049,11 +23056,11 @@
],
"crawled": "https://drafts.csswg.org/css-text-decor-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "8 March 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-text-decor-4.json",
"refs": "refs/css-text-decor-4.json",
"css": "css/css-text-decor-4.json",
@@ -23117,11 +23124,11 @@
],
"crawled": "https://drafts.csswg.org/css-transforms-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "7 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-transforms-1.json",
"links": "links/css-transforms-1.json",
"refs": "refs/css-transforms-1.json",
@@ -23185,11 +23192,11 @@
],
"crawled": "https://drafts.csswg.org/css-transforms-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "3 April 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-transforms-2.json",
"links": "links/css-transforms-2.json",
"refs": "refs/css-transforms-2.json",
@@ -23254,11 +23261,11 @@
],
"crawled": "https://drafts.csswg.org/css-transitions-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "10 December 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-transitions-1.json",
"links": "links/css-transitions-1.json",
"refs": "refs/css-transitions-1.json",
@@ -23324,11 +23331,11 @@
],
"crawled": "https://drafts.csswg.org/css-transitions-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "5 September 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-transitions-2.json",
"links": "links/css-transitions-2.json",
"refs": "refs/css-transitions-2.json",
@@ -23401,7 +23408,8 @@
"idl": "idl/css-typed-om.idl",
"dfns": "dfns/css-typed-om-1.json",
"headings": "headings/css-typed-om-1.json",
- "ids": "ids/css-typed-om-1.json"
+ "ids": "ids/css-typed-om-1.json",
+ "error": "Error: Loading https://drafts.css-houdini.org/css-typed-om-1/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 406)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://www.w3.org/TR/css-ui-3/",
@@ -23458,11 +23466,11 @@
],
"crawled": "https://drafts.csswg.org/css-ui-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "27 February 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-ui-3.json",
"links": "links/css-ui-3.json",
"refs": "refs/css-ui-3.json",
@@ -23526,11 +23534,11 @@
],
"crawled": "https://drafts.csswg.org/css-ui-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "31 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-ui-4.json",
"refs": "refs/css-ui-4.json",
"css": "css/css-ui.json",
@@ -23595,11 +23603,11 @@
],
"crawled": "https://drafts.csswg.org/css-values-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "31 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-values-3.json",
"refs": "refs/css-values-3.json",
"dfns": "dfns/css-values-3.json",
@@ -23663,11 +23671,11 @@
],
"crawled": "https://drafts.csswg.org/css-values-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "17 June 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-values-4.json",
"links": "links/css-values-4.json",
"refs": "refs/css-values-4.json",
@@ -23731,11 +23739,11 @@
],
"crawled": "https://drafts.csswg.org/css-values-5/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "30 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-values-5.json",
"links": "links/css-values-5.json",
"refs": "refs/css-values-5.json",
@@ -23800,11 +23808,11 @@
],
"crawled": "https://drafts.csswg.org/css-variables-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "30 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-variables-1.json",
"links": "links/css-variables-1.json",
"refs": "refs/css-variables-1.json",
@@ -23862,11 +23870,11 @@
],
"crawled": "https://drafts.csswg.org/css-view-transitions-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "5 September 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-view-transitions-1.json",
"links": "links/css-view-transitions-1.json",
"refs": "refs/css-view-transitions-1.json",
@@ -23925,11 +23933,11 @@
],
"crawled": "https://drafts.csswg.org/css-view-transitions-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
- "date": "22 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "date": "10 September 2024",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-view-transitions-2.json",
"links": "links/css-view-transitions-2.json",
"refs": "refs/css-view-transitions-2.json",
@@ -23996,11 +24004,11 @@
],
"crawled": "https://drafts.csswg.org/css-viewport/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "12 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-viewport-1.json",
"links": "links/css-viewport-1.json",
"refs": "refs/css-viewport-1.json",
@@ -24065,11 +24073,11 @@
],
"crawled": "https://drafts.csswg.org/css-will-change-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "29 April 2022",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-will-change-1.json",
"refs": "refs/css-will-change-1.json",
"css": "css/css-will-change.json",
@@ -24133,11 +24141,11 @@
],
"crawled": "https://drafts.csswg.org/css-writing-modes-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/css-writing-modes-3.json",
"refs": "refs/css-writing-modes-3.json",
"dfns": "dfns/css-writing-modes-3.json",
@@ -24200,11 +24208,11 @@
],
"crawled": "https://drafts.csswg.org/css-writing-modes-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "28 August 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css-writing-modes-4.json",
"links": "links/css-writing-modes-4.json",
"refs": "refs/css-writing-modes-4.json",
@@ -24406,11 +24414,11 @@
],
"crawled": "https://drafts.csswg.org/css2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "18 December 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/CSS22.json",
"links": "links/CSS22.json",
"refs": "refs/CSS22.json",
@@ -24474,11 +24482,11 @@
],
"crawled": "https://drafts.csswg.org/css-exclusions-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/css3-exclusions.json",
"links": "links/css3-exclusions.json",
"refs": "refs/css3-exclusions.json",
@@ -24542,11 +24550,11 @@
],
"crawled": "https://drafts.csswg.org/cssom-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "2 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/cssom-1.json",
"links": "links/cssom-1.json",
"refs": "refs/cssom-1.json",
@@ -24611,11 +24619,11 @@
],
"crawled": "https://drafts.csswg.org/cssom-view-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "21 June 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/cssom-view-1.json",
"links": "links/cssom-view-1.json",
"refs": "refs/cssom-view-1.json",
@@ -25923,7 +25931,8 @@
"css": "css/fill-stroke.json",
"dfns": "dfns/fill-stroke-3.json",
"headings": "headings/fill-stroke-3.json",
- "ids": "ids/fill-stroke-3.json"
+ "ids": "ids/fill-stroke-3.json",
+ "error": "Error: Loading https://drafts.fxtf.org/fill-stroke-3/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 445)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://www.w3.org/TR/filter-effects-1/",
@@ -25990,7 +25999,8 @@
"dfns": "dfns/filter-effects-1.json",
"elements": "elements/filter-effects-1.json",
"headings": "headings/filter-effects-1.json",
- "ids": "ids/filter-effects-1.json"
+ "ids": "ids/filter-effects-1.json",
+ "error": "Error: Loading https://drafts.fxtf.org/filter-effects-1/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 446)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://www.w3.org/TR/fingerprinting-guidance/",
@@ -26098,7 +26108,7 @@
],
"crawled": "https://w3c.github.io/gamepad/",
"crawlCacheInfo": {
- "lastModified": "Fri, 09 Aug 2024 00:25:21 GMT"
+ "lastModified": "Fri, 09 Aug 2024 00:25:22 GMT"
},
"generator": "respec",
"date": "09 August 2024",
@@ -26365,7 +26375,8 @@
"idl": "idl/geometry.idl",
"dfns": "dfns/geometry-1.json",
"headings": "headings/geometry-1.json",
- "ids": "ids/geometry-1.json"
+ "ids": "ids/geometry-1.json",
+ "error": "Error: Loading https://drafts.fxtf.org/geometry-1/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 452)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://www.w3.org/TR/graphics-aam-1.0/",
@@ -28306,7 +28317,7 @@
],
"crawled": "https://drafts.csswg.org/mediaqueries-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"date": "14 May 2024",
"links": "links/mediaqueries-3.json",
@@ -28371,11 +28382,11 @@
],
"crawled": "https://drafts.csswg.org/mediaqueries-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/mediaqueries-4.json",
"refs": "refs/mediaqueries-4.json",
"css": "css/mediaqueries.json",
@@ -28438,11 +28449,11 @@
],
"crawled": "https://drafts.csswg.org/mediaqueries-5/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "19 July 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/mediaqueries-5.json",
"refs": "refs/mediaqueries-5.json",
"css": "css/mediaqueries-5.json",
@@ -28865,7 +28876,8 @@
"css": "css/motion.json",
"dfns": "dfns/motion-1.json",
"headings": "headings/motion-1.json",
- "ids": "ids/motion-1.json"
+ "ids": "ids/motion-1.json",
+ "error": "Error: Loading https://drafts.fxtf.org/motion-1/ triggered HTTP status 504\n at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:481:19)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:352:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)\n at async Promise.all (index 493)\n at async crawlList (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:373:21)"
},
{
"url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/",
@@ -31375,11 +31387,11 @@
],
"crawled": "https://drafts.csswg.org/resize-observer-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "27 January 2023",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/resize-observer-1.json",
"links": "links/resize-observer-1.json",
"refs": "refs/resize-observer-1.json",
@@ -31703,11 +31715,11 @@
],
"crawled": "https://drafts.csswg.org/scroll-animations-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "31 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/scroll-animations-1.json",
"links": "links/scroll-animations-1.json",
"refs": "refs/scroll-animations-1.json",
@@ -31963,7 +31975,7 @@
],
"crawled": "https://drafts.csswg.org/selectors-3/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"date": "30 January 2018",
"links": "links/selectors-3.json",
@@ -32029,11 +32041,11 @@
],
"crawled": "https://drafts.csswg.org/selectors-4/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "22 August 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/selectors-4.json",
"links": "links/selectors-4.json",
"refs": "refs/selectors-4.json",
@@ -34376,11 +34388,11 @@
],
"crawled": "https://drafts.csswg.org/web-animations-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "17 May 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/web-animations-1.json",
"links": "links/web-animations-1.json",
"refs": "refs/web-animations-1.json",
@@ -34445,11 +34457,11 @@
],
"crawled": "https://drafts.csswg.org/web-animations-2/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "15 May 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"algorithms": "algorithms/web-animations-2.json",
"links": "links/web-animations-2.json",
"refs": "refs/web-animations-2.json",
@@ -35802,10 +35814,10 @@
],
"crawled": "https://gpuweb.github.io/gpuweb/",
"crawlCacheInfo": {
- "lastModified": "Mon, 09 Sep 2024 17:30:58 GMT"
+ "lastModified": "Wed, 11 Sep 2024 00:40:50 GMT"
},
"generator": "bikeshed",
- "date": "9 September 2024",
+ "date": "11 September 2024",
"algorithms": "algorithms/webgpu.json",
"links": "links/webgpu.json",
"refs": "refs/webgpu.json",
@@ -37077,10 +37089,10 @@
],
"crawled": "https://gpuweb.github.io/gpuweb/wgsl/",
"crawlCacheInfo": {
- "lastModified": "Mon, 09 Sep 2024 17:30:57 GMT"
+ "lastModified": "Wed, 11 Sep 2024 00:40:49 GMT"
},
"generator": "bikeshed",
- "date": "9 September 2024",
+ "date": "11 September 2024",
"algorithms": "algorithms/WGSL.json",
"links": "links/WGSL.json",
"refs": "refs/WGSL.json",
@@ -37438,11 +37450,11 @@
],
"crawled": "https://drafts.csswg.org/selectors-nonelement-1/",
"crawlCacheInfo": {
- "lastModified": "Tue, 10 Sep 2024 10:21:29 GMT"
+ "lastModified": "Tue, 10 Sep 2024 23:13:05 GMT"
},
"generator": "bikeshed",
"date": "24 January 2024",
- "revision": "15d02e3ab61232db3620afe6e072352dae5ce324",
+ "revision": "aaad9c74937acfc63f9f67ba24b530d0b5992a22",
"links": "links/selectors-nonelement-1.json",
"refs": "refs/selectors-nonelement-1.json",
"css": "css/selectors-nonelement.json",
diff --git a/ed/links/css-easing-2.json b/ed/links/css-easing-2.json
index fe8d8a1a93fb..c54538927ae0 100644
--- a/ed/links/css-easing-2.json
+++ b/ed/links/css-easing-2.json
@@ -32,6 +32,8 @@
"https://damp-lake-50659.herokuapp.com/": {},
"https://datatracker.ietf.org/doc/html/rfc2119": {},
"https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function": {},
+ "https://drafts.css-houdini.org/css-typed-om-1/": {},
+ "https://drafts.csswg.org/css-easing/": {},
"https://drafts.csswg.org/css-values-3/": {},
"https://drafts.csswg.org/css-values-4/": {},
"https://drafts.csswg.org/cssom/": {},
@@ -67,6 +69,17 @@
"https://www.w3.org/policies/process/20231103/": {}
},
"autolinks": {
+ "https://drafts.css-houdini.org/css-typed-om-1/": {
+ "anchors": [
+ "css-internal-representation"
+ ]
+ },
+ "https://drafts.csswg.org/css-easing-2/": {
+ "anchors": [
+ "valdef-easing-function-linear",
+ "linear-easing-function-serialized-computed-value"
+ ]
+ },
"https://drafts.csswg.org/css-values-4/": {
"anchors": [
"comb-one",
@@ -82,10 +95,7 @@
},
"https://infra.spec.whatwg.org/": {
"anchors": [
- "string",
- "list-iterate",
- "list-item",
- "list-size"
+ "string-concatenate"
]
}
}
diff --git a/ed/links/css-grid-3.json b/ed/links/css-grid-3.json
index c8d3d542e4ab..53b1356d0736 100644
--- a/ed/links/css-grid-3.json
+++ b/ed/links/css-grid-3.json
@@ -100,6 +100,7 @@
},
"https://drafts.csswg.org/css-grid-2/": {
"anchors": [
+ "order-accessibility",
"track-sizing",
"subgrids",
"algo-track-sizing",
@@ -247,6 +248,11 @@
"computed"
]
},
+ "https://www.w3.org/TR/css-flexbox-1/": {
+ "anchors": [
+ "order-accessibility"
+ ]
+ },
"https://www.w3.org/TR/css-grid-2/": {
"anchors": [
"grid-auto-flow-property",
@@ -318,6 +324,8 @@
"anchors": [
"propdef-display",
"blockify",
+ "propdef-order",
+ "propdef-reading-flow",
"block-level",
"flow-layout",
"inline-level",
@@ -335,13 +343,17 @@
"grid-layout",
"grid-item",
"grid-container",
+ "grid-track",
+ "definite-grid-position",
"propdef-grid-template-columns",
"propdef-grid-template-rows",
"valdef-grid-template-rows-none",
+ "grid-item-placement-algorithm",
"explicit-grid",
"implicit-grid",
"propdef-grid-auto-rows",
"propdef-grid-auto-columns",
+ "computed-track-list",
"valdef-grid-template-columns-auto",
"propdef-grid-template-areas",
"subgrid",
@@ -351,7 +363,6 @@
"valdef-grid-template-areas-none",
"valdef-repeat-auto-fit",
"automatic-grid-position",
- "definite-grid-position",
"grid-placement-property",
"propdef-grid-column-start",
"propdef-grid-column-end",
@@ -394,8 +405,12 @@
"block-end",
"inline-start",
"inline-end",
- "writing-mode",
- "css-start"
+ "writing-mode"
+ ]
+ },
+ "https://www.w3.org/TR/css-grid-2/": {
+ "anchors": [
+ "collapsed-track"
]
}
}
diff --git a/ed/links/css-view-transitions-2.json b/ed/links/css-view-transitions-2.json
index 9de08b5ddc72..e96989b14512 100644
--- a/ed/links/css-view-transitions-2.json
+++ b/ed/links/css-view-transitions-2.json
@@ -194,6 +194,7 @@
"selectordef-view-transition",
"snapshot-containing-block",
"valdef-view-transition-name-none",
+ "view-transition-page-visibility-change-steps",
"perform-pending-transition-operations",
"viewtransition-phase",
"document-rendering-suppression-for-view-transitions",
diff --git a/ed/links/idle-detection.json b/ed/links/idle-detection.json
index 65dbeccf9431..bb7f88e37d44 100644
--- a/ed/links/idle-detection.json
+++ b/ed/links/idle-detection.json
@@ -18,30 +18,51 @@
"https://dom.spec.whatwg.org/": {},
"https://fetch.spec.whatwg.org/": {},
"https://github.com/web-platform-tests/wpt/blob/master/idle-detection/basics.tentative.https.window.js": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/idle-detection/idle-detection-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/idle-detection/idle-detection-allowed-by-permissions-policy-attribute.https.sub.html": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/idle-detection/idle-detection-allowed-by-permissions-policy.https.sub.html": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/idle-detection/idle-detection-default-permissions-policy.https.sub.html": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/idle-detection/idle-detection-detached-frame.https.html": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/idle-detection/idle-detection-disabled-by-permissions-policy.https.sub.html": {},
"https://github.com/web-platform-tests/wpt/blob/master/idle-detection/idle-permission.tentative.https.window.js": {},
"https://github.com/web-platform-tests/wpt/blob/master/idle-detection/idlharness-worker.https.window.js": {},
"https://github.com/web-platform-tests/wpt/blob/master/idle-detection/idlharness.https.window.js": {},
"https://github.com/web-platform-tests/wpt/blob/master/idle-detection/interceptor.https.html": {},
+ "https://github.com/web-platform-tests/wpt/blob/master/idle-detection/page-visibility.https.html": {},
"https://html.spec.whatwg.org/multipage/": {},
"https://infra.spec.whatwg.org/": {},
"https://tc39.es/ecma262/multipage/": {},
"https://w3c.github.io/deviceorientation/": {},
- "https://w3c.github.io/geolocation-api/": {},
+ "https://w3c.github.io/geolocation/": {},
"https://w3c.github.io/page-visibility/": {},
"https://w3c.github.io/permissions/": {},
"https://w3c.github.io/push-api/": {},
"https://w3c.github.io/webappsec-permissions-policy/": {},
"https://webidl.spec.whatwg.org/": {},
"https://wpt.fyi/results/idle-detection/basics.tentative.https.window.js": {},
+ "https://wpt.fyi/results/idle-detection/idle-detection-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html": {},
+ "https://wpt.fyi/results/idle-detection/idle-detection-allowed-by-permissions-policy-attribute.https.sub.html": {},
+ "https://wpt.fyi/results/idle-detection/idle-detection-allowed-by-permissions-policy.https.sub.html": {},
+ "https://wpt.fyi/results/idle-detection/idle-detection-default-permissions-policy.https.sub.html": {},
+ "https://wpt.fyi/results/idle-detection/idle-detection-detached-frame.https.html": {},
+ "https://wpt.fyi/results/idle-detection/idle-detection-disabled-by-permissions-policy.https.sub.html": {},
"https://wpt.fyi/results/idle-detection/idle-permission.tentative.https.window.js": {},
"https://wpt.fyi/results/idle-detection/idlharness-worker.https.window.js": {},
"https://wpt.fyi/results/idle-detection/idlharness.https.window.js": {},
"https://wpt.fyi/results/idle-detection/interceptor.https.html": {},
+ "https://wpt.fyi/results/idle-detection/page-visibility.https.html": {},
"https://wpt.live/idle-detection/basics.tentative.https.window.js": {},
+ "https://wpt.live/idle-detection/idle-detection-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html": {},
+ "https://wpt.live/idle-detection/idle-detection-allowed-by-permissions-policy-attribute.https.sub.html": {},
+ "https://wpt.live/idle-detection/idle-detection-allowed-by-permissions-policy.https.sub.html": {},
+ "https://wpt.live/idle-detection/idle-detection-default-permissions-policy.https.sub.html": {},
+ "https://wpt.live/idle-detection/idle-detection-detached-frame.https.html": {},
+ "https://wpt.live/idle-detection/idle-detection-disabled-by-permissions-policy.https.sub.html": {},
"https://wpt.live/idle-detection/idle-permission.tentative.https.window.js": {},
"https://wpt.live/idle-detection/idlharness-worker.https.window.js": {},
"https://wpt.live/idle-detection/idlharness.https.window.js": {},
"https://wpt.live/idle-detection/interceptor.https.html": {},
+ "https://wpt.live/idle-detection/page-visibility.https.html": {},
"https://www.w3.org/community/about/agreements/cla/": {},
"https://www.w3.org/community/wicg/": {}
},
@@ -61,6 +82,11 @@
"dom-requestdestination-iframe"
]
},
+ "https://html.spec.whatwg.org/multipage/document-sequences.html": {
+ "anchors": [
+ "fully-active"
+ ]
+ },
"https://html.spec.whatwg.org/multipage/iframe-embed-object.html": {
"anchors": [
"allowed-to-use"
@@ -94,13 +120,11 @@
"eventhandler",
"event-handler-idl-attributes",
"concept-relevant-global",
- "queue-a-task",
"queue-a-global-task"
]
},
"https://infra.spec.whatwg.org/": {
"anchors": [
- "abort-when",
"user-agent"
]
},
@@ -136,11 +160,11 @@
"idl-undefined",
"this",
"a-promise-rejected-with",
- "notallowederror",
+ "invalidstateerror",
"idl-DOMException",
+ "notallowederror",
"a-new-promise",
"resolve",
- "invalidstateerror",
"exceptiondef-typeerror",
"reject"
]
diff --git a/ed/links/shared-storage.json b/ed/links/shared-storage.json
index cb94c3010ffc..aff9f0b5127e 100644
--- a/ed/links/shared-storage.json
+++ b/ed/links/shared-storage.json
@@ -13,13 +13,15 @@
"https://github.com/WICG/shared-storage/issues/138": {},
"https://github.com/WICG/shared-storage/issues/141": {},
"https://github.com/WICG/shared-storage/issues/144": {},
- "https://github.com/WICG/shared-storage/issues/147": {},
"https://github.com/WICG/shared-storage/issues/148": {},
- "https://github.com/WICG/shared-storage/issues/149": {},
- "https://github.com/WICG/shared-storage/issues/150": {},
"https://github.com/WICG/shared-storage/issues/151": {},
"https://github.com/w3c/webappsec-permissions-policy/pull/499": {},
"https://html.spec.whatwg.org/multipage/": {},
+ "https://html.spec.whatwg.org/multipage/document-sequences.html": {
+ "anchors": [
+ "traversable-navigable"
+ ]
+ },
"https://html.spec.whatwg.org/multipage/webappapis.html": {
"anchors": [
"fetch-a-worklet/module-worker-script-graph"
@@ -35,6 +37,7 @@
"https://w3c.github.io/beacon/": {},
"https://w3c.github.io/hr-time/": {},
"https://w3c.github.io/i18n-glossary/": {},
+ "https://w3c.github.io/media-source/": {},
"https://w3c.github.io/webappsec-permissions-policy/": {},
"https://webidl.spec.whatwg.org/": {},
"https://wicg.github.io/fenced-frame/": {},
@@ -73,11 +76,6 @@
"concept-request-header-list",
"concept-http-fetch",
"concept-request-destination",
- "concept-header-list-get",
- "concept-request-origin",
- "concept-response-header-list",
- "concept-header-list-get-structured-header",
- "concept-network-error",
"concept-response",
"request-priority",
"concept-request-request",
@@ -87,6 +85,12 @@
"concept-http-network-or-cache-fetch",
"concept-response-status",
"redirect-status",
+ "concept-header-list-get",
+ "concept-request-origin",
+ "concept-response-header-list",
+ "concept-header-list-get-structured-header",
+ "concept-network-error",
+ "concept-header-value",
"concept-header-list-delete",
"concept-header-list-set-structured-header"
]
@@ -143,6 +147,7 @@
"concept-document-bc",
"navigable",
"nav-parent",
+ "initialize-the-navigable",
"nav-window",
"nav-container"
]
@@ -271,6 +276,7 @@
"map-getting-the-keys",
"map-getting-the-values",
"user-agent",
+ "the-exclusive-range",
"struct",
"struct-item",
"list-item",
@@ -388,6 +394,11 @@
"dfn-unicode"
]
},
+ "https://w3c.github.io/media-source/": {
+ "anchors": [
+ "dom-appendmode-sequence"
+ ]
+ },
"https://w3c.github.io/webappsec-permissions-policy/": {
"anchors": [
"policy-controlled-feature"
@@ -421,9 +432,9 @@
"getter-steps",
"idl-object",
"dfn-dictionary",
- "idl-double",
"an-exception-was-thrown",
"SecureContext",
+ "idl-double",
"idl-boolean",
"EnforceRange",
"idl-unsigned-long-long",
@@ -450,8 +461,7 @@
"dom-fence-reportevent",
"dom-fenceevent-destination",
"dom-fenceevent-eventdata",
- "fencedframetype-fenced-frame-reporter",
- "source-snapshot-params-initiator-fenced-frame-config-instance"
+ "fencedframetype-fenced-frame-reporter"
]
},
"https://www.ietf.org/rfc/rfc4122.txt": {
diff --git a/ed/links/webgpu.json b/ed/links/webgpu.json
index c694cf352d58..9e21a551f73a 100644
--- a/ed/links/webgpu.json
+++ b/ed/links/webgpu.json
@@ -236,8 +236,8 @@
"https://infra.spec.whatwg.org/": {
"anchors": [
"ordered-map",
- "assert",
"map-exists",
+ "assert",
"implementation-defined",
"list",
"list-append",
diff --git a/ed/refs/css-easing-2.json b/ed/refs/css-easing-2.json
index 542792fbdf92..a97b053997a7 100644
--- a/ed/refs/css-easing-2.json
+++ b/ed/refs/css-easing-2.json
@@ -5,6 +5,10 @@
},
"refs": {
"normative": [
+ {
+ "name": "CSS-EASING-2",
+ "url": "https://drafts.csswg.org/css-easing/"
+ },
{
"name": "CSS-VALUES-3",
"url": "https://drafts.csswg.org/css-values-3/"
@@ -23,6 +27,10 @@
}
],
"informative": [
+ {
+ "name": "CSS-TYPED-OM-1",
+ "url": "https://drafts.css-houdini.org/css-typed-om-1/"
+ },
{
"name": "CSSOM",
"url": "https://drafts.csswg.org/cssom/"
diff --git a/ed/refs/idle-detection.json b/ed/refs/idle-detection.json
index 3a0dee9b0965..05d8da68af69 100644
--- a/ed/refs/idle-detection.json
+++ b/ed/refs/idle-detection.json
@@ -52,8 +52,8 @@
"url": "https://fetch.spec.whatwg.org/"
},
{
- "name": "GEOLOCATION-API",
- "url": "https://w3c.github.io/geolocation-api/"
+ "name": "GEOLOCATION",
+ "url": "https://w3c.github.io/geolocation/"
},
{
"name": "PUSH-API",
diff --git a/ed/refs/shared-storage.json b/ed/refs/shared-storage.json
index 2e27b805440f..d7460018379e 100644
--- a/ed/refs/shared-storage.json
+++ b/ed/refs/shared-storage.json
@@ -45,6 +45,10 @@
"name": "INFRA",
"url": "https://infra.spec.whatwg.org/"
},
+ {
+ "name": "MEDIA-SOURCE-2",
+ "url": "https://w3c.github.io/media-source/"
+ },
{
"name": "PERMISSIONS-POLICY-1",
"url": "https://w3c.github.io/webappsec-permissions-policy/"