diff --git a/tr/algorithms/selection-api.json b/tr/algorithms/selection-api.json index ed79f908929b..159cc15adefb 100644 --- a/tr/algorithms/selection-api.json +++ b/tr/algorithms/selection-api.json @@ -31,37 +31,37 @@ "html": "If this is empty, return an empty array." }, { - "html": "Otherwise, let startNode be start node of the range associated with this,\n and let startOffset be start offset of the range." + "html": "Otherwise, let startNode be start node of\n the range associated with this, and let\n startOffset be start offset of the range." }, { - "html": "While startNode is a node, startNode's root is a shadow root,\n and startNode's root is not a shadow-including inclusive ancestor of any of shadowRoots,\n repeat these steps:", + "html": "While startNode is a node,\n startNode's root is a shadow root, and\n startNode's root is not a shadow-including inclusive ancestor of any of shadowRoots, repeat these\n steps:", "rationale": "set", "steps": [ { - "html": "Set startOffset to index of startNode's root's host." + "html": "Set startOffset to index of\n startNode's root's host." }, { - "html": "Set startNode to startNode's root's host's parent." + "html": "Set startNode to startNode's\n root's host's parent." } ] }, { - "html": "Let endNode be end node of the range associated with this,\n and let endOffset be end offset of the range." + "html": "Let endNode be end node of the range\n associated with this, and let endOffset be\n end offset of the range." }, { - "html": "While endNode is a node, endNode's root is a shadow root,\n and endNode's root is not a shadow-including inclusive ancestor of any of shadowRoots,\n repeat these steps:", + "html": "While endNode is a node, endNode's\n root is a shadow root, and endNode's\n root is not a shadow-including inclusive ancestor of\n any of shadowRoots, repeat these steps:", "rationale": "set", "steps": [ { - "html": "Set endOffset to index of endNode's root's host plus 1." + "html": "Set endOffset to index of\n endNode's root's host plus 1." }, { - "html": "Set endNode to endNode's root's host's parent." + "html": "Set endNode to endNode's\n root's host's parent." } ] }, { - "html": "Return an array consisting of new StaticRange whose start node is startNode, start offset\n is startOffset, end node is endNode, and end offset is endOffset." + "html": "Return an array consisting of new StaticRange whose\n start node is startNode, start offset is startOffset, end node is\n endNode, and end offset is\n endOffset." } ] }, @@ -78,7 +78,7 @@ "html": "The method must throw an IndexSizeError exception if \n offset is longer than node's length and\n abort these steps." }, { - "html": "If document associated with this is not a shadow-including inclusive ancestor\n of node, abort these steps." + "html": "If document associated with this is not a\n shadow-including inclusive ancestor of node, abort\n these steps." }, { "html": "Otherwise, let newRange be a new range." @@ -98,7 +98,7 @@ "rationale": "if", "steps": [ { - "html": "If the document associated with this is not a shadow-including inclusive ancestor of\n node, abort these steps." + "html": "If the document associated with this is not a\n shadow-including inclusive ancestor of node, abort\n these steps." }, { "html": "If this is empty, throw an InvalidStateError\n exception and abort these steps." @@ -136,7 +136,7 @@ "html": "If anchorOffset is longer than\n anchorNode's length or if\n focusOffset is longer than focusNode's\n length, throw an IndexSizeError exception and abort\n these steps." }, { - "html": "If document associated with this is not a shadow-including inclusive ancestor\n of anchorNode or focusNode, abort these steps." + "html": "If document associated with this is not a\n shadow-including inclusive ancestor of anchorNode or\n focusNode, abort these steps." }, { "html": "Let anchor be the boundary point\n (anchorNode, anchorOffset) and let\n focus be the boundary point\n (focusNode, focusOffset)." @@ -188,13 +188,13 @@ "rationale": "if", "steps": [ { - "html": "If alter is not ASCII case-insensitive match with\n \"extend\" or \"move\", abort these steps." + "html": "If alter is not ASCII case-insensitive match\n with \"extend\" or \"move\", abort these steps." }, { - "html": "If direction is not ASCII case-insensitive match with\n \"forward\", \"backward\", \"left\", or \"right\", abort these steps." + "html": "If direction is not ASCII case-insensitive\n match with \"forward\", \"backward\", \"left\", or \"right\", abort these\n steps." }, { - "html": "If granularity is not ASCII case-insensitive match with\n \"character\", \"word\", \"sentence\", \"line\", \"paragraph\", \"lineboundary\",\n \"sentenceboundary\", \"paragraphboundary\", \"documentboundary\", abort these steps." + "html": "If granularity is not ASCII case-insensitive\n match with \"character\", \"word\", \"sentence\", \"line\", \"paragraph\",\n \"lineboundary\", \"sentenceboundary\", \"paragraphboundary\",\n \"documentboundary\", abort these steps." }, { "html": "If this selection is empty, abort these steps." @@ -203,33 +203,33 @@ "html": "Let effectiveDirection be backwards." }, { - "html": "If direction is ASCII case-insensitive match with \"forward\",\n set effectiveDirection to forwards." + "html": "If direction is ASCII case-insensitive match\n with \"forward\", set effectiveDirection to\n forwards." }, { - "html": "If direction is ASCII case-insensitive match with \"right\"\n and inline base direction of this selection's focus is\n ltr,\n set effectiveDirection to forwards." + "html": "If direction is ASCII case-insensitive match\n with \"right\" and inline base direction of this\n selection's focus is ltr, set\n effectiveDirection to forwards." }, { - "html": "If direction is ASCII case-insensitive match with \"left\"\n and inline base direction of this selection's focus is\n rtl,\n set effectiveDirection to forwards." + "html": "If direction is ASCII case-insensitive match\n with \"left\" and inline base direction of this\n selection's focus is rtl, set\n effectiveDirection to forwards." }, { - "html": "Set this selection's direction to effectiveDirection." + "html": "Set this selection's direction to\n effectiveDirection." }, { - "html": "If alter is ASCII case-insensitive match with \"extend\",\n set this selection's focus to the location\n as if the user had requested to extend selection by granularity." + "html": "If alter is ASCII case-insensitive match with\n \"extend\", set this selection's focus to the\n location as if the user had requested to extend selection by \n granularity." }, { - "html": "Otherwise, set this selection's focus and anchor to the location\n as if the user had requested to move selection by granularity." + "html": "Otherwise, set this selection's focus and\n anchor to the location as if the user had requested to move\n selection by granularity." } ] }, { "name": "schedule a selectionchange event", "href": "https://www.w3.org/TR/selection-api/#dfn-schedule-a-selectionchange-event", - "html": "To schedule a selectionchange event on a node target, run these steps:", + "html": "To schedule a selectionchange event on a node\n target, run these steps:", "rationale": "if", "steps": [ { - "html": "If target's has scheduled selectionchange event is true,\n abort these steps." + "html": "If target's has scheduled selectionchange\n event is true, abort these steps." }, { "html": "Queue a task on the user interaction task source to\n fire a selectionchange event on target." @@ -239,17 +239,17 @@ { "name": "fire a selectionchange event", "href": "https://www.w3.org/TR/selection-api/#dfn-fire-a-selectionchange-event", - "html": "To fire a selectionchange event on a node target, run these steps:", + "html": "To fire a selectionchange event on a node\n target, run these steps:", "rationale": "set", "steps": [ { - "html": "Set target's has scheduled selectionchange event to false." + "html": "Set target's has scheduled selectionchange\n event to false." }, { - "html": "If target is an element, fire an event named selectionchange,\n which bubbles and not cancelable, at target." + "html": "If target is an element, fire an event named\n selectionchange, which bubbles and not cancelable, at\n target." }, { - "html": "Otherwise, if target is a document, fire an event named selectionchange,\n which does not bubble and not cancelable, at target." + "html": "Otherwise, if target is a document, fire an\n event named selectionchange, which does not bubble\n and not cancelable, at target." } ] } diff --git a/tr/algorithms/webgpu.json b/tr/algorithms/webgpu.json index 4ce6da22957b..043a5a2f8b64 100644 --- a/tr/algorithms/webgpu.json +++ b/tr/algorithms/webgpu.json @@ -6730,7 +6730,7 @@ { "name": "GPUCanvasContext.configure", "href": "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-configure-configuration-configuration", - "html": "\n \n \n \n \n \n
Arguments for the GPUCanvasContext.configure(configuration) method.
Parameter \n Type \n Nullable \n Optional \n Description \n
configuration \n GPUCanvasConfiguration\n \n \n Desired configuration for the context. \n
", + "html": "\n \n \n \n \n \n
Arguments for the GPUCanvasContext.configure(configuration) method.
Parameter \n Type \n Nullable \n Optional \n Description \n
configuration \n GPUCanvasConfiguration\n \n \n Desired configuration for the context. \n
", "rationale": ".algorithm", "steps": [ { @@ -6762,7 +6762,7 @@ { "name": "GPUCanvasContext.configure", "href": "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-configure-configuration-configuration", - "html": "\n \n \n \n \n \n
Arguments for the GPUCanvasContext.configure(configuration) method.
Parameter \n Type \n Nullable \n Optional \n Description \n
configuration \n GPUCanvasConfiguration\n \n \n Desired configuration for the context. \n
", + "html": "\n \n \n \n \n \n
Arguments for the GPUCanvasContext.configure(configuration) method.
Parameter \n Type \n Nullable \n Optional \n Description \n
configuration \n GPUCanvasConfiguration\n \n \n Desired configuration for the context. \n
", "rationale": "if", "steps": [ { @@ -6787,18 +6787,31 @@ ] }, { - "name": "GPUCanvasContext.getCurrentTexture", + "name": "GPUCanvasContext.getConfiguration", "html": "Content timeline steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If this.[[configuration]] is null,\nthrow an InvalidStateError and return.

" + "html": "

Let configuration be a copy of this.[[configuration]].

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

Return configuration.

" + } + ] + }, + { + "name": "GPUCanvasContext.getCurrentTexture", + "html": "Content timeline steps:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If this.[[configuration]] is null,\nthrow an InvalidStateError and return.

" }, { "html": "

Assert this.[[textureDescriptor]] is not null.

" }, { - "html": "

Let device be this.[[configuration]].device.

" + "html": "

Let device be this.[[configuration]].device.

" }, { "html": "If this.[[currentTexture]] is null:", @@ -6826,11 +6839,11 @@ { "name": "get a copy of the image contents of a context", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-get-a-copy-of-the-image-contents-of-a-context", - "html": "To get a copy of the image contents of a context: \n

Arguments:

\n \n

Returns: image contents

\n

Content timeline steps:

", + "html": "To get a copy of the image contents of a context: \n

Arguments:

\n \n

Returns: image contents

\n

Content timeline steps:

", "rationale": ".algorithm", "steps": [ { - "html": "If context.[[configuration]] is null:", + "html": "If context.[[configuration]] is null:", "rationale": "return", "steps": [ { @@ -6845,7 +6858,7 @@ "html": "

Let snapshot be a copy of context.[[drawingBuffer]].

" }, { - "html": "

Let alphaMode be context.[[configuration]].alphaMode.

" + "html": "

Let alphaMode be context.[[configuration]].alphaMode.

" }, { "html": "
\n
If alphaMode is \"opaque\":\n
\n \n \n
Otherwise:\n
\n

Tag snapshot with alphaMode.

\n
", @@ -6883,14 +6896,14 @@ { "name": "Replace the drawing buffer", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-replace-the-drawing-buffer", - "html": "To Replace the drawing buffer of a GPUCanvasContext context, run\n the following content timeline steps:", + "html": "To Replace the drawing buffer of a GPUCanvasContext context, run\n the following content timeline steps:", "rationale": ".algorithm", "steps": [ { "html": "

Expire the current texture of context.

" }, { - "html": "

Let configuration be context.[[configuration]].

" + "html": "

Let configuration be context.[[configuration]].

" }, { "html": "

Set context.[[drawingBuffer]] to a transparent black image of the same\nsize as context.canvas.

\n " @@ -6900,7 +6913,7 @@ { "name": "Expire the current texture", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-expire-the-current-texture", - "html": "To Expire the current texture of a GPUCanvasContext context, run\n the following content timeline steps:", + "html": "To Expire the current texture of a GPUCanvasContext context, run\n the following content timeline steps:", "rationale": ".algorithm", "steps": [ { @@ -6919,7 +6932,7 @@ }, { "name": "get the bitmap of a WebGPU canvas", - "html": "When the \"bitmap\" is read from an HTMLCanvasElement or OffscreenCanvas with a GPUCanvasContext context, run the following content timeline steps:", + "html": "When the \"bitmap\" is read from an HTMLCanvasElement or OffscreenCanvas with a GPUCanvasContext context, run the following content timeline steps:", "rationale": ".algorithm", "steps": [ { @@ -6930,7 +6943,7 @@ { "name": "updating the rendering of a WebGPU canvas", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-updating-the-rendering-of-a-webgpu-canvas", - "html": "When updating the rendering of a WebGPU canvas (an HTMLCanvasElement or an OffscreenCanvas with a placeholder canvas element)\n with a GPUCanvasContext context, which occurs in the following sub-steps of the event loop processing model, run the following content timeline steps: \n \n \n

Run the following steps:

", + "html": "When updating the rendering of a WebGPU canvas (an HTMLCanvasElement or an OffscreenCanvas with a placeholder canvas element)\n with a GPUCanvasContext context, which occurs in the following sub-steps of the event loop processing model, run the following content timeline steps: \n \n \n

Run the following steps:

", "rationale": ".algorithm", "steps": [ { @@ -6940,7 +6953,7 @@ }, { "name": "transferToImageBitmap from WebGPU", - "html": "When transferToImageBitmap() is called on a canvas with GPUCanvasContext context, after creating an ImageBitmap from the canvas’s bitmap,\n run the following content timeline steps:", + "html": "When transferToImageBitmap() is called on a canvas with GPUCanvasContext context, after creating an ImageBitmap from the canvas’s bitmap,\n run the following content timeline steps:", "rationale": ".algorithm", "steps": [ { @@ -6951,14 +6964,14 @@ { "name": "update the canvas size", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-update-the-canvas-size", - "html": "When an HTMLCanvasElement or OffscreenCanvas canvas with a GPUCanvasContext context has its width or height attributes set, update the canvas size by running the following content timeline steps:", + "html": "When an HTMLCanvasElement or OffscreenCanvas canvas with a GPUCanvasContext context has its width or height attributes set, update the canvas size by running the following content timeline steps:", "rationale": ".algorithm", "steps": [ { "html": "

Replace the drawing buffer of context.

" }, { - "html": "

Let configuration be context.[[configuration]]

" + "html": "

Let configuration be context.[[configuration]]

" }, { "html": "If configuration is not null:", @@ -7086,7 +7099,7 @@ { "name": "Dispatch error", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-dispatch-error", - "html": "To dispatch an error GPUError error on GPUDevice device, run the following device timeline steps: \n
\n Device timeline steps: \n \n \n
\n
\n Content timeline steps: \n \n \n
", + "html": "To dispatch an error GPUError error on GPUDevice device, run the following device timeline steps: \n
\n Device timeline steps: \n \n \n
\n
\n Content timeline steps: \n \n \n
", "rationale": ".algorithm", "steps": [ { @@ -7105,14 +7118,14 @@ ] }, { - "html": "

Otherwise issue the following steps to the content timeline:

" + "html": "

Otherwise issue the following steps to the content timeline:

" } ] }, { "name": "Dispatch error", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-dispatch-error", - "html": "To dispatch an error GPUError error on GPUDevice device, run the following device timeline steps: \n
\n Device timeline steps: \n \n \n
\n
\n Content timeline steps: \n \n \n
", + "html": "To dispatch an error GPUError error on GPUDevice device, run the following device timeline steps: \n
\n Device timeline steps: \n \n \n
\n
\n Content timeline steps: \n \n \n
", "rationale": "if", "steps": [ { @@ -7156,11 +7169,11 @@ }, { "name": "GPUDevice.popErrorScope", - "html": "Content timeline steps:", + "html": "Content timeline steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let contentTimeline be the current Content timeline.

" + "html": "

Let contentTimeline be the current Content timeline.

" }, { "html": "

Let promise be a new promise.

" @@ -7183,7 +7196,7 @@ "rationale": "issue", "steps": [ { - "html": "Content timeline steps:", + "html": "Content timeline steps:", "rationale": "resolve", "steps": [ { @@ -7197,7 +7210,7 @@ ] }, { - "html": "Content timeline steps:", + "html": "Content timeline steps:", "rationale": "reject", "steps": [ { @@ -7218,7 +7231,7 @@ }, { "name": "GPUDevice.popErrorScope", - "html": "Content timeline steps:", + "html": "Content timeline steps:", "rationale": "resolve", "steps": [ { @@ -7988,7 +8001,7 @@ { "name": "validate GPUColor shape", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-validate-gpucolor-shape", - "html": "validate GPUColor shape(color) \n

Arguments:

\n \n

Returns: undefined

\n

Content timeline steps:

", + "html": "validate GPUColor shape(color) \n

Arguments:

\n \n

Returns: undefined

\n

Content timeline steps:

", "rationale": ".algorithm", "steps": [ { @@ -7999,7 +8012,7 @@ { "name": "validate GPUOrigin2D shape", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-validate-gpuorigin2d-shape", - "html": "validate GPUOrigin2D shape(origin) \n

Arguments:

\n \n

Returns: undefined

\n

Content timeline steps:

", + "html": "validate GPUOrigin2D shape(origin) \n

Arguments:

\n \n

Returns: undefined

\n

Content timeline steps:

", "rationale": ".algorithm", "steps": [ { @@ -8010,7 +8023,7 @@ { "name": "validate GPUOrigin3D shape", "href": "https://www.w3.org/TR/webgpu/#abstract-opdef-validate-gpuorigin3d-shape", - "html": "validate GPUOrigin3D shape(origin) \n

Arguments:

\n \n

Returns: undefined

\n

Content timeline steps:

", + "html": "validate GPUOrigin3D shape(origin) \n

Arguments:

\n \n

Returns: undefined

\n

Content timeline steps:

", "rationale": ".algorithm", "steps": [ { @@ -8021,7 +8034,7 @@ { "name": "validate GPUExtent3D shape", "href": "https://www.w3.org/TR/webgpu/#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/tr/dfns/webgpu.json b/tr/dfns/webgpu.json index 72a9dcd33b6f..1278e007ac06 100644 --- a/tr/dfns/webgpu.json +++ b/tr/dfns/webgpu.json @@ -23163,6 +23163,27 @@ }, "definedIn": "dt" }, + { + "id": "dom-gpucanvascontext-getconfiguration", + "href": "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-getconfiguration", + "linkingText": [ + "getConfiguration()" + ], + "localLinkingText": [], + "type": "method", + "for": [ + "GPUCanvasContext" + ], + "access": "public", + "informative": false, + "heading": { + "id": "canvas-context", + "href": "https://www.w3.org/TR/webgpu/#canvas-context", + "title": "GPUCanvasContext", + "number": "21.2" + }, + "definedIn": "dt" + }, { "id": "dom-gpucanvascontext-getcurrenttexture", "href": "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-getcurrenttexture", diff --git a/tr/idl/webgpu.idl b/tr/idl/webgpu.idl index ce9226d7c185..531603024a09 100644 --- a/tr/idl/webgpu.idl +++ b/tr/idl/webgpu.idl @@ -1183,6 +1183,7 @@ interface GPUCanvasContext { undefined configure(GPUCanvasConfiguration configuration); undefined unconfigure(); + GPUCanvasConfiguration? getConfiguration(); GPUTexture getCurrentTexture(); }; diff --git a/tr/ids/webgpu.json b/tr/ids/webgpu.json index a04afbfe970c..1aabd4c69c17 100644 --- a/tr/ids/webgpu.json +++ b/tr/ids/webgpu.json @@ -8889,13 +8889,15 @@ "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configure-configuration-configuration", "https://www.w3.org/TR/webgpu/#ref-for-idl-undefined%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-unconfigure", + "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A1", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-getconfiguration", "https://www.w3.org/TR/webgpu/#ref-for-gputexture%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-getcurrenttexture%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-content-timeline-property%E2%91%A2", "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-canvas", "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-configuration-slot", - "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A1", + "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-unconfigure%E2%91%A0", "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-texturedescriptor-slot", "https://www.w3.org/TR/webgpu/#ref-for-gputexturedescriptor%E2%91%A6", @@ -8932,7 +8934,7 @@ "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configure%E2%91%A3", "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-configure-configuration-configuration", - "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A2", + "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-device", "https://www.w3.org/TR/webgpu/#ref-for-sec-returnifabrupt-shorthands%E2%91%A3%E2%91%A8", @@ -8964,21 +8966,29 @@ "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-texturedescriptor-slot%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-replace-the-drawing-buffer%E2%91%A3", + "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-getconfiguration", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A8", + "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A4", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A3", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-getconfiguration%E2%91%A0", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-tonemapping", + "https://www.w3.org/TR/webgpu/#ref-for-descdef-media-dynamic-range", "https://www.w3.org/TR/webgpu/#dom-gpucanvascontext-getcurrenttexture", "https://www.w3.org/TR/webgpu/#ref-for-gputexture%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A8", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-getcurrenttexture%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-automatic-expiry-task-source%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-updating-the-rendering-of-a-webgpu-canvas%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-replace-the-drawing-buffer%E2%91%A4", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-gputexture%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A3", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-invalidstateerror", "https://www.w3.org/TR/webgpu/#ref-for-assert%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-texturedescriptor-slot%E2%91%A1", - "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A4", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-device%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-currenttexture-slot%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-replace-the-drawing-buffer%E2%91%A5", @@ -8999,24 +9009,24 @@ "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-expire-the-current-texture%E2%91%A1", "https://www.w3.org/TR/webgpu/#ref-for-gputexture%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webgpu/#abstract-opdef-get-a-copy-of-the-image-contents-of-a-context", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A5", - "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-canvas%E2%91%A2", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A6", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-canvas%E2%91%A2", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-unconfigure%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-currenttexture-slot%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-drawingbuffer-slot%E2%91%A2", - "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A7", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-alphamode%E2%91%A1", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasalphamode-opaque%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-currenttexture-slot%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-replace-the-drawing-buffer%E2%91%A6", "https://www.w3.org/TR/webgpu/#abstract-opdef-replace-the-drawing-buffer", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-expire-the-current-texture%E2%91%A2", - "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A8", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-drawingbuffer-slot%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-canvas%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-dom-predefinedcolorspace-srgb", @@ -9026,8 +9036,8 @@ "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-get-a-copy-of-the-image-contents-of-a-context%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpustoreop-discard%E2%91%A4", "https://www.w3.org/TR/webgpu/#abstract-opdef-expire-the-current-texture", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-currenttexture-slot%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-currenttexture-slot%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webgpu/#ref-for-dom-gputexture-destroy%E2%91%A2", @@ -9036,8 +9046,8 @@ "https://www.w3.org/TR/webgpu/#canvas-hooks", "https://www.w3.org/TR/webgpu/#ref-for-htmlcanvaselement%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-offscreencanvas%E2%91%A5", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-get-a-copy-of-the-image-contents-of-a-context%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-htmlcanvaselement%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-offscreencanvas%E2%91%A6", @@ -9054,9 +9064,9 @@ "https://www.w3.org/TR/webgpu/#ref-for-htmlcanvaselement%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webgpu/#ref-for-offscreencanvas%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-offscreencanvas-placeholder%E2%91%A0", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-event-loop-processing-model%E2%91%A0", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-dom-animationframeprovider-requestanimationframe%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-serviceworkerglobalscope", "https://www.w3.org/TR/webgpu/#ref-for-sharedworkerglobalscope", @@ -9066,9 +9076,9 @@ "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-getcurrenttexture%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-offscreencanvas%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webgpu/#ref-for-dom-offscreencanvas-transfertoimagebitmap%E2%91%A1", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-imagebitmap%E2%91%A3", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-replace-the-drawing-buffer%E2%91%A7", "https://www.w3.org/TR/webgpu/#canvas-configuration", "https://www.w3.org/TR/webgpu/#supported-context-formats", @@ -9077,9 +9087,9 @@ "https://www.w3.org/TR/webgpu/#ref-for-dom-gputextureformat-bgra8unorm%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-dom-gputextureformat-rgba8unorm%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-dom-gputextureformat-rgba16float%E2%91%A0", - "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A3", + "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-format%E2%91%A3", - "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A4", + "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-device%E2%91%A1", "https://www.w3.org/TR/webgpu/#ref-for-dom-gputextureformat-bgra8unorm-srgb%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-dom-gputextureformat-bgra8unorm%E2%91%A3", @@ -9107,10 +9117,10 @@ "https://www.w3.org/TR/webgpu/#ref-for-predefinedcolorspace%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-colorspace%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvastonemapping", - "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-tonemapping", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-tonemapping%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-gpucanvasalphamode%E2%91%A1", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-alphamode%E2%91%A4", - "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A5", + "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A7", "https://www.w3.org/TR/webgpu/#dom-gpucanvasconfiguration-device", "https://www.w3.org/TR/webgpu/#ref-for-gpudevice%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-gpudevice%E2%91%A5%E2%91%A8", @@ -9138,12 +9148,12 @@ "https://www.w3.org/TR/webgpu/#ref-for-gpucanvasalphamode%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-getcurrenttexture%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webgpu/#example-239a6233", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-gpudevice%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webgpu/#abstract-opdef-gputexturedescriptor-for-the-canvas-and-configuration", "https://www.w3.org/TR/webgpu/#ref-for-htmlcanvaselement%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-offscreencanvas%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A6", + "https://www.w3.org/TR/webgpu/#ref-for-dictdef-gpucanvasconfiguration%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-gputexturedescriptor%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-dom-gputexturedescriptor-size%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-dom-gputexturedescriptor-format%E2%91%A0%E2%91%A3", @@ -9161,17 +9171,17 @@ "https://www.w3.org/TR/webgpu/#ref-for-offscreencanvas%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-dom-offscreencanvas-height", "https://www.w3.org/TR/webgpu/#canvas-color-space", - "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-tonemapping%E2%91%A0", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvasconfiguration-tonemapping%E2%91%A1", "https://www.w3.org/TR/webgpu/#context-sizing", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configure%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-replace-the-drawing-buffer%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-htmlcanvaselement%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-offscreencanvas%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webgpu/#ref-for-gpucanvascontext%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webgpu/#abstract-opdef-update-the-canvas-size", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-replace-the-drawing-buffer%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-configuration-slot%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpucanvascontext-texturedescriptor-slot%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-gputexturedescriptor-for-the-canvas-and-configuration%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-gputexturedescriptor%E2%91%A8", @@ -9200,7 +9210,7 @@ "https://www.w3.org/TR/webgpu/#ref-for-eventdef-gpudevice-uncapturederror%E2%91%A1", "https://www.w3.org/TR/webgpu/#ref-for-gpudevice%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpudevice-lost%E2%91%A4", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpubuffer-mapasync%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webgpu/#fatal-errors", "https://www.w3.org/TR/webgpu/#enumdef-gpudevicelostreason", @@ -9355,8 +9365,8 @@ "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-current-error-scope", "https://www.w3.org/TR/webgpu/#ref-for-list-append%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpu-error-scope-errors-slot", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-queue-a-global-task-for-gpudevice%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-gpuuncapturederrorevent", "https://www.w3.org/TR/webgpu/#ref-for-eventdef-gpudevice-uncapturederror%E2%91%A3", @@ -9373,7 +9383,7 @@ "https://www.w3.org/TR/webgpu/#dom-gpudevice-pusherrorscope-filter-filter", "https://www.w3.org/TR/webgpu/#ref-for-enumdef-gpuerrorfilter%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-idl-undefined%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-device-timeline%E2%91%A1%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-device-timeline%E2%91%A1%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-gpu-error-scope%E2%91%A7", @@ -9387,19 +9397,19 @@ "https://www.w3.org/TR/webgpu/#ref-for-gpudevice%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-idl-promise%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-gpuerror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webgpu/#ref-for-a-new-promise%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-device-timeline%E2%91%A1%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-device-timeline%E2%91%A1%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpuobjectbase-device-slot%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-dom-device-destroy-started-slot%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-abstract-opdef-invalid%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webgpu/#ref-for-resolve%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpudevice-errorscopestack-slot%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-list-size%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-reject%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webgpu/#ref-for-operationerror%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-stack-pop%E2%91%A0", @@ -9412,7 +9422,7 @@ "https://www.w3.org/TR/webgpu/#ref-for-gpuvalidationerror%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpuerror-message%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-dom-gpudevice-poperrorscope%E2%91%A3", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-resolve%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webgpu/#example-9d93bf47", "https://www.w3.org/TR/webgpu/#ref-for-gpudevice%E2%91%A7%E2%91%A4", @@ -9956,7 +9966,7 @@ "https://www.w3.org/TR/webgpu/#abstract-opdef-validate-gpucolor-shape", "https://www.w3.org/TR/webgpu/#ref-for-typedefdef-gpucolor%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-idl-undefined%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webgpu/#ref-for-list-size%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webgpu/#dictdef-gpuorigin2ddict", @@ -9978,7 +9988,7 @@ "https://www.w3.org/TR/webgpu/#abstract-opdef-validate-gpuorigin2d-shape", "https://www.w3.org/TR/webgpu/#ref-for-typedefdef-gpuorigin2d%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-idl-undefined%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webgpu/#ref-for-list-size%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webgpu/#dictdef-gpuorigin3ddict", @@ -10005,7 +10015,7 @@ "https://www.w3.org/TR/webgpu/#abstract-opdef-validate-gpuorigin3d-shape", "https://www.w3.org/TR/webgpu/#ref-for-typedefdef-gpuorigin3d%E2%91%A2", "https://www.w3.org/TR/webgpu/#ref-for-idl-undefined%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webgpu/#ref-for-list-size%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webgpu/#dictdef-gpuextent3ddict", @@ -10045,7 +10055,7 @@ "https://www.w3.org/TR/webgpu/#abstract-opdef-validate-gpuextent3d-shape", "https://www.w3.org/TR/webgpu/#ref-for-typedefdef-gpuextent3d%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webgpu/#ref-for-idl-undefined%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webgpu/#ref-for-content-timeline%E2%91%A0%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webgpu/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-list-size%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webgpu/#ref-for-list-size%E2%91%A0%E2%91%A7", @@ -10578,6 +10588,7 @@ "https://www.w3.org/TR/webgpu/#0204d188", "https://www.w3.org/TR/webgpu/#ceacaa1c", "https://www.w3.org/TR/webgpu/#6bff5e92", + "https://www.w3.org/TR/webgpu/#4eafbedd", "https://www.w3.org/TR/webgpu/#e0498b8f", "https://www.w3.org/TR/webgpu/#cb149485", "https://www.w3.org/TR/webgpu/#99f61772", @@ -10713,6 +10724,7 @@ "https://www.w3.org/TR/webgpu/#biblio-webidl", "https://www.w3.org/TR/webgpu/#biblio-wgsl", "https://www.w3.org/TR/webgpu/#informative", + "https://www.w3.org/TR/webgpu/#biblio-mediaqueries-5", "https://www.w3.org/TR/webgpu/#biblio-service-workers", "https://www.w3.org/TR/webgpu/#biblio-vulkan", "https://www.w3.org/TR/webgpu/#idl-index", diff --git a/tr/ids/webxr.json b/tr/ids/webxr.json index e7121bad5d8a..727988de32fd 100644 --- a/tr/ids/webxr.json +++ b/tr/ids/webxr.json @@ -2829,6 +2829,7 @@ "https://www.w3.org/TR/webxr/#infopaneltitle-for-dom-xrtargetraymode-tracked-pointer", "https://www.w3.org/TR/webxr/#infopanel-for-dom-xrtargetraymode-tracked-pointer", "https://www.w3.org/TR/webxr/#infopaneltitle-for-dom-xrtargetraymode-tracked-pointer", + "https://www.w3.org/TR/webxr/#ref-for-xrsystem%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webxr/#dom-xrtargetraymode-screen", "https://www.w3.org/TR/webxr/#infopanel-for-dom-xrtargetraymode-screen", "https://www.w3.org/TR/webxr/#infopaneltitle-for-dom-xrtargetraymode-screen", @@ -3910,7 +3911,7 @@ "https://www.w3.org/TR/webxr/#infopaneltitle-for-dom-xrreferencespaceevent-transform", "https://www.w3.org/TR/webxr/#ref-for-dom-xrreferencespaceevent-referencespace%E2%91%A0", "https://www.w3.org/TR/webxr/#ref-for-xrspace-native-origin%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webxr/#ref-for-xrsystem%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webxr/#ref-for-xrsystem%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webxr/#ref-for-dom-xrreferencespaceevent-referencespace%E2%91%A1", "https://www.w3.org/TR/webxr/#ref-for-dom-xrreferencespaceeventinit-referencespace", "https://www.w3.org/TR/webxr/#event-types", @@ -3920,7 +3921,7 @@ "https://www.w3.org/TR/webxr/#infopaneltitle-for-eventdef-xrsystem-devicechange", "https://www.w3.org/TR/webxr/#infopanel-for-eventdef-xrsystem-devicechange", "https://www.w3.org/TR/webxr/#infopaneltitle-for-eventdef-xrsystem-devicechange", - "https://www.w3.org/TR/webxr/#ref-for-xrsystem%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webxr/#ref-for-xrsystem%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webxr/#ref-for-immersive-xr-device%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webxr/#ref-for-concept-origin%E2%91%A2", "https://www.w3.org/TR/webxr/#ref-for-concept-event-fire%E2%91%A1", diff --git a/tr/index.json b/tr/index.json index e8f7ca60928e..c55eaa5112bd 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-09-27T01:34:37.602Z", + "date": "2024-09-28T01:34:19.694Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -711,7 +711,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "27 September 2024", + "date": "28 September 2024", "links": "links/av1-spec.json" }, { @@ -16313,11 +16313,11 @@ ], "crawled": "https://www.w3.org/TR/selection-api/", "crawlCacheInfo": { - "lastModified": "Thu, 26 Sep 2024 21:55:53 GMT" + "lastModified": "Fri, 27 Sep 2024 19:23:39 GMT" }, "generator": "respec", - "date": "26 September 2024", - "revision": "938f824d935ddd9d1fd86722eeb75e82830ed976", + "date": "27 September 2024", + "revision": "45f8fe831f5c6231f941f845071c770e7b9bbe76", "algorithms": "algorithms/selection-api.json", "links": "links/selection-api.json", "refs": "refs/selection-api.json", @@ -20229,11 +20229,11 @@ ], "crawled": "https://www.w3.org/TR/webgpu/", "crawlCacheInfo": { - "lastModified": "Thu, 26 Sep 2024 06:47:25 GMT" + "lastModified": "Fri, 27 Sep 2024 22:33:30 GMT" }, "generator": "bikeshed", - "date": "26 September 2024", - "revision": "1f32757f1283307a3e1791c33d9bbb70a665fe4e", + "date": "27 September 2024", + "revision": "7cffc109d9e971dfa4a950466b798a4cdf3294a7", "algorithms": "algorithms/webgpu.json", "links": "links/webgpu.json", "refs": "refs/webgpu.json", @@ -21382,11 +21382,11 @@ ], "crawled": "https://www.w3.org/TR/webxr/", "crawlCacheInfo": { - "lastModified": "Tue, 24 Sep 2024 18:15:46 GMT" + "lastModified": "Fri, 27 Sep 2024 17:21:01 GMT" }, "generator": "bikeshed", - "date": "24 September 2024", - "revision": "08eb183502b6f93303e39b1cbaa1475e9bbe836f", + "date": "27 September 2024", + "revision": "889804df228d353770f997a9b72cf018b400f7da", "algorithms": "algorithms/webxr.json", "links": "links/webxr.json", "refs": "refs/webxr.json", diff --git a/tr/links/webgpu.json b/tr/links/webgpu.json index bc28cdfda73e..40064f0541ac 100644 --- a/tr/links/webgpu.json +++ b/tr/links/webgpu.json @@ -78,6 +78,7 @@ }, "https://www.w3.org/TR/hr-time-3/": {}, "https://www.w3.org/TR/i18n-glossary/": {}, + "https://www.w3.org/TR/mediaqueries-5/": {}, "https://www.w3.org/TR/service-workers/": {}, "https://www.w3.org/TR/webcodecs/": {}, "https://www.w3.org/groups/wg/gpu": {}, @@ -376,6 +377,11 @@ "dfn-valid" ] }, + "https://www.w3.org/TR/mediaqueries-5/": { + "anchors": [ + "descdef-media-dynamic-range" + ] + }, "https://www.w3.org/TR/service-workers/": { "anchors": [ "serviceworkerglobalscope" diff --git a/tr/refs/webgpu.json b/tr/refs/webgpu.json index cdb404bb6fc9..5ca74bf62d97 100644 --- a/tr/refs/webgpu.json +++ b/tr/refs/webgpu.json @@ -51,6 +51,10 @@ } ], "informative": [ + { + "name": "MEDIAQUERIES-5", + "url": "https://www.w3.org/TR/mediaqueries-5/" + }, { "name": "SERVICE-WORKERS", "url": "https://www.w3.org/TR/service-workers/"