From e263be739ddb096afbca7e85d758861ba59b3914 Mon Sep 17 00:00:00 2001 From: reffy-bot <> Date: Wed, 20 Nov 2024 01:35:32 +0000 Subject: [PATCH] Update of TR report from new reffy run Using reffy commit 17.2.10. --- tr/algorithms/edit-context.json | 328 +++++-- tr/algorithms/pointerevents3.json | 6 +- tr/algorithms/webnn.json | 144 +-- tr/dfns/edit-context.json | 1519 +++++++++++++++++++---------- tr/dfns/pointerevents3.json | 44 - tr/dfns/webnn.json | 25 +- tr/events/edit-context.json | 63 +- tr/headings/edit-context.json | 167 +++- tr/headings/pointerevents3.json | 2 +- tr/idl/edit-context.idl | 50 +- tr/idl/pointerevents.idl | 2 - tr/ids/WGSL.json | 65 +- tr/ids/edit-context.json | 605 ++++++++---- tr/ids/mathml4.json | 43 +- tr/ids/pointerevents3.json | 203 ++-- tr/ids/webnn.json | 498 +++++++--- tr/index.json | 33 +- tr/links/edit-context.json | 127 ++- tr/links/pointerevents3.json | 47 +- tr/refs/edit-context.json | 19 +- tr/refs/pointerevents3.json | 4 +- 21 files changed, 2584 insertions(+), 1410 deletions(-) diff --git a/tr/algorithms/edit-context.json b/tr/algorithms/edit-context.json index c543ef833b01..fe8857244327 100644 --- a/tr/algorithms/edit-context.json +++ b/tr/algorithms/edit-context.json @@ -5,140 +5,356 @@ }, "algorithms": [ { - "html": "If in a composition:", - "rationale": "fire", + "html": "
\n
Input
\n
editContext
\n
Output
\n
None
\n
", + "rationale": ".algorithm", "steps": [ { - "html": "Fire an event named \"beforeinput\", if applicable to the user text input, at the focused element. If the beforeinput event is cancelled, abort these steps." + "html": "If this's local name is neither a valid shadow host name nor \"canvas\", then throw a \"NotSupportedError\" DOMException." }, { - "html": "Update the text, selectionStart, selectionEnd, compositionRangeStart, compositionRangeEnd, and isInComposition properties of the activated EditContext." + "html": "If editContext is not null, then:", + "rationale": "if", + "steps": [ + { + "html": "If editContext's associated element is equal to this, then terminate these steps." + }, + { + "html": "If editContext's associated element is not null, then throw a \"NotSupportedError\" DOMException." + }, + { + "html": "Set editContext's associated element to this." + } + ] }, { - "html": "Fire an event named \"compositionstart\" at the activated EditContext if it's a start of a composition." + "html": "Let oldEditContext be the value of this's internal [[EditContext]] slot." }, { - "html": "Fire an event named \"textupdate\" at the activated EditContext." + "html": "If oldEditContext is not null, then:", + "rationale": "assert", + "steps": [ + { + "html": "Assert: oldEditContext's associated element is equal to this." + }, + { + "html": "Set oldEditContext's associated element to null." + } + ] }, { - "html": "Fire an event named \"textformateupdate\" at the activated EditContext." + "html": "Set this's internal [[EditContext]] slot to be editContext." }, { - "html": "Fire an event named \"characterboundsupdate\" at the activated EditContext." + "html": "If oldEditContext is not null and oldEditContext is this's\n node document's\n active EditContext, then run the steps to deactivate an EditContext\n with oldEditContext." + } + ] + }, + { + "html": "
\n
Input
\n
element, the HTMLElement receiving the input
\n
Output
\n
None
\n
", + "rationale": ".algorithm", + "steps": [ + { + "html": "Let editContext be element's\n node document's\n active EditContext" + }, + { + "html": "If editContext is null, return." }, { - "html": "Fire an event named \"compositionend\" at the activated EditContext if it's an end of a composition." + "html": "

\n Run the steps to Update the EditContext given editContext and the\n Text Edit Context's text state's text, text formats,\n selection start, selection end, is composing, composition start,\n and composition end.\n

" } ] }, { - "html": "If not in a composition:", - "rationale": "fire", + "html": "
\n
Input
\n
editContext, an EditContext
\n
text, a string
\n
textFormats, an array of text formats from the Text Input Service
\n
selectionStart, the new position for the start of the selection
\n
selectionEnd, the new position for the end of the selection
\n
isComposing, a boolean indicating whether composition should be active at the end of the update
\n
replacementRangeStart, the start position of the current composition (0 if there is no composition)
\n
replacementRangeEnd, the end position of the current composition (0 if there is no composition)
\n
Output
\n
None
\n
", + "rationale": ".algorithm", "steps": [ { - "html": "Fire an event named \"beforeinput\", if applicable to the user text input, at the focused element. If the beforeinput event is cancelled, abort these steps." + "html": "If isComposing is true, text is not empty, and editContext's is composing is false.", + "rationale": "fire", + "steps": [ + { + "html": "Fire an event named compositionstart at editContext using CompositionEvent." + }, + { + "html": "set editContext's is composing to true." + } + ] + }, + { + "html": "If text is empty:", + "rationale": "if", + "steps": [ + { + "html": "If editContext's is composing is false, return." + }, + { + "html": "If editContext's is composing is true and isComposing is false, then:", + "rationale": "set", + "steps": [ + { + "html": "Set editContext's is composing to false." + }, + { + "html": "Fire an event named\n compositionend\n at editContext using CompositionEvent." + }, + { + "html": "Return." + } + ] + } + ] + }, + { + "html": "If editContext's is composing is true, then:", + "rationale": "let", + "steps": [ + { + "html": "Let insertionStart be replacementRangeStart." + }, + { + "html": "Let insertionEnd be replacementRangeEnd." + } + ] + }, + { + "html": "Otherwise:", + "rationale": "let", + "steps": [ + { + "html": "Let insertionStart be selectionStart." + }, + { + "html": "Let insertionEnd be selectionEnd." + } + ] + }, + { + "html": "Replace the substring of editContext's text in the range of insertionStart and insertionEnd with text" + }, + { + "html": "Set editContext's selection start to selectionStart." + }, + { + "html": "Set editContext's selection end to selectionEnd." + }, + { + "html": "Set editContext's composition start to insertionStart." }, { - "html": "Update the text, selectionStart, selectionEnd, compositionRangeStart, compositionRangeEnd, and isInComposition properties of the activated EditContext." + "html": "Set editContext's composition end to editContext's composition start plus the length of text." }, { - "html": "Fire an event named \"textupdate\" at the activated EditContext." + "html": "Dispatch text update event given editContext and text." }, { - "html": "Fire an event named \"characterboundsupdate\" at the activated EditContext." + "html": "If editContext's is composing is true, then:", + "rationale": "dispatch", + "steps": [ + { + "html": "Dispatch text format update event given editContext and textFormats." + }, + { + "html": "Dispatch character bounds update event given editContext." + }, + { + "html": "If isComposing is false, then:", + "rationale": "set", + "steps": [ + { + "html": "Set editContext's is composing to false." + }, + { + "html": "Fire an event named\n compositionend\n at editContext using CompositionEvent." + } + ] + } + ] } ] }, { - "name": "EditContext/characterBounds()", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-characterbounds", - "html": "The method must follow these steps:", - "rationale": "if", + "html": "
\n
Input
\n
document, a Document
\n
Output
\n
None
\n
", + "rationale": ".algorithm", "steps": [ { - "html": "If the EditContext is not activated, abort these steps." + "html": "Let oldActiveEditContext be document's active EditContext." + }, + { + "html": "Let newActiveEditContext be the result of running the steps to determine the active EditContext given document." + }, + { + "html": "If oldActiveEditContext is not null, then run the steps to deactivate an EditContext given oldActiveEditContext." }, { - "html": "Return the cached character bounds. The offset of the rectangle is expressed relative to the origin of the associated element." + "html": "If newActiveEditContext is not null, then:", + "rationale": "update", + "steps": [ + { + "html": "Update the Text Edit Context's text state to match the values in editContext's text state." + } + ] + }, + { + "html": "Set the document's active EditContext to newActiveEditContext." } ] }, { - "name": "EditContext/updateSelection()", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselection", - "html": "The method must follow these steps:", - "rationale": "if", + "html": "
\n
Input
\n
editContext, an EditContext
\n
text, a string
\n
Output
\n
None
\n
", + "rationale": ".algorithm", "steps": [ { - "html": "If the EditContext is not activated, abort these steps." - }, + "html": "Fire an event named \"textupdate\" at editContext using TextUpdateEvent, with\n text initialized to text,\n selectionStart initialized to |editContext's selection start, and\n selectionEnd initialized to editContext's selection end." + } + ] + }, + { + "html": "
\n
Input
\n
editContext, an EditContext
\n
textFormats, an array of text formats from the Text Input Service
\n
Output
\n
None
\n
", + "rationale": ".algorithm", + "steps": [ { - "html": "If start > end, abort these steps." + "html": "Let formats be an array of TextFormat, initially empty." }, { - "html": "set selectionStart to start" + "html": "For each text format format in textFormats,", + "rationale": "let", + "steps": [ + { + "html": "Let textFormat be a new TextFormat. with rangeStart, rangeEnd, underlineStyle, underlineThickness." + }, + { + "html": "Set textFormat's rangeStart to format's range start." + }, + { + "html": "Set textFormat's rangeEnd to format's range end." + }, + { + "html": "Set textFormat's underlineStyle to format's underline style." + }, + { + "html": "Set textFormat's underlineThickness to format's underline thickness." + }, + { + "html": "Append textFormat to formats" + } + ] }, { - "html": "set selectionEnd to end" + "html": "Fire an event named \"textformatupdate\" at editContext using TextFormatUpdateEvent with\n the TextFormatUpdateEvent's text format list initialized to formats." } ] }, { - "name": "EditContext/updateSelectionBound()", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselectionbound", - "html": "The method must follow these steps:", - "rationale": "if", + "html": "
\n
Input
\n
editContext, an EditContext
\n
Output
\n
None
\n
", + "rationale": ".algorithm", "steps": [ { - "html": "If the EditContext is not activated, abort these steps." + "html": "Fire an event named \"characterboundsupdate\" at editContext using CharacterBoundsUpdateEvent with\n rangeStart initialized to editContext's composition start and\n rangeEnd initialized to editContext's composition end." + } + ] + }, + { + "html": "
\n
Input
\n
editContext, an EditContext
\n
Output
\n
None
\n
", + "rationale": ".algorithm", + "steps": [ + { + "html": "Set editContext's is composing to false." }, { - "html": "set selectionBound to selectoinBound." + "html": "Fire an event named\n compositionend\n at editContext using CompositionEvent." } ] }, { - "name": "EditContext/updateControlBound()", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecontrolbound", - "html": "The method must follow these steps:", - "rationale": "if", + "html": "
\n
Input
\n
document, a Document
\n
Output
\n
An EditContext, or null.
\n
", + "rationale": ".algorithm", "steps": [ { - "html": "If the EditContext is not activated, abort these steps." + "html": "Let traversable be document's node navigable's top-level traversable." + }, + { + "html": "If traversable is null, return null." }, { - "html": "set controlBound to controlBound." + "html": "Let focused be the DOM anchor\n of the currently focused area of a top-level traversable\n given traversable." + }, + { + "html": "

If focused is null or if the shadow-including root of focused is not document, return null.

" + }, + { + "html": "Let editContext be null." + }, + { + "html": "While focused is not null and focused is editable:", + "rationale": "set", + "steps": [ + { + "html": "Set editContext to the value of focused's internal [[EditContext]] slot." + }, + { + "html": "Let parent be focused's parent." + }, + { + "html": "If parent is null and focused's root\n is a shadow root, let parent be focused's\n root's\n host." + }, + { + "html": "Set focused to parent." + } + ] + }, + { + "html": "Return editContext." } ] }, { - "name": "EditContext/updateCharacterBounds()", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecharacterbounds", - "html": "The method must follow these steps:", - "rationale": "if", + "html": "
\n
Input
\n
rangeStart, an unsigned long
\n
rangeEnd, an unsigned long
\n
newText, a DOMString
\n
Output
\n
None
\n
", + "rationale": ".algorithm", "steps": [ { - "html": "If the EditContext is not activated, abort these steps." - }, + "html": "Replace the substring of text in the range of rangeStart and rangeEnd with newText" + } + ] + }, + { + "html": "
\n
Input
\n
start, an unsigned long
\n
end, an unsigned long
\n
Output
\n
None
\n
", + "rationale": ".algorithm", + "steps": [ { - "html": "Set characterBoundsRangeStart to rangeStart." + "html": "set selection start to start" }, { - "html": "Set cached character bounds to characterBounds." + "html": "set selection end to end" + } + ] + }, + { + "html": "
\n
Input
\n
selectionBounds, a DOMRect
\n
Output
\n
None
\n
", + "rationale": ".algorithm", + "steps": [ + { + "html": "set selection bounds to selectionBounds" + } + ] + }, + { + "html": "
\n
Input
\n
controlBounds, a DOMRect
\n
Output
\n
None
\n
", + "rationale": ".algorithm", + "steps": [ + { + "html": "set control bounds to controlBounds" } ] }, { - "name": "EditContext/updateText()", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updatetext", - "html": "The method must follow these steps:", - "rationale": "if", + "html": "
\n
Input
\n
rangeStart, an unsigned long
\n
characterBounds, an array of DOMRect
\n
Output
\n
None
\n
", + "rationale": ".algorithm", "steps": [ { - "html": "If the EditContext is not activated, abort these steps." + "html": "set codepoint rects start index to rangeStart." }, { - "html": "Replace the string in the range of rangeStart and rangeEnd of text with text." + "html": "set codepoint rects to characterBounds." } ] } diff --git a/tr/algorithms/pointerevents3.json b/tr/algorithms/pointerevents3.json index 980898e1f00d..e16896066ba8 100644 --- a/tr/algorithms/pointerevents3.json +++ b/tr/algorithms/pointerevents3.json @@ -77,7 +77,7 @@ ] }, { - "html": "When a trusted PointerEvent is created, user agents SHOULD run the following steps for each event in the\n coalesced events list and predicted events list:", + "html": "When a trusted PointerEvent is created, user agents SHOULD run the following steps for each event in the\n coalesced events list and predicted events list:", "rationale": "set", "steps": [ { @@ -87,7 +87,7 @@ "html": "Set the event's cancelable and bubbles to false (as these events will never\n be dispatched in isolation)." }, { - "html": "Set the event's coalesced events list and predicted events list to an empty list." + "html": "Set the event's coalesced events list and predicted events list to an empty list." }, { "html": "Initialize all other attributes to default PointerEvent values." @@ -95,7 +95,7 @@ ] }, { - "html": "When a trusted PointerEvent's target is changed, user agents SHOULD, for each event in the\n coalesced events list and predicted events list:", + "html": "When a trusted PointerEvent's target is changed, user agents SHOULD, for each event in the\n coalesced events list and predicted events list:", "rationale": "set", "steps": [ { diff --git a/tr/algorithms/webnn.json b/tr/algorithms/webnn.json index 725f09c3b3da..5ceaf6e17e4e 100644 --- a/tr/algorithms/webnn.json +++ b/tr/algorithms/webnn.json @@ -687,13 +687,13 @@ "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s shape[axis] is greater than options.outputDataType's maximum value, throw a TypeError.

" + "html": "

If input’s shape[axis] is greater than options.outputDataType's maximum value, throw a TypeError.

" }, { "html": "

Let outputShape be the result of calculating reduction output sizes given input’s shape, « axis », and options.keepDimensions. If that returns failure, then throw a TypeError.

" }, { - "html": "

Let desc be the result of creating an MLOperandDescriptor given options.outputDataType and outputShape.

" + "html": "

Let desc be the result of creating an MLOperandDescriptor given options.outputDataType and outputShape.

" }, { "html": "Make graph connections:", @@ -776,7 +776,7 @@ "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If options.axis is not in the range 0 to input’s rank, exclusive, then throw a TypeError.

" + "html": "

If options.axis is not in the range 0 to input’s rank, exclusive, then throw a TypeError.

" }, { "html": "

If mean’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" @@ -947,7 +947,7 @@ "html": "

If this.[[hasBuilt]] is true, then throw an \"InvalidStateError\" DOMException.

" }, { - "html": "

If validating operand with this and any item in inputs returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any item in inputs returns false, then throw a TypeError.

" }, { "html": "

If inputs is empty, then throw a TypeError.

" @@ -956,7 +956,7 @@ "html": "

Let first be inputs[0].

" }, { - "html": "

If axis is greater than or equal to first’s rank, then throw a TypeError.

" + "html": "

If axis is greater than or equal to first’s rank, then throw a TypeError.

" }, { "html": "

Let desc be the result of creating an MLOperandDescriptor given first’s dataType and first’s shape.

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

If input’s dataType is not equal to first’s dataType, then throw a TypeError.

" }, { - "html": "

If input’s rank is not equal to first’s rank, then throw a TypeError.

" + "html": "

If input’s rank is not equal to first’s rank, then throw a TypeError.

" }, { - "html": "For each dim in the range 0 to input’s rank, exclusive:", + "html": "For each dim in the range 0 to input’s rank, exclusive:", "rationale": "if", "steps": [ { @@ -1076,10 +1076,10 @@ "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" }, { - "html": "

If filter’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If filter’s rank is not its allowed rank, then throw a TypeError.

" }, { "html": "

If filter’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

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

If any item in outputShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" }, { "html": "

Let desc be the result of creating an MLOperandDescriptor given input’s dataType and outputShape.

" @@ -1288,13 +1288,13 @@ "html": "

If validating operand with this and any of input, filter, and options.bias (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" }, { "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If filter’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If filter’s rank is not its allowed rank, then throw a TypeError.

" }, { "html": "

If filter’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

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

If any item in outputShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" }, { "html": "

Let desc be the result of creating an MLOperandDescriptor given input’s dataType and outputShape.

" @@ -2277,7 +2277,7 @@ "html": "

If indices’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

Let shapeInput be input’s shape and rankInput be shapeInput’s rank.

" + "html": "

Let shapeInput be input’s shape and rankInput be shapeInput’s rank.

" }, { "html": "

Let shapeIndices be indices’s shape.

" @@ -2435,7 +2435,7 @@ "html": "

If the dataType of any of a or b is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of a or b is not its allowed rank, then throw a TypeError.

" + "html": "

If the rank of any of a or b is not its allowed rank, then throw a TypeError.

" }, { "html": "

Set options.alpha to the result of casting options.alpha to a’s dataType.

" @@ -2517,7 +2517,7 @@ "html": "

If the dataType of any of input, weight or recurrentWeight is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of input, weight or recurrentWeight is not its allowed rank, then throw a TypeError.

" + "html": "

If the rank of any of input, weight or recurrentWeight is not its allowed rank, then throw a TypeError.

" }, { "html": "

If input’s shape[0] is not equal to steps, then throw a TypeError.

" @@ -2581,7 +2581,7 @@ "rationale": "if", "steps": [ { - "html": "

If its size is not 2, then throw a TypeError.

" + "html": "

If its size is not 2, then throw a TypeError.

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -2605,7 +2605,7 @@ "html": "

Let desc0 be the result of creating an MLOperandDescriptor given input’s dataType and « numDirections, batchSize, hiddenSize ».

" }, { - "html": "If options.returnSequence is true:", + "html": "If options.returnSequence is true:", "rationale": "let", "steps": [ { @@ -2626,7 +2626,7 @@ "html": "

Let output0 be the result of creating an MLOperand given this and desc0.

" }, { - "html": "If options.returnSequence is true:", + "html": "If options.returnSequence is true:", "rationale": "let", "steps": [ { @@ -2692,7 +2692,7 @@ "html": "

If the dataType of any of input, weight, recurrentWeight, or hiddenState is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of input, weight, recurrentWeight or hiddenState is not its allowed ranks (according to this table), then throw a TypeError.

" + "html": "

If the rank of any of input, weight, recurrentWeight or hiddenState is not its allowed ranks (according to this table), then throw a TypeError.

" }, { "html": "

Let batchSize be input’s shape[0].

" @@ -2741,7 +2741,7 @@ "rationale": "if", "steps": [ { - "html": "

If its size is not 2, then throw a TypeError.

" + "html": "

If its size is not 2, then throw a TypeError.

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -2896,7 +2896,7 @@ "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" }, { "html": "

Set options.epsilon to the result of casting options.epsilon to input’s dataType.

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

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If options.axes does not exist, then set options.axes to a new list, either equal to the range from 1 to input’s rank, exclusive, if input’s rank is greater than 1, or an empty list otherwise.

" + "html": "

If options.axes does not exist, then set options.axes to a new list, either equal to the range from 1 to input’s rank, exclusive, if input’s rank is greater than 1, or an empty list otherwise.

" }, { - "html": "

Otherwise, if options.axes contains duplicate values, or if any of its elements is not in the range 0 to input’s rank, exclusive, then return failure.

" + "html": "

Otherwise, if options.axes contains duplicate values, or if any of its elements is not in the range 0 to input’s rank, exclusive, then return failure.

" }, { "html": "

Set options.epsilon to the result of casting options.epsilon to input’s dataType.

" @@ -2991,7 +2991,7 @@ "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its rank is not equal to options.axes's size, then throw a TypeError.

" + "html": "

If its rank is not equal to options.axes's size, then throw a TypeError.

" } ] }, @@ -3003,19 +3003,19 @@ "html": "

If its dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If its rank is not equal to options.axes's size, then throw a TypeError.

" + "html": "

If its rank is not equal to options.axes's size, then throw a TypeError.

" } ] }, { - "html": "For each index in the range 0 to options.axes's size, exclusive:", + "html": "For each index in the range 0 to options.axes's size, exclusive:", "rationale": "let", "steps": [ { "html": "

Let axis be options.axes[index].

" }, { - "html": "

If axis is greater or equal to input’s rank, then throw a TypeError.

" + "html": "

If axis is greater or equal to input’s rank, then throw a TypeError.

" }, { "html": "

Let size be input’s shape[axis].

" @@ -3179,7 +3179,7 @@ "html": "

If the dataType of any of input, weight or recurrentWeight is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of input, weight or recurrentWeight is not its allowed rank, then throw a TypeError.

" + "html": "

If the rank of any of input, weight or recurrentWeight is not its allowed rank, then throw a TypeError.

" }, { "html": "

If input’s shape[0] is not equal to steps, then throw a TypeError.

" @@ -3264,7 +3264,7 @@ "rationale": "if", "steps": [ { - "html": "

If its size is not 3, then throw a TypeError.

" + "html": "

If its size is not 3, then throw a TypeError.

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -3288,7 +3288,7 @@ "html": "

Let desc be the result of creating an MLOperandDescriptor given input’s dataType and « numDirections, batchSize, hiddenSize ».

" }, { - "html": "If options.returnSequence is true:", + "html": "If options.returnSequence is true:", "rationale": "let", "steps": [ { @@ -3312,7 +3312,7 @@ "html": "

Let output1 be the result of creating an MLOperand given this and desc.

" }, { - "html": "If options.returnSequence is true:", + "html": "If options.returnSequence is true:", "rationale": "let", "steps": [ { @@ -3384,7 +3384,7 @@ "html": "

If the dataType of any of input, weight, recurrentWeight, hiddenState or cellState is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If the rank of any of input, weight, recurrentWeight, hiddenState or cellState is not its allowed rank, then throw a TypeError.

" + "html": "

If the rank of any of input, weight, recurrentWeight, hiddenState or cellState is not its allowed rank, then throw a TypeError.

" }, { "html": "

Let batchSize be input’s shape[0].

" @@ -3448,7 +3448,7 @@ "rationale": "if", "steps": [ { - "html": "

If its size is not 3, then throw a TypeError.

" + "html": "

If its size is not 3, then throw a TypeError.

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -3526,13 +3526,13 @@ "html": "

Let shapeA be a clone of a’s shape.

" }, { - "html": "

Let rankA be a’s rank.

" + "html": "

Let rankA be a’s rank.

" }, { "html": "

Let shapeB be a clone of b’s shape.

" }, { - "html": "

Let rankB be b’s rank.

" + "html": "

Let rankB be b’s rank.

" }, { "html": "

If either rankA or rankB is less than 2, then throw a TypeError.

" @@ -3630,7 +3630,7 @@ "html": "

Let shape be a copy of input’s shape.

" }, { - "html": "For each index in the range 0 to shape’s rank, exclusive:", + "html": "For each index in the range 0 to shape’s rank, exclusive:", "rationale": "add", "steps": [ { @@ -3658,10 +3658,10 @@ "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s rank is 0, then throw a TypeError.

" + "html": "

If input’s rank is 0, then throw a TypeError.

" }, { - "html": "

If beginningPadding’s size and endingPadding’s size are not both equal to input’s rank, then throw a TypeError.

" + "html": "

If beginningPadding’s size and endingPadding’s size are not both equal to input’s rank, then throw a TypeError.

" }, { "html": "

Let desc be a copy of input.[[descriptor]].

" @@ -3670,7 +3670,7 @@ "html": "

Let outputShape be the result of calculating padding output sizes given input, beginningPadding and endingPadding.

" }, { - "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" }, { "html": "

Set options.value to the result of casting options.value to input’s dataType.

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

If allowedDataTypes is given and it does not contain input’s dataType, then throw a TypeError.

" }, { - "html": "

If input’s rank is not 4, then throw a TypeError.

" + "html": "

If input’s rank is not 4, then throw a TypeError.

" }, { - "html": "

If options.windowDimensions exists and its size is not 2, then throw a TypeError.

" + "html": "

If options.windowDimensions exists and its size is not 2, then throw a TypeError.

" }, { "html": "

Otherwise, set options.windowDimensions to the height and width dimensions of the shape of input.

" @@ -3831,13 +3831,13 @@ "html": "

If options.outputSizes exists, or if options.padding does not exist, set options.padding to the list « 0, 0, 0, 0 ».

" }, { - "html": "

If options.padding's size is not 4, then throw a TypeError.

" + "html": "

If options.padding's size is not 4, then throw a TypeError.

" }, { "html": "

If options.strides does not exist, set options.strides to the list « 1, 1 ».

" }, { - "html": "

If options.strides's size is not 2, then throw a TypeError.

" + "html": "

If options.strides's size is not 2, then throw a TypeError.

" }, { "html": "

If any value in options.strides is not greater than 0, then throw a TypeError.

" @@ -3847,7 +3847,7 @@ "rationale": "if", "steps": [ { - "html": "

If its size is not 2, then throw a TypeError.

" + "html": "

If its size is not 2, then throw a TypeError.

" }, { "html": "

If its elements are not smaller than the elements at the same dimension (index) for options.strides, then throw a TypeError.

" @@ -3858,7 +3858,7 @@ "html": "

If options.dilations does not exist, set options.dilations to the list « 1, 1 ».

" }, { - "html": "

If options.dilations's size is not 2, then throw a TypeError.

" + "html": "

If options.dilations's size is not 2, then throw a TypeError.

" }, { "html": "

If any value in options.dilations is not greater than 0, then throw a TypeError.

" @@ -3870,7 +3870,7 @@ "html": "

Let outputShape be the result of calculating pool2d output sizes given options.layout, input’s shape, options.roundingType, options.windowDimensions, options.padding, options.strides, options.dilations, and options.outputSizes (if it exists).

" }, { - "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in outputShape is not a valid dimension, then throw a TypeError.

" }, { "html": "

Set desc.shape to outputShape.

" @@ -4019,7 +4019,7 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let inputRank be inputShape’s size.

" + "html": "

Let inputRank be inputShape’s size.

" }, { "html": "

If axes is not given, let axes be the range 0 to inputRank, exclusive.

" @@ -4086,7 +4086,7 @@ "html": "

If allowedDataTypes is given and it does not contain input’s dataType, then throw a TypeError.

" }, { - "html": "

Let outputShape be the result of calculating reduction output sizes given input’s shape, options.axes (if it exists), and options.keepDimensions. If that returns failure, then throw a TypeError.

" + "html": "

Let outputShape be the result of calculating reduction output sizes given input’s shape, options.axes (if it exists), and options.keepDimensions. If that returns failure, then throw a TypeError.

" }, { "html": "

Let desc be the result of creating an MLOperandDescriptor given input’s dataType and outputShape.

" @@ -4366,7 +4366,7 @@ "html": "

If options.scales does not exist, set it to the list « 1.0, 1.0 ».

" }, { - "html": "

Otherwise, if any of its values is not greater than 0, or if its size is not 2, return false.

" + "html": "

Otherwise, if any of its values is not greater than 0, or if its size is not 2, return false.

" }, { "html": "

If options.sizes exists, and if its size is not 2, or if any of its values is not greater than 0, return false.

" @@ -4375,7 +4375,7 @@ "html": "

If options.axes does not exists, set it to the list « 2, 3 ».

" }, { - "html": "

Otherwise, if options.axes contains duplicate values, or if any of its elements is not in the range 0 to input’s rank, exclusive, then return false.

" + "html": "

Otherwise, if options.axes contains duplicate values, or if any of its elements is not in the range 0 to input’s rank, exclusive, then return false.

" }, { "html": "

Return true.

" @@ -4394,7 +4394,7 @@ "html": "

Let outputShape be a clone of inputDescriptor.shape.

" }, { - "html": "For each index in the range 0 to options.axes's size, exclusive:", + "html": "For each index in the range 0 to options.axes's size, exclusive:", "rationale": "if", "steps": [ { @@ -4431,7 +4431,7 @@ "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" + "html": "

If input’s rank is not its allowed rank, then throw a TypeError.

" }, { "html": "

If checking resample options given options and input returns false, then throw a TypeError.

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

Let outputShape be an empty array of unsigned long.

" }, { - "html": "

If newShape’s size is 0, set outputShape to an empty list for a scalar.

" + "html": "

If newShape’s size is 0, set outputShape to an empty list for a scalar.

" }, { - "html": "

If any item in newShape is not a valid dimension, then throw a TypeError.

" + "html": "

If any item in newShape is not a valid dimension, then throw a TypeError.

" }, { "html": "

Let inputElementCount be the product of all elements in input’s shape. Empty dimensions yield an inputElementCount of 1.

" @@ -4575,13 +4575,13 @@ "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If any of sizes’s items are 0, then throw a TypeError.

" + "html": "

If any of sizes’s items are 0, then throw a TypeError.

" }, { - "html": "

If starts’s size and sizes’s size are not both equal to input’s rank, then throw a TypeError.

" + "html": "

If starts’s size and sizes’s size are not both equal to input’s rank, then throw a TypeError.

" }, { - "html": "For each index in the range 0 to input’s rank, exclusive:", + "html": "For each index in the range 0 to input’s rank, exclusive:", "rationale": "if", "steps": [ { @@ -4636,7 +4636,7 @@ "html": "

If input’s dataType is not one of its allowed data types (according to this table), then throw a TypeError.

" }, { - "html": "

If axis is greater than or equal to input’s rank, then throw a TypeError.

" + "html": "

If axis is greater than or equal to input’s rank, then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -4759,7 +4759,7 @@ "html": "

Let axis be options.axis.

" }, { - "html": "

If axis is greater than or equal to input’s rank, then throw a TypeError.

" + "html": "

If axis is greater than or equal to input’s rank, then throw a TypeError.

" }, { "html": "If splits is an unsigned long:", @@ -4784,7 +4784,7 @@ "html": "

If the sum of its elements is not equal to input’s shape[axis], then throw a TypeError.

" }, { - "html": "

Otherwise, let splitCount be splits’s size.

" + "html": "

Otherwise, let splitCount be splits’s size.

" } ] }, @@ -4894,10 +4894,10 @@ "rationale": "if", "steps": [ { - "html": "

If its size is not equal to input’s rank, then throw a TypeError.

" + "html": "

If its size is not equal to input’s rank, then throw a TypeError.

" }, { - "html": "

If its values are not in the range 0 to input’s rank exclusive, then throw a TypeError.

" + "html": "

If its values are not in the range 0 to input’s rank exclusive, then throw a TypeError.

" }, { "html": "

If it contains duplicate values, then throw a TypeError.

" @@ -4942,7 +4942,7 @@ "html": "

If validating operand with this and input returns false, then throw a TypeError.

" }, { - "html": "

If input’s rank is not one of its allowed ranks (according to this table), then throw a TypeError.

" + "html": "

If input’s rank is not one of its allowed ranks (according to this table), then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -4994,7 +4994,7 @@ ] }, { - "html": "Set outputShape to the result of bidirectionally broadcasting condition’s shape and |outputShape].", + "html": "Set outputShape to the result of bidirectionally broadcasting condition’s shape and outputShape.", "rationale": "if", "steps": [ { @@ -5037,10 +5037,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let sizeFrom be shapeFrom’s size.

" + "html": "

Let sizeFrom be shapeFrom’s size.

" }, { - "html": "

Let sizeTo be shapeTo’s size.

" + "html": "

Let sizeTo be shapeTo’s size.

" }, { "html": "

If sizeFrom > sizeTo, then return failure.

" @@ -5049,7 +5049,7 @@ "html": "

Let paddedShapeFrom be a clone of shapeFrom.

" }, { - "html": "

While paddedShapeFrom’s size is less than sizeTo, prepend 1 to paddedShapeFrom.

" + "html": "

While paddedShapeFrom’s size is less than sizeTo, prepend 1 to paddedShapeFrom.

" }, { "html": "

Let outputShape be a new list.

" @@ -5083,10 +5083,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let sizeA be shapeA’s size.

" + "html": "

Let sizeA be shapeA’s size.

" }, { - "html": "

Let sizeB be shapeB’s size.

" + "html": "

Let sizeB be shapeB’s size.

" }, { "html": "

Let outputSize be the maximum of sizeA and sizeB.

" @@ -5095,13 +5095,13 @@ "html": "

Let paddedA be a clone of shapeA.

" }, { - "html": "

While paddedA’s size is less than outputSize, prepend 1 to paddedA.

" + "html": "

While paddedA’s size is less than outputSize, prepend 1 to paddedA.

" }, { "html": "

Let paddedB be a clone of shapeB.

" }, { - "html": "

While paddedB’s size is less than outputSize, prepend 1 to paddedB.

" + "html": "

While paddedB’s size is less than outputSize, prepend 1 to paddedB.

" }, { "html": "

Let outputShape be a new list.

" diff --git a/tr/dfns/edit-context.json b/tr/dfns/edit-context.json index 369363d4f75e..5d910c2611b6 100644 --- a/tr/dfns/edit-context.json +++ b/tr/dfns/edit-context.json @@ -62,10 +62,10 @@ "definedIn": "prose" }, { - "id": "dfn-user-agent", - "href": "https://www.w3.org/TR/edit-context/#dfn-user-agent", + "id": "dfn-text-state", + "href": "https://www.w3.org/TR/edit-context/#dfn-text-state", "linkingText": [ - "user agent" + "text state" ], "localLinkingText": [], "type": "dfn", @@ -73,18 +73,18 @@ "access": "private", "informative": false, "heading": { - "id": "conformance", - "href": "https://www.w3.org/TR/edit-context/#conformance", - "title": "Conformance", - "number": "2" + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" }, "definedIn": "prose" }, { - "id": "dom-element", - "href": "https://www.w3.org/TR/edit-context/#dom-element", + "id": "dfn-text", + "href": "https://www.w3.org/TR/edit-context/#dfn-text", "linkingText": [ - "Element" + "text" ], "localLinkingText": [], "type": "dfn", @@ -92,52 +92,565 @@ "access": "private", "informative": false, "heading": { - "id": "extensions-to-the-element-interface", - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", - "title": "Extensions to the Element interface", - "number": "3" + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" }, - "definedIn": "heading" + "definedIn": "prose" + }, + { + "id": "dfn-selection-start", + "href": "https://www.w3.org/TR/edit-context/#dfn-selection-start", + "linkingText": [ + "selection start" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-selection-end", + "href": "https://www.w3.org/TR/edit-context/#dfn-selection-end", + "linkingText": [ + "selection end" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-is-composing", + "href": "https://www.w3.org/TR/edit-context/#dfn-is-composing", + "linkingText": [ + "is composing" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-composition-start", + "href": "https://www.w3.org/TR/edit-context/#dfn-composition-start", + "linkingText": [ + "composition start" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-composition-end", + "href": "https://www.w3.org/TR/edit-context/#dfn-composition-end", + "linkingText": [ + "composition end" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-text-formats", + "href": "https://www.w3.org/TR/edit-context/#dfn-text-formats", + "linkingText": [ + "text formats" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-control-bounds", + "href": "https://www.w3.org/TR/edit-context/#dfn-control-bounds", + "linkingText": [ + "control bounds" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-selection-bounds", + "href": "https://www.w3.org/TR/edit-context/#dfn-selection-bounds", + "linkingText": [ + "selection bounds" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-codepoint-rects-start-index", + "href": "https://www.w3.org/TR/edit-context/#dfn-codepoint-rects-start-index", + "linkingText": [ + "codepoint rects start index" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-codepoint-rects", + "href": "https://www.w3.org/TR/edit-context/#dfn-codepoint-rects", + "linkingText": [ + "codepoint rects" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-text-format", + "href": "https://www.w3.org/TR/edit-context/#dfn-text-format", + "linkingText": [ + "text format" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-range-start", + "href": "https://www.w3.org/TR/edit-context/#dfn-range-start", + "linkingText": [ + "range start" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-range-end", + "href": "https://www.w3.org/TR/edit-context/#dfn-range-end", + "linkingText": [ + "range end" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-underline-style", + "href": "https://www.w3.org/TR/edit-context/#dfn-underline-style", + "linkingText": [ + "underline style" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-underline-thickness", + "href": "https://www.w3.org/TR/edit-context/#dfn-underline-thickness", + "linkingText": [ + "underline thickness" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" }, { - "id": "dom-element-editcontext", - "href": "https://www.w3.org/TR/edit-context/#dom-element-editcontext", + "id": "dfn-client-coordinate-system", + "href": "https://www.w3.org/TR/edit-context/#dfn-client-coordinate-system", + "linkingText": [ + "client coordinate system" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "title": "EditContext state", + "number": "1.2.1" + }, + "definedIn": "prose" + }, + { + "id": "dfn-associated-element", + "href": "https://www.w3.org/TR/edit-context/#dfn-associated-element", + "linkingText": [ + "associated element" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "association-and-activation", + "href": "https://www.w3.org/TR/edit-context/#association-and-activation", + "title": "Association and activation", + "number": "1.2.2" + }, + "definedIn": "prose" + }, + { + "id": "dfn-editcontext-editing-host", + "href": "https://www.w3.org/TR/edit-context/#dfn-editcontext-editing-host", + "linkingText": [ + "EditContext editing host" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "association-and-activation", + "href": "https://www.w3.org/TR/edit-context/#association-and-activation", + "title": "Association and activation", + "number": "1.2.2" + }, + "definedIn": "prose" + }, + { + "id": "dfn-active-editcontext", + "href": "https://www.w3.org/TR/edit-context/#dfn-active-editcontext", + "linkingText": [ + "active EditContext" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "association-and-activation", + "href": "https://www.w3.org/TR/edit-context/#association-and-activation", + "title": "Association and activation", + "number": "1.2.2" + }, + "definedIn": "prose" + }, + { + "id": "dom-htmlelement-editcontext", + "href": "https://www.w3.org/TR/edit-context/#dom-htmlelement-editcontext", "linkingText": [ "editContext" ], "localLinkingText": [ - "Element.editContext" + "HTMLElement.editContext" ], "type": "attribute", "for": [ - "Element" + "HTMLElement" + ], + "access": "public", + "informative": false, + "heading": { + "id": "extensions-to-the-htmlelement-interface", + "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-htmlelement-interface", + "title": "Extensions to the HTMLElement interface", + "number": "3.1" + }, + "definedIn": "pre" + }, + { + "id": "dfn-handle-input-for-editcontext", + "href": "https://www.w3.org/TR/edit-context/#dfn-handle-input-for-editcontext", + "linkingText": [ + "Handle input for EditContext" ], + "localLinkingText": [], + "type": "dfn", + "for": [], "access": "public", "informative": false, "heading": { - "id": "extensions-to-the-element-interface", - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", - "title": "Extensions to the Element interface", - "number": "3" + "id": "handle-input-for-editcontext", + "href": "https://www.w3.org/TR/edit-context/#handle-input-for-editcontext", + "title": "Handle input for EditContext", + "number": "3.1.1" + }, + "definedIn": "heading" + }, + { + "id": "dfn-editcontext-handled-inputtype", + "href": "https://www.w3.org/TR/edit-context/#dfn-editcontext-handled-inputtype", + "linkingText": [ + "EditContext-handled inputType" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "editcontext-handled-inputtype", + "href": "https://www.w3.org/TR/edit-context/#editcontext-handled-inputtype", + "title": "EditContext-handled inputType", + "number": "3.1.2" + }, + "definedIn": "heading" + }, + { + "id": "dfn-update-the-editcontext", + "href": "https://www.w3.org/TR/edit-context/#dfn-update-the-editcontext", + "linkingText": [ + "Update the EditContext" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "update-the-editcontext", + "href": "https://www.w3.org/TR/edit-context/#update-the-editcontext", + "title": "Update the EditContext", + "number": "3.1.3" + }, + "definedIn": "heading" + }, + { + "id": "dfn-update-the-text-edit-context", + "href": "https://www.w3.org/TR/edit-context/#dfn-update-the-text-edit-context", + "linkingText": [ + "Update the Text Edit Context" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "update-the-text-edit-context", + "href": "https://www.w3.org/TR/edit-context/#update-the-text-edit-context", + "title": "Update the Text Edit Context", + "number": "3.1.4" + }, + "definedIn": "heading" + }, + { + "id": "dfn-dispatch-text-update-event", + "href": "https://www.w3.org/TR/edit-context/#dfn-dispatch-text-update-event", + "linkingText": [ + "Dispatch text update event" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "dispatch-text-update-event", + "href": "https://www.w3.org/TR/edit-context/#dispatch-text-update-event", + "title": "Dispatch text update event", + "number": "3.1.5" + }, + "definedIn": "heading" + }, + { + "id": "dfn-dispatch-text-format-update-event", + "href": "https://www.w3.org/TR/edit-context/#dfn-dispatch-text-format-update-event", + "linkingText": [ + "Dispatch text format update event" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "dispatch-text-format-update-event", + "href": "https://www.w3.org/TR/edit-context/#dispatch-text-format-update-event", + "title": "Dispatch text format update event", + "number": "3.1.6" + }, + "definedIn": "heading" + }, + { + "id": "dfn-dispatch-character-bounds-update-event", + "href": "https://www.w3.org/TR/edit-context/#dfn-dispatch-character-bounds-update-event", + "linkingText": [ + "Dispatch character bounds update event" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "dispatch-character-bounds-update-event", + "href": "https://www.w3.org/TR/edit-context/#dispatch-character-bounds-update-event", + "title": "Dispatch character bounds update event", + "number": "3.1.7" + }, + "definedIn": "heading" + }, + { + "id": "dfn-deactivate-an-editcontext", + "href": "https://www.w3.org/TR/edit-context/#dfn-deactivate-an-editcontext", + "linkingText": [ + "Deactivate an EditContext" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "deactivate-an-editcontext", + "href": "https://www.w3.org/TR/edit-context/#deactivate-an-editcontext", + "title": "Deactivate an EditContext", + "number": "3.1.8" }, - "definedIn": "prose" + "definedIn": "heading" }, { - "id": "dom-editcontext", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext", + "id": "dfn-determine-the-active-editcontext", + "href": "https://www.w3.org/TR/edit-context/#dfn-determine-the-active-editcontext", "linkingText": [ - "EditContext" + "Determine the active EditContext" ], "localLinkingText": [], - "type": "interface", + "type": "dfn", "for": [], - "access": "public", + "access": "private", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "determine-the-active-editcontext", + "href": "https://www.w3.org/TR/edit-context/#determine-the-active-editcontext", + "title": "Determine the active EditContext", + "number": "3.1.9" }, "definedIn": "heading" }, @@ -153,10 +666,10 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, "definedIn": "pre" }, @@ -174,10 +687,10 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, "definedIn": "pre" }, @@ -195,10 +708,10 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, "definedIn": "pre" }, @@ -216,256 +729,173 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, "definedIn": "pre" }, { - "id": "dom-editcontext-constructor", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-constructor", + "id": "dom-editcontext", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext", "linkingText": [ - "constructor()", - "constructor(options)" - ], - "localLinkingText": [ - "EditContext.constructor", - "EditContext.constructor()", - "constructor" - ], - "type": "constructor", - "for": [ "EditContext" ], + "localLinkingText": [], + "type": "interface", + "for": [], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, "definedIn": "pre" }, { - "id": "dom-editcontext-text", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-text", - "linkingText": [ - "text" - ], - "localLinkingText": [ - "EditContext.text" - ], - "type": "attribute", - "for": [ - "EditContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" - }, - "definedIn": "dt" - }, - { - "id": "dom-editcontext-selectionstart", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionstart", - "linkingText": [ - "selectionStart" - ], - "localLinkingText": [ - "EditContext.selectionStart" - ], - "type": "attribute", - "for": [ - "EditContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" - }, - "definedIn": "dt" - }, - { - "id": "dom-editcontext-selectionend", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionend", - "linkingText": [ - "selectionEnd" - ], - "localLinkingText": [ - "EditContext.selectionEnd" - ], - "type": "attribute", - "for": [ - "EditContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" - }, - "definedIn": "dt" - }, - { - "id": "dom-editcontext-compositionrangestart", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-compositionrangestart", - "linkingText": [ - "compositionRangeStart" - ], - "localLinkingText": [ - "EditContext.compositionRangeStart" - ], - "type": "attribute", - "for": [ - "EditContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" - }, - "definedIn": "dt" - }, - { - "id": "dom-editcontext-compositionrangeend", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-compositionrangeend", + "id": "dom-editcontext-constructor", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-constructor", "linkingText": [ - "compositionRangeEnd" + "constructor()", + "constructor(options)" ], "localLinkingText": [ - "EditContext.compositionRangeEnd" + "EditContext.constructor", + "EditContext.constructor()", + "constructor" ], - "type": "attribute", + "type": "constructor", "for": [ "EditContext" ], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-isincomposition", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-isincomposition", + "id": "dom-editcontext-updatetext", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updatetext", "linkingText": [ - "isInComposition" + "updateText()", + "updateText(rangeStart, rangeEnd, text)" ], "localLinkingText": [ - "EditContext.isInComposition" + "EditContext.updateText", + "EditContext.updateText()", + "updateText" ], - "type": "attribute", + "type": "method", "for": [ "EditContext" ], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-controlbound", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-controlbound", + "id": "dom-editcontext-updateselection", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselection", "linkingText": [ - "controlBound" + "updateSelection()", + "updateSelection(start, end)" ], "localLinkingText": [ - "EditContext.controlBound" + "EditContext.updateSelection", + "EditContext.updateSelection()", + "updateSelection" ], - "type": "attribute", + "type": "method", "for": [ "EditContext" ], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-selectionbound", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionbound", + "id": "dom-editcontext-updatecontrolbounds", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecontrolbounds", "linkingText": [ - "selectionBound" + "updateControlBounds()", + "updateControlBounds(controlBounds)" ], "localLinkingText": [ - "EditContext.selectionBound" + "EditContext.updateControlBounds", + "EditContext.updateControlBounds()", + "updateControlBounds" ], - "type": "attribute", + "type": "method", "for": [ "EditContext" ], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-characterboundsrangestart", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-characterboundsrangestart", + "id": "dom-editcontext-updateselectionbounds", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselectionbounds", "linkingText": [ - "characterBoundsRangeStart" + "updateSelectionBounds()", + "updateSelectionBounds(selectionBounds)" ], "localLinkingText": [ - "EditContext.characterBoundsRangeStart" + "EditContext.updateSelectionBounds", + "EditContext.updateSelectionBounds()", + "updateSelectionBounds" ], - "type": "attribute", + "type": "method", "for": [ "EditContext" ], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-characterbounds", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-characterbounds", + "id": "dom-editcontext-updatecharacterbounds", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecharacterbounds", "linkingText": [ - "characterBounds()" + "updateCharacterBounds()", + "updateCharacterBounds(rangeStart, characterBounds)" ], "localLinkingText": [ - "EditContext.characterBounds", - "EditContext.characterBounds()", - "characterBounds" + "EditContext.updateCharacterBounds", + "EditContext.updateCharacterBounds()", + "updateCharacterBounds" ], "type": "method", "for": [ @@ -474,24 +904,23 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-updateselection", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselection", + "id": "dom-editcontext-attachedelements", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-attachedelements", "linkingText": [ - "updateSelection()", - "updateSelection(start, end)" + "attachedElements()" ], "localLinkingText": [ - "EditContext.updateSelection", - "EditContext.updateSelection()", - "updateSelection" + "EditContext.attachedElements", + "EditContext.attachedElements()", + "attachedElements" ], "type": "method", "for": [ @@ -500,127 +929,115 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-updateselectionbound", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselectionbound", + "id": "dom-editcontext-text", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-text", "linkingText": [ - "updateSelectionBound()", - "updateSelectionBound(selectionBound)" + "text" ], "localLinkingText": [ - "EditContext.updateSelectionBound", - "EditContext.updateSelectionBound()", - "updateSelectionBound" + "EditContext.text" ], - "type": "method", + "type": "attribute", "for": [ "EditContext" ], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-updatecontrolbound", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecontrolbound", + "id": "dom-editcontext-selectionstart", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionstart", "linkingText": [ - "updateControlBound()", - "updateControlBound(controlBound)" + "selectionStart" ], "localLinkingText": [ - "EditContext.updateControlBound", - "EditContext.updateControlBound()", - "updateControlBound" + "EditContext.selectionStart" ], - "type": "method", + "type": "attribute", "for": [ "EditContext" ], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-updatecharacterbounds", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecharacterbounds", + "id": "dom-editcontext-selectionend", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionend", "linkingText": [ - "updateCharacterBounds()", - "updateCharacterBounds(rangeStart, characterBounds)" + "selectionEnd" ], "localLinkingText": [ - "EditContext.updateCharacterBounds", - "EditContext.updateCharacterBounds()", - "updateCharacterBounds" + "EditContext.selectionEnd" ], - "type": "method", + "type": "attribute", "for": [ "EditContext" ], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-updatetext", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-updatetext", + "id": "dom-editcontext-characterboundsrangestart", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-characterboundsrangestart", "linkingText": [ - "updateText()", - "updateText(rangeStart, rangeEnd, text)" + "characterBoundsRangeStart" ], "localLinkingText": [ - "EditContext.updateText", - "EditContext.updateText()", - "updateText" + "EditContext.characterBoundsRangeStart" ], - "type": "method", + "type": "attribute", "for": [ "EditContext" ], "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-attachedelements", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-attachedelements", + "id": "dom-editcontext-characterbounds", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-characterbounds", "linkingText": [ - "attachedElements()" + "characterBounds()" ], "localLinkingText": [ - "EditContext.attachedElements", - "EditContext.attachedElements()", - "attachedElements" + "EditContext.characterBounds", + "EditContext.characterBounds()", + "characterBounds" ], "type": "method", "for": [ @@ -629,12 +1046,12 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { "id": "dom-editcontext-ontextupdate", @@ -652,21 +1069,21 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-oncharacterboundsupdate", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-oncharacterboundsupdate", + "id": "dom-editcontext-ontextformatupdate", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-ontextformatupdate", "linkingText": [ - "oncharacterboundsupdate" + "ontextformatupdate" ], "localLinkingText": [ - "EditContext.oncharacterboundsupdate" + "EditContext.ontextformatupdate" ], "type": "attribute", "for": [ @@ -675,21 +1092,21 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-editcontext-ontextformatupdate", - "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-ontextformatupdate", + "id": "dom-editcontext-oncharacterboundsupdate", + "href": "https://www.w3.org/TR/edit-context/#dom-editcontext-oncharacterboundsupdate", "linkingText": [ - "ontextformatupdate" + "oncharacterboundsupdate" ], "localLinkingText": [ - "EditContext.ontextformatupdate" + "EditContext.oncharacterboundsupdate" ], "type": "attribute", "for": [ @@ -698,12 +1115,12 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { "id": "dom-editcontext-oncompositionstart", @@ -721,12 +1138,12 @@ "access": "public", "informative": false, "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { "id": "dom-editcontext-oncompositionend", @@ -739,36 +1156,17 @@ ], "type": "attribute", "for": [ - "EditContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "title": "The EditContext Interface", - "number": "4" - }, - "definedIn": "dt" - }, - { - "id": "dom-textupdateevent", - "href": "https://www.w3.org/TR/edit-context/#dom-textupdateevent", - "linkingText": [ - "TextUpdateEvent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], + "EditContext" + ], "access": "public", "informative": false, "heading": { - "id": "textupdateevent", - "href": "https://www.w3.org/TR/edit-context/#textupdateevent", - "title": "TextUpdateEvent", - "number": "5.1" + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "title": "EditContext Interface", + "number": "3.2" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-textupdateeventinit", @@ -785,7 +1183,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -806,7 +1204,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -827,7 +1225,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -848,7 +1246,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -869,7 +1267,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -890,7 +1288,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -911,7 +1309,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -932,7 +1330,26 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" + }, + "definedIn": "pre" + }, + { + "id": "dom-textupdateevent", + "href": "https://www.w3.org/TR/edit-context/#dom-textupdateevent", + "linkingText": [ + "TextUpdateEvent" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "textupdateevent", + "href": "https://www.w3.org/TR/edit-context/#textupdateevent", + "title": "TextUpdateEvent", + "number": "4.1" }, "definedIn": "pre" }, @@ -941,7 +1358,8 @@ "href": "https://www.w3.org/TR/edit-context/#dom-textupdateevent-constructor", "linkingText": [ "constructor()", - "constructor(options)" + "constructor(type)", + "constructor(type, options)" ], "localLinkingText": [ "TextUpdateEvent.constructor", @@ -958,7 +1376,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -981,7 +1399,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -1004,7 +1422,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -1027,7 +1445,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -1050,7 +1468,7 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, @@ -1073,83 +1491,142 @@ "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, "definedIn": "pre" }, { - "id": "dom-textupdateevent-compositionstart", - "href": "https://www.w3.org/TR/edit-context/#dom-textupdateevent-compositionstart", + "id": "dom-underlinestyle", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinestyle", "linkingText": [ - "compositionStart" + "UnderlineStyle" ], - "localLinkingText": [ - "TextUpdateEvent.compositionStart" + "localLinkingText": [], + "type": "enum", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "textformatupdateevent", + "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", + "title": "TextFormatUpdateEvent", + "number": "4.2" + }, + "definedIn": "pre" + }, + { + "id": "dom-underlinestyle-none", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinestyle-none", + "linkingText": [ + "none" ], - "type": "attribute", + "localLinkingText": [], + "type": "enum-value", "for": [ - "TextUpdateEvent" + "UnderlineStyle" ], "access": "public", "informative": false, "heading": { - "id": "textupdateevent", - "href": "https://www.w3.org/TR/edit-context/#textupdateevent", - "title": "TextUpdateEvent", - "number": "5.1" + "id": "textformatupdateevent", + "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", + "title": "TextFormatUpdateEvent", + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-textupdateevent-compositionend", - "href": "https://www.w3.org/TR/edit-context/#dom-textupdateevent-compositionend", + "id": "dom-underlinestyle-solid", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinestyle-solid", "linkingText": [ - "compositionEnd" + "solid" ], - "localLinkingText": [ - "TextUpdateEvent.compositionEnd" + "localLinkingText": [], + "type": "enum-value", + "for": [ + "UnderlineStyle" ], - "type": "attribute", + "access": "public", + "informative": false, + "heading": { + "id": "textformatupdateevent", + "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", + "title": "TextFormatUpdateEvent", + "number": "4.2" + }, + "definedIn": "pre" + }, + { + "id": "dom-underlinestyle-dotted", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinestyle-dotted", + "linkingText": [ + "dotted" + ], + "localLinkingText": [], + "type": "enum-value", "for": [ - "TextUpdateEvent" + "UnderlineStyle" ], "access": "public", "informative": false, "heading": { - "id": "textupdateevent", - "href": "https://www.w3.org/TR/edit-context/#textupdateevent", - "title": "TextUpdateEvent", - "number": "5.1" + "id": "textformatupdateevent", + "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", + "title": "TextFormatUpdateEvent", + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-textformatupdateevent", - "href": "https://www.w3.org/TR/edit-context/#dom-textformatupdateevent", + "id": "dom-underlinestyle-dashed", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinestyle-dashed", "linkingText": [ - "TextFormatUpdateEvent" + "dashed" ], "localLinkingText": [], - "type": "interface", - "for": [], + "type": "enum-value", + "for": [ + "UnderlineStyle" + ], "access": "public", "informative": false, "heading": { "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, - "definedIn": "heading" + "definedIn": "pre" }, { - "id": "dom-textformatinit", - "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit", + "id": "dom-underlinestyle-wavy", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinestyle-wavy", "linkingText": [ - "TextFormatInit" + "wavy" ], "localLinkingText": [], - "type": "dictionary", + "type": "enum-value", + "for": [ + "UnderlineStyle" + ], + "access": "public", + "informative": false, + "heading": { + "id": "textformatupdateevent", + "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", + "title": "TextFormatUpdateEvent", + "number": "4.2" + }, + "definedIn": "pre" + }, + { + "id": "dom-underlinethickness", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinethickness", + "linkingText": [ + "UnderlineThickness" + ], + "localLinkingText": [], + "type": "enum", "for": [], "access": "public", "informative": false, @@ -1157,20 +1634,20 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-textformatinit-rangestart", - "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-rangestart", + "id": "dom-underlinethickness-none", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinethickness-none", "linkingText": [ - "rangeStart" + "none" ], "localLinkingText": [], - "type": "dict-member", + "type": "enum-value", "for": [ - "TextFormatInit" + "UnderlineThickness" ], "access": "public", "informative": false, @@ -1178,20 +1655,20 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-textformatinit-rangeend", - "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-rangeend", + "id": "dom-underlinethickness-thin", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinethickness-thin", "linkingText": [ - "rangeEnd" + "thin" ], "localLinkingText": [], - "type": "dict-member", + "type": "enum-value", "for": [ - "TextFormatInit" + "UnderlineThickness" ], "access": "public", "informative": false, @@ -1199,36 +1676,55 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-textformatinit-textcolor", - "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-textcolor", + "id": "dom-underlinethickness-thick", + "href": "https://www.w3.org/TR/edit-context/#dom-underlinethickness-thick", "linkingText": [ - "textColor" + "thick" ], "localLinkingText": [], - "type": "dict-member", + "type": "enum-value", "for": [ + "UnderlineThickness" + ], + "access": "public", + "informative": false, + "heading": { + "id": "textformatupdateevent", + "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", + "title": "TextFormatUpdateEvent", + "number": "4.2" + }, + "definedIn": "pre" + }, + { + "id": "dom-textformatinit", + "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit", + "linkingText": [ "TextFormatInit" ], + "localLinkingText": [], + "type": "dictionary", + "for": [], "access": "public", "informative": false, "heading": { "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-textformatinit-backgroundcolor", - "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-backgroundcolor", + "id": "dom-textformatinit-rangestart", + "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-rangestart", "linkingText": [ - "backgroundColor" + "rangeStart" ], "localLinkingText": [], "type": "dict-member", @@ -1241,15 +1737,15 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-textformatinit-underlinestyle", - "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-underlinestyle", + "id": "dom-textformatinit-rangeend", + "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-rangeend", "linkingText": [ - "underlineStyle" + "rangeEnd" ], "localLinkingText": [], "type": "dict-member", @@ -1262,15 +1758,15 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-textformatinit-underlinethickness", - "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-underlinethickness", + "id": "dom-textformatinit-underlinestyle", + "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-underlinestyle", "linkingText": [ - "underlineThickness" + "underlineStyle" ], "localLinkingText": [], "type": "dict-member", @@ -1283,15 +1779,15 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-textformatinit-underlinecolor", - "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-underlinecolor", + "id": "dom-textformatinit-underlinethickness", + "href": "https://www.w3.org/TR/edit-context/#dom-textformatinit-underlinethickness", "linkingText": [ - "underlineColor" + "underlineThickness" ], "localLinkingText": [], "type": "dict-member", @@ -1304,7 +1800,7 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, @@ -1323,7 +1819,7 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, @@ -1349,7 +1845,7 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, @@ -1372,7 +1868,7 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, @@ -1395,53 +1891,7 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-textformat-textcolor", - "href": "https://www.w3.org/TR/edit-context/#dom-textformat-textcolor", - "linkingText": [ - "textColor" - ], - "localLinkingText": [ - "TextFormat.textColor" - ], - "type": "attribute", - "for": [ - "TextFormat" - ], - "access": "public", - "informative": false, - "heading": { - "id": "textformatupdateevent", - "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", - "title": "TextFormatUpdateEvent", - "number": "5.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-textformat-backgroundcolor", - "href": "https://www.w3.org/TR/edit-context/#dom-textformat-backgroundcolor", - "linkingText": [ - "backgroundColor" - ], - "localLinkingText": [ - "TextFormat.backgroundColor" - ], - "type": "attribute", - "for": [ - "TextFormat" - ], - "access": "public", - "informative": false, - "heading": { - "id": "textformatupdateevent", - "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", - "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, @@ -1464,7 +1914,7 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, @@ -1487,30 +1937,7 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-textformat-underlinecolor", - "href": "https://www.w3.org/TR/edit-context/#dom-textformat-underlinecolor", - "linkingText": [ - "underlineColor" - ], - "localLinkingText": [ - "TextFormat.underlineColor" - ], - "type": "attribute", - "for": [ - "TextFormat" - ], - "access": "public", - "informative": false, - "heading": { - "id": "textformatupdateevent", - "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", - "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, @@ -1529,7 +1956,7 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, @@ -1550,7 +1977,26 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" + }, + "definedIn": "pre" + }, + { + "id": "dom-textformatupdateevent", + "href": "https://www.w3.org/TR/edit-context/#dom-textformatupdateevent", + "linkingText": [ + "TextFormatUpdateEvent" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "textformatupdateevent", + "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", + "title": "TextFormatUpdateEvent", + "number": "4.2" }, "definedIn": "pre" }, @@ -1559,7 +2005,8 @@ "href": "https://www.w3.org/TR/edit-context/#dom-textformatupdateevent-constructor", "linkingText": [ "constructor()", - "constructor(options)" + "constructor(type)", + "constructor(type, options)" ], "localLinkingText": [ "TextFormatUpdateEvent.constructor", @@ -1576,7 +2023,7 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, @@ -1601,28 +2048,28 @@ "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, "definedIn": "pre" }, { - "id": "dom-characterboundsupdateevent", - "href": "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateevent", + "id": "dfn-text-format-list", + "href": "https://www.w3.org/TR/edit-context/#dfn-text-format-list", "linkingText": [ - "CharacterBoundsUpdateEvent" + "text format list" ], "localLinkingText": [], - "type": "interface", + "type": "dfn", "for": [], - "access": "public", + "access": "private", "informative": false, "heading": { - "id": "characterboundsupdateevent", - "href": "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", - "title": "CharacterBoundsUpdateEvent", - "number": "5.3" + "id": "textformatupdateevent", + "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", + "title": "TextFormatUpdateEvent", + "number": "4.2" }, - "definedIn": "heading" + "definedIn": "prose" }, { "id": "dom-characterboundsupdateeventinit", @@ -1639,7 +2086,7 @@ "id": "characterboundsupdateevent", "href": "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", "title": "CharacterBoundsUpdateEvent", - "number": "5.3" + "number": "4.3" }, "definedIn": "pre" }, @@ -1660,7 +2107,7 @@ "id": "characterboundsupdateevent", "href": "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", "title": "CharacterBoundsUpdateEvent", - "number": "5.3" + "number": "4.3" }, "definedIn": "pre" }, @@ -1681,7 +2128,26 @@ "id": "characterboundsupdateevent", "href": "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", "title": "CharacterBoundsUpdateEvent", - "number": "5.3" + "number": "4.3" + }, + "definedIn": "pre" + }, + { + "id": "dom-characterboundsupdateevent", + "href": "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateevent", + "linkingText": [ + "CharacterBoundsUpdateEvent" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "characterboundsupdateevent", + "href": "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", + "title": "CharacterBoundsUpdateEvent", + "number": "4.3" }, "definedIn": "pre" }, @@ -1690,7 +2156,8 @@ "href": "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateevent-constructor", "linkingText": [ "constructor()", - "constructor(options)" + "constructor(type)", + "constructor(type, options)" ], "localLinkingText": [ "CharacterBoundsUpdateEvent.constructor", @@ -1707,7 +2174,7 @@ "id": "characterboundsupdateevent", "href": "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", "title": "CharacterBoundsUpdateEvent", - "number": "5.3" + "number": "4.3" }, "definedIn": "pre" }, @@ -1730,7 +2197,7 @@ "id": "characterboundsupdateevent", "href": "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", "title": "CharacterBoundsUpdateEvent", - "number": "5.3" + "number": "4.3" }, "definedIn": "pre" }, @@ -1753,7 +2220,7 @@ "id": "characterboundsupdateevent", "href": "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", "title": "CharacterBoundsUpdateEvent", - "number": "5.3" + "number": "4.3" }, "definedIn": "pre" } diff --git a/tr/dfns/pointerevents3.json b/tr/dfns/pointerevents3.json index 6ed78800d60d..0081e050192b 100644 --- a/tr/dfns/pointerevents3.json +++ b/tr/dfns/pointerevents3.json @@ -256,27 +256,6 @@ }, "definedIn": "pre" }, - { - "id": "dom-pointereventinit-persistentdeviceid", - "href": "https://www.w3.org/TR/pointerevents3/#dom-pointereventinit-persistentdeviceid", - "linkingText": [ - "persistentDeviceId" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PointerEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "pointerevent-interface", - "href": "https://www.w3.org/TR/pointerevents3/#pointerevent-interface", - "title": "PointerEvent interface", - "number": "4.1" - }, - "definedIn": "pre" - }, { "id": "dom-pointereventinit-coalescedevents", "href": "https://www.w3.org/TR/pointerevents3/#dom-pointereventinit-coalescedevents", @@ -622,29 +601,6 @@ }, "definedIn": "dt" }, - { - "id": "dom-pointerevent-persistentdeviceid", - "href": "https://www.w3.org/TR/pointerevents3/#dom-pointerevent-persistentdeviceid", - "linkingText": [ - "persistentDeviceId" - ], - "localLinkingText": [ - "PointerEvent.persistentDeviceId" - ], - "type": "attribute", - "for": [ - "PointerEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "pointerevent-interface", - "href": "https://www.w3.org/TR/pointerevents3/#pointerevent-interface", - "title": "PointerEvent interface", - "number": "4.1" - }, - "definedIn": "dt" - }, { "id": "dom-pointerevent-getcoalescedevents", "href": "https://www.w3.org/TR/pointerevents3/#dom-pointerevent-getcoalescedevents", diff --git a/tr/dfns/webnn.json b/tr/dfns/webnn.json index 9424d394b931..775d7cb8b234 100644 --- a/tr/dfns/webnn.json +++ b/tr/dfns/webnn.json @@ -2055,10 +2055,10 @@ "definedIn": "prose" }, { - "id": "same-as", - "href": "https://www.w3.org/TR/webnn/#same-as", + "id": "same-type-as", + "href": "https://www.w3.org/TR/webnn/#same-type-as", "linkingText": [ - "same as" + "same type as" ], "localLinkingText": [], "type": "dfn", @@ -2130,6 +2130,25 @@ }, "definedIn": "prose" }, + { + "id": "same-rank-as", + "href": "https://www.w3.org/TR/webnn/#same-rank-as", + "linkingText": [ + "same rank as" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "api-mloperand", + "href": "https://www.w3.org/TR/webnn/#api-mloperand", + "title": "MLOperand interface", + "number": "7.6" + }, + "definedIn": "prose" + }, { "id": "dom-mloperatoroptions-label", "href": "https://www.w3.org/TR/webnn/#dom-mloperatoroptions-label", diff --git a/tr/events/edit-context.json b/tr/events/edit-context.json index d86ad2da7dc1..6074673c9f3d 100644 --- a/tr/events/edit-context.json +++ b/tr/events/edit-context.json @@ -7,32 +7,37 @@ { "src": { "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface" + "href": "https://www.w3.org/TR/edit-context/#update-the-editcontext" }, - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", - "type": "beforeinput", - "interface": "Event" + "href": "https://w3c.github.io/uievents/#event-type-compositionstart", + "type": "compositionstart", + "targets": [ + "EditContext" + ], + "interface": "CompositionEvent", + "isExtension": true }, { "src": { "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface" + "href": "https://www.w3.org/TR/edit-context/#update-the-editcontext" }, - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", - "type": "compositionstart", - "interface": "Event", + "href": "https://w3c.github.io/uievents/#event-type-compositionend", + "type": "compositionend", "targets": [ "EditContext" - ] + ], + "interface": "CompositionEvent", + "isExtension": true }, { "src": { "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface" + "href": "https://www.w3.org/TR/edit-context/#dispatch-text-update-event" }, - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", + "href": "https://www.w3.org/TR/edit-context/#dispatch-text-update-event", "type": "textupdate", - "interface": "Event", + "interface": "TextUpdateEvent", "targets": [ "EditContext" ] @@ -40,20 +45,11 @@ { "src": { "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface" - }, - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", - "type": "textformateupdate", - "interface": "Event" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface" + "href": "https://www.w3.org/TR/edit-context/#dispatch-text-format-update-event" }, - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", - "type": "characterboundsupdate", - "interface": "Event", + "href": "https://www.w3.org/TR/edit-context/#dispatch-text-format-update-event", + "type": "textformatupdate", + "interface": "TextFormatUpdateEvent", "targets": [ "EditContext" ] @@ -61,23 +57,14 @@ { "src": { "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface" + "href": "https://www.w3.org/TR/edit-context/#dispatch-character-bounds-update-event" }, - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", - "type": "compositionend", - "interface": "Event", + "href": "https://www.w3.org/TR/edit-context/#dispatch-character-bounds-update-event", + "type": "characterboundsupdate", + "interface": "CharacterBoundsUpdateEvent", "targets": [ "EditContext" ] - }, - { - "type": "textformatupdate", - "targets": [ - "EditContext" - ], - "src": { - "format": "IDL eventHandler" - } } ] } \ No newline at end of file diff --git a/tr/headings/edit-context.json b/tr/headings/edit-context.json index 3c9d8ced4f1b..a027f16b7b81 100644 --- a/tr/headings/edit-context.json +++ b/tr/headings/edit-context.json @@ -10,18 +10,6 @@ "level": 1, "title": "EditContext API" }, - { - "id": "abstract", - "href": "https://www.w3.org/TR/edit-context/#abstract", - "level": 2, - "title": "Abstract" - }, - { - "id": "sotd", - "href": "https://www.w3.org/TR/edit-context/#sotd", - "level": 2, - "title": "Status of This Document" - }, { "id": "toc", "href": "https://www.w3.org/TR/edit-context/#toc", @@ -49,6 +37,48 @@ "title": "The EditContext Model", "number": "1.2" }, + { + "id": "editcontext-state", + "href": "https://www.w3.org/TR/edit-context/#editcontext-state", + "level": 4, + "title": "EditContext state", + "number": "1.2.1" + }, + { + "id": "association-and-activation", + "href": "https://www.w3.org/TR/edit-context/#association-and-activation", + "level": 4, + "title": "Association and activation", + "number": "1.2.2" + }, + { + "id": "differences-for-an-editcontext-editing-host", + "href": "https://www.w3.org/TR/edit-context/#differences-for-an-editcontext-editing-host", + "level": 4, + "title": "Differences for an EditContext editing host", + "number": "1.2.3" + }, + { + "id": "editcontext-events", + "href": "https://www.w3.org/TR/edit-context/#editcontext-events", + "level": 4, + "title": "EditContext events", + "number": "1.2.4" + }, + { + "id": "event-loop-changes", + "href": "https://www.w3.org/TR/edit-context/#event-loop-changes", + "level": 4, + "title": "Event loop changes", + "number": "1.2.5" + }, + { + "id": "examples", + "href": "https://www.w3.org/TR/edit-context/#examples", + "level": 4, + "title": "Examples", + "number": "1.2.6" + }, { "id": "interactions", "href": "https://www.w3.org/TR/edit-context/#interactions", @@ -64,60 +94,116 @@ "number": "2" }, { - "id": "extensions-to-the-element-interface", - "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", + "id": "editcontext-api", + "href": "https://www.w3.org/TR/edit-context/#editcontext-api", "level": 2, - "title": "Extensions to the Element interface", + "title": "EditContext API", "number": "3" }, { - "id": "supported-elements", - "href": "https://www.w3.org/TR/edit-context/#supported-elements", + "id": "extensions-to-the-htmlelement-interface", + "href": "https://www.w3.org/TR/edit-context/#extensions-to-the-htmlelement-interface", "level": 3, - "title": "Supported elements", + "title": "Extensions to the HTMLElement interface", "number": "3.1" }, { - "id": "the-editcontext-interface", - "href": "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "level": 2, - "title": "The EditContext Interface", - "number": "4" + "id": "handle-input-for-editcontext", + "href": "https://www.w3.org/TR/edit-context/#handle-input-for-editcontext", + "level": 4, + "title": "Handle input for EditContext", + "number": "3.1.1" }, { - "id": "editcontext-events", - "href": "https://www.w3.org/TR/edit-context/#editcontext-events", + "id": "editcontext-handled-inputtype", + "href": "https://www.w3.org/TR/edit-context/#editcontext-handled-inputtype", + "level": 4, + "title": "EditContext-handled inputType", + "number": "3.1.2" + }, + { + "id": "update-the-editcontext", + "href": "https://www.w3.org/TR/edit-context/#update-the-editcontext", + "level": 4, + "title": "Update the EditContext", + "number": "3.1.3" + }, + { + "id": "update-the-text-edit-context", + "href": "https://www.w3.org/TR/edit-context/#update-the-text-edit-context", + "level": 4, + "title": "Update the Text Edit Context", + "number": "3.1.4" + }, + { + "id": "dispatch-text-update-event", + "href": "https://www.w3.org/TR/edit-context/#dispatch-text-update-event", + "level": 4, + "title": "Dispatch text update event", + "number": "3.1.5" + }, + { + "id": "dispatch-text-format-update-event", + "href": "https://www.w3.org/TR/edit-context/#dispatch-text-format-update-event", + "level": 4, + "title": "Dispatch text format update event", + "number": "3.1.6" + }, + { + "id": "dispatch-character-bounds-update-event", + "href": "https://www.w3.org/TR/edit-context/#dispatch-character-bounds-update-event", + "level": 4, + "title": "Dispatch character bounds update event", + "number": "3.1.7" + }, + { + "id": "deactivate-an-editcontext", + "href": "https://www.w3.org/TR/edit-context/#deactivate-an-editcontext", + "level": 4, + "title": "Deactivate an EditContext", + "number": "3.1.8" + }, + { + "id": "determine-the-active-editcontext", + "href": "https://www.w3.org/TR/edit-context/#determine-the-active-editcontext", + "level": 4, + "title": "Determine the active EditContext", + "number": "3.1.9" + }, + { + "id": "editcontext-interface-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "level": 3, + "title": "EditContext Interface", + "number": "3.2" + }, + { + "id": "editcontext-events-0", + "href": "https://www.w3.org/TR/edit-context/#editcontext-events-0", "level": 2, - "title": "EditContext events", - "number": "5" + "title": "EditContext Events", + "number": "4" }, { "id": "textupdateevent", "href": "https://www.w3.org/TR/edit-context/#textupdateevent", "level": 3, "title": "TextUpdateEvent", - "number": "5.1" + "number": "4.1" }, { "id": "textformatupdateevent", "href": "https://www.w3.org/TR/edit-context/#textformatupdateevent", "level": 3, "title": "TextFormatUpdateEvent", - "number": "5.2" + "number": "4.2" }, { "id": "characterboundsupdateevent", "href": "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", "level": 3, "title": "CharacterBoundsUpdateEvent", - "number": "5.3" - }, - { - "id": "privacy-and-security-considerations", - "href": "https://www.w3.org/TR/edit-context/#privacy-and-security-considerations", - "level": 2, - "title": "Privacy and Security Considerations", - "number": "6" + "number": "4.3" }, { "id": "idl-index", @@ -146,6 +232,13 @@ "level": 3, "title": "Normative references", "number": "C.1" + }, + { + "id": "informative-references", + "href": "https://www.w3.org/TR/edit-context/#informative-references", + "level": 3, + "title": "Informative references", + "number": "C.2" } ] } \ No newline at end of file diff --git a/tr/headings/pointerevents3.json b/tr/headings/pointerevents3.json index a25c4113b9ec..10eb52fbb725 100644 --- a/tr/headings/pointerevents3.json +++ b/tr/headings/pointerevents3.json @@ -14,7 +14,7 @@ "id": "subtitle", "href": "https://www.w3.org/TR/pointerevents3/#subtitle", "level": 2, - "title": "Level 4" + "title": "Level 3" }, { "id": "toc", diff --git a/tr/idl/edit-context.idl b/tr/idl/edit-context.idl index c336cfefa78e..8a51a84112b0 100644 --- a/tr/idl/edit-context.idl +++ b/tr/idl/edit-context.idl @@ -3,7 +3,7 @@ // (https://github.com/w3c/webref) // Source: EditContext API (https://www.w3.org/TR/edit-context/) -partial interface Element { +partial interface HTMLElement { attribute EditContext? editContext; }; @@ -20,20 +20,15 @@ interface EditContext : EventTarget { undefined updateText(unsigned long rangeStart, unsigned long rangeEnd, DOMString text); undefined updateSelection(unsigned long start, unsigned long end); - undefined updateControlBound(DOMRect controlBound); - undefined updateSelectionBound(DOMRect selectionBound); + undefined updateControlBounds(DOMRect controlBounds); + undefined updateSelectionBounds(DOMRect selectionBounds); undefined updateCharacterBounds(unsigned long rangeStart, sequence characterBounds); - sequence attachedElements(); + sequence attachedElements(); readonly attribute DOMString text; readonly attribute unsigned long selectionStart; readonly attribute unsigned long selectionEnd; - readonly attribute unsigned long compositionRangeStart; - readonly attribute unsigned long compositionRangeEnd; - readonly attribute boolean isInComposition; - readonly attribute DOMRect controlBound; - readonly attribute DOMRect selectionBound; readonly attribute unsigned long characterBoundsRangeStart; sequence characterBounds(); @@ -44,7 +39,7 @@ interface EditContext : EventTarget { attribute EventHandler oncompositionend; }; -dictionary TextUpdateEventInit { +dictionary TextUpdateEventInit : EventInit { unsigned long updateRangeStart; unsigned long updateRangeEnd; DOMString text; @@ -56,58 +51,51 @@ dictionary TextUpdateEventInit { [Exposed=Window] interface TextUpdateEvent : Event { - constructor(optional TextUpdateEventInit options = {}); + constructor(DOMString type, optional TextUpdateEventInit options = {}); readonly attribute unsigned long updateRangeStart; readonly attribute unsigned long updateRangeEnd; readonly attribute DOMString text; readonly attribute unsigned long selectionStart; readonly attribute unsigned long selectionEnd; - readonly attribute unsigned long compositionStart; - readonly attribute unsigned long compositionEnd; }; +enum UnderlineStyle { "none", "solid", "dotted", "dashed", "wavy" }; +enum UnderlineThickness { "none", "thin", "thick" }; + dictionary TextFormatInit { unsigned long rangeStart; unsigned long rangeEnd; - DOMString textColor; - DOMString backgroundColor; - DOMString underlineStyle; - DOMString underlineThickness; - DOMString underlineColor; + UnderlineStyle underlineStyle; + UnderlineThickness underlineThickness; }; [Exposed=Window] interface TextFormat { constructor(optional TextFormatInit options = {}); - attribute unsigned long rangeStart; - attribute unsigned long rangeEnd; - attribute DOMString textColor; - attribute DOMString backgroundColor; - attribute DOMString underlineStyle; - attribute DOMString underlineThickness; - attribute DOMString underlineColor; + readonly attribute unsigned long rangeStart; + readonly attribute unsigned long rangeEnd; + readonly attribute UnderlineStyle underlineStyle; + readonly attribute UnderlineThickness underlineThickness; }; -dictionary TextFormatUpdateEventInit { +dictionary TextFormatUpdateEventInit : EventInit { sequence textFormats; }; [Exposed=Window] interface TextFormatUpdateEvent : Event { - constructor(optional TextFormatUpdateEventInit options = {}); - + constructor(DOMString type, optional TextFormatUpdateEventInit options = {}); sequence getTextFormats(); }; -dictionary CharacterBoundsUpdateEventInit { +dictionary CharacterBoundsUpdateEventInit : EventInit { unsigned long rangeStart; unsigned long rangeEnd; }; [Exposed=Window] interface CharacterBoundsUpdateEvent : Event { - constructor(optional CharacterBoundsUpdateEventInit options = {}); - + constructor(DOMString type, optional CharacterBoundsUpdateEventInit options = {}); readonly attribute unsigned long rangeStart; readonly attribute unsigned long rangeEnd; }; diff --git a/tr/idl/pointerevents.idl b/tr/idl/pointerevents.idl index 77eb43ec28d6..3d45142c015a 100644 --- a/tr/idl/pointerevents.idl +++ b/tr/idl/pointerevents.idl @@ -16,7 +16,6 @@ dictionary PointerEventInit : MouseEventInit { double azimuthAngle; DOMString pointerType = ""; boolean isPrimary = false; - long persistentDeviceId = 0; sequence coalescedEvents = []; sequence predictedEvents = []; }; @@ -36,7 +35,6 @@ interface PointerEvent : MouseEvent { readonly attribute double azimuthAngle; readonly attribute DOMString pointerType; readonly attribute boolean isPrimary; - readonly attribute long persistentDeviceId; [SecureContext] sequence getCoalescedEvents(); sequence getPredictedEvents(); }; diff --git a/tr/ids/WGSL.json b/tr/ids/WGSL.json index 596b5ccd0ea6..bd34d5d84c3d 100644 --- a/tr/ids/WGSL.json +++ b/tr/ids/WGSL.json @@ -281,18 +281,15 @@ "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-private%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-statically-accessed%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-shader%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-bool", "https://www.w3.org/TR/WGSL/#ref-for-byte-size%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-variable%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-function%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-function-function%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-byte-size%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-variable%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-workgroup%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-statically-accessed%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-shader%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-fixed-footprint", "https://www.w3.org/TR/WGSL/#ref-for-creation-fixed-footprint", "https://www.w3.org/TR/WGSL/#ref-for-dom-supported-limits-maxcomputeworkgroupstoragesize", @@ -798,7 +795,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-static-context", "https://www.w3.org/TR/WGSL/#type-assertion", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-bool", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/WGSL/#type-checking", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A5", @@ -825,7 +822,7 @@ "https://www.w3.org/TR/WGSL/#parameterized", "https://www.w3.org/TR/WGSL/#fully-elaborated", "https://www.w3.org/TR/WGSL/#substitution", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0", "https://www.w3.org/TR/WGSL/#overload", "https://www.w3.org/TR/WGSL/#type-rule-applies-to-a-syntactic-phrase", "https://www.w3.org/TR/WGSL/#ref-for-syntactic-phrase%E2%91%A1", @@ -998,7 +995,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-abstractfloat%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#scalar-types", "https://www.w3.org/TR/WGSL/#scalar", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-abstractfloat%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A7", @@ -1741,7 +1738,7 @@ "https://www.w3.org/TR/WGSL/#predeclared-types", "https://www.w3.org/TR/WGSL/#ref-for-predeclared%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-type%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A0%E2%91%A2", @@ -2860,7 +2857,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-syntax-compound_statement%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A3", "https://www.w3.org/TR/WGSL/#switch-statement", "https://www.w3.org/TR/WGSL/#statement-switch", "https://www.w3.org/TR/WGSL/#ref-for-case-clause%E2%91%A0", @@ -2982,7 +2979,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-iteration%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-statement-continuing%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-declaration%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-identifier%E2%91%A1%E2%91%A5", @@ -3005,7 +3002,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-iteration%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-statement-loop%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-statement-for%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-dynamic-error%E2%91%A4", @@ -3031,7 +3028,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-statement-loop%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A6", "https://www.w3.org/TR/WGSL/#example-c9adc204", "https://www.w3.org/TR/WGSL/#continue-statement", "https://www.w3.org/TR/WGSL/#syntax-continue_statement", @@ -3102,7 +3099,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-function-scope%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-type-rule-preconditions%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A7", "https://www.w3.org/TR/WGSL/#syntax-const_assert_statement", "https://www.w3.org/TR/WGSL/#ref-for-syntax-expression%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#example-d16c55a9", @@ -3699,11 +3696,11 @@ "https://www.w3.org/TR/WGSL/#ref-for-return-value%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-stage-output%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A0%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-numeric-vector%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-numeric-vector%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-user-defined-input-datum", @@ -3711,7 +3708,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-return-type%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-user-defined-output-datum", "https://www.w3.org/TR/WGSL/#ref-for-built-in-output-value%E2%91%A1", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-built-in-values%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-compute%E2%91%A0", "https://www.w3.org/TR/WGSL/#example-b218a1e2", @@ -4131,6 +4128,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#memory-layouts", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-uniform-buffer%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-storage-buffer%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-dynamic-error%E2%91%A6", @@ -4138,7 +4136,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-memory-locations%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-store-type%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-uniform%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A0%E2%91%A0", @@ -4146,7 +4144,9 @@ "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-uniform%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-fixed-footprint%E2%91%A3", "https://www.w3.org/TR/WGSL/#alignof", "https://www.w3.org/TR/WGSL/#ref-for-alignment", "https://www.w3.org/TR/WGSL/#alignofmember", @@ -4165,27 +4165,32 @@ "https://www.w3.org/TR/WGSL/#ref-for-alignof%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-sizeof%E2%91%A3", "https://www.w3.org/TR/WGSL/#alignment-and-size", - "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A6", - "https://www.w3.org/TR/WGSL/#ref-for-fixed-footprint%E2%91%A3", + "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-fixed-footprint%E2%91%A4", "https://www.w3.org/TR/WGSL/#alignment", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-memory-locations%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#byte-size", - "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-fixed-footprint%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-alignof%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-sizeof%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-atomic-type%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-vector%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A1%E2%93%AA", @@ -4209,6 +4214,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-roundup%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-alignof%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-sizeof%E2%91%A7", + "https://www.w3.org/TR/WGSL/#why-is-bool-4-bytes", "https://www.w3.org/TR/WGSL/#structure-member-layout", "https://www.w3.org/TR/WGSL/#ref-for-structure%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#layout-attributes", @@ -4238,11 +4244,15 @@ "https://www.w3.org/TR/WGSL/#example-b15d769f", "https://www.w3.org/TR/WGSL/#example-adf8070c", "https://www.w3.org/TR/WGSL/#internal-value-layout", + "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-attribute-align%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-attribute-size%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-alignof%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-behavioral-requirements%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-host-shareable%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A5", @@ -4280,6 +4290,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-storage%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-requiredalignof%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-address-spaces-uniform%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A1%E2%91%A1", @@ -5301,8 +5312,8 @@ "https://www.w3.org/TR/WGSL/#ref-for-array%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#bool-builtin", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-zero-value%E2%91%A6", "https://www.w3.org/TR/WGSL/#f16-builtin", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A0%E2%91%A6", @@ -5311,7 +5322,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A7", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-f16%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/WGSL/#f32-builtin", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A0%E2%91%A7", @@ -5320,7 +5331,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-numeric-scalar%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-f32%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/WGSL/#i32-builtin", "https://www.w3.org/TR/WGSL/#ref-for-scalar%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A1", @@ -5330,7 +5341,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-scalar-floating-point-to-integral-conversion", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-rounding%E2%91%A2", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-i32%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A4", @@ -5481,7 +5492,7 @@ "https://www.w3.org/TR/WGSL/#ref-for-scalar-floating-point-to-integral-conversion%E2%91%A0", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/WGSL/#ref-for-rounding%E2%91%A3", - "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/WGSL/#ref-for-bool%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-abstractint%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-u32%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A2%E2%91%A5", @@ -6308,7 +6319,7 @@ "https://www.w3.org/TR/WGSL/#workgroupUniformLoad-builtin", "https://www.w3.org/TR/WGSL/#ref-for-type-concrete%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/WGSL/#ref-for-plain-type%E2%91%A7", - "https://www.w3.org/TR/WGSL/#ref-for-fixed-footprint%E2%91%A4", + "https://www.w3.org/TR/WGSL/#ref-for-fixed-footprint%E2%91%A6", "https://www.w3.org/TR/WGSL/#ref-for-atomic-type%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/WGSL/#ref-for-uniform-value%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/WGSL/#ref-for-shader-creation-error%E2%91%A1%E2%91%A7%E2%91%A3", diff --git a/tr/ids/edit-context.json b/tr/ids/edit-context.json index 5412bbacd9ca..af11cd48ab65 100644 --- a/tr/ids/edit-context.json +++ b/tr/ids/edit-context.json @@ -11,10 +11,8 @@ "https://www.w3.org/TR/edit-context/#title", "https://www.w3.org/TR/edit-context/#w3c-state", "https://www.w3.org/TR/edit-context/#abstract", - "https://www.w3.org/TR/edit-context/#abstract-0", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-1", "https://www.w3.org/TR/edit-context/#sotd", - "https://www.w3.org/TR/edit-context/#status-of-this-document", "https://www.w3.org/TR/edit-context/#w3c_process_revision", "https://www.w3.org/TR/edit-context/#toc", "https://www.w3.org/TR/edit-context/#table-of-contents", @@ -54,39 +52,162 @@ "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-11", "https://www.w3.org/TR/edit-context/#editcontext-model", "https://www.w3.org/TR/edit-context/#x1-2-the-editcontext-model", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-5", "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-12", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-13", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-14", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-15", + "https://www.w3.org/TR/edit-context/#editcontext-state", + "https://www.w3.org/TR/edit-context/#x1-2-1-editcontext-state", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-16", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-state-1", + "https://www.w3.org/TR/edit-context/#dfn-text-state", + "https://www.w3.org/TR/edit-context/#dfn-text", + "https://www.w3.org/TR/edit-context/#dfn-selection-start", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-1", + "https://www.w3.org/TR/edit-context/#dfn-selection-end", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-end-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-start-1", + "https://www.w3.org/TR/edit-context/#dfn-is-composing", + "https://www.w3.org/TR/edit-context/#dfn-composition-start", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-3", + "https://www.w3.org/TR/edit-context/#dfn-composition-end", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-4", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-composition-end-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-composition-start-1", + "https://www.w3.org/TR/edit-context/#dfn-text-formats", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-format-1", + "https://www.w3.org/TR/edit-context/#dfn-control-bounds", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-5", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-client-coordinate-system-1", + "https://www.w3.org/TR/edit-context/#dfn-selection-bounds", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-client-coordinate-system-2", + "https://www.w3.org/TR/edit-context/#dfn-codepoint-rects-start-index", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-codepoint-rects-1", + "https://www.w3.org/TR/edit-context/#dfn-codepoint-rects", + "https://www.w3.org/TR/edit-context/#dfn-text-format", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-7", + "https://www.w3.org/TR/edit-context/#dfn-range-start", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-8", + "https://www.w3.org/TR/edit-context/#dfn-range-end", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-9", + "https://www.w3.org/TR/edit-context/#dfn-underline-style", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinestyle-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-10", + "https://www.w3.org/TR/edit-context/#dfn-underline-thickness", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinethickness-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-11", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID", + "https://www.w3.org/TR/edit-context/#h-note", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-codepoint-rects-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-12", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-7", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-control-bounds-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-bounds-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-8", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-control-bounds-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-bounds-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-codepoint-rects-3", + "https://www.w3.org/TR/edit-context/#dfn-client-coordinate-system", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-0", + "https://www.w3.org/TR/edit-context/#h-note-0", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-client-coordinate-system-3", + "https://www.w3.org/TR/edit-context/#association-and-activation", + "https://www.w3.org/TR/edit-context/#x1-2-2-association-and-activation", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-4", + "https://www.w3.org/TR/edit-context/#dfn-associated-element", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-5", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-1", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-6", - "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-13", - "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-5", - "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-14", + "https://www.w3.org/TR/edit-context/#ref-for-dom-htmlelement-editcontext-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-2", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-7", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-text-1", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-1", + "https://www.w3.org/TR/edit-context/#h-note-1", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-8", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionstart-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-3", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-9", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionend-1", + "https://www.w3.org/TR/edit-context/#ref-for-dom-htmlelement-editcontext-2", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-10", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionbound-1", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-11", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-characterbounds-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-4", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-5", + "https://www.w3.org/TR/edit-context/#dfn-editcontext-editing-host", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-1", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-2", + "https://www.w3.org/TR/edit-context/#h-note-2", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-12", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-controlbound-1", - "https://www.w3.org/TR/edit-context/#example-associate-an-editcontext-with-an-element", - "https://www.w3.org/TR/edit-context/#example-using-editcontext-with-editing-model-view-and-controller", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-13", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-14", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-7", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-15", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-16", + "https://www.w3.org/TR/edit-context/#dfn-active-editcontext", + "https://www.w3.org/TR/edit-context/#issue-container-number-1", + "https://www.w3.org/TR/edit-context/#h-issue", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-9", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-handle-input-for-editcontext-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-4", + "https://www.w3.org/TR/edit-context/#differences-for-an-editcontext-editing-host", + "https://www.w3.org/TR/edit-context/#edit-context-differences", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-5", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-7", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-8", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-9", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-10", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-4", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-editing-host-11", + "https://www.w3.org/TR/edit-context/#editcontext-events", + "https://www.w3.org/TR/edit-context/#x1-2-4-editcontext-events", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-17", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-10", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-11", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-12", "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-13", "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-1", - "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-6", - "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-method-11", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-14", "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-15", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-method-11", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-3", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecharacterbounds-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-state-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecharacterbounds-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-4", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecharacterbounds-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-16", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-3", + "https://www.w3.org/TR/edit-context/#h-note-3", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecharacterbounds-4", + "https://www.w3.org/TR/edit-context/#event-loop-changes", + "https://www.w3.org/TR/edit-context/#x1-2-5-event-loop-changes", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-update-the-text-edit-context-1", + "https://www.w3.org/TR/edit-context/#examples", + "https://www.w3.org/TR/edit-context/#x1-2-6-examples", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-18", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-8", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-19", + "https://www.w3.org/TR/edit-context/#example-associate-an-editcontext-with-an-element", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-9", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-10", + "https://www.w3.org/TR/edit-context/#example-using-editcontext-with-editing-model-view-and-controller", "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-2", "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-3", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-5", "https://www.w3.org/TR/edit-context/#example-event-handlers-for-textupdateevent-textformatupdateevent-and-characterboundsupdateevent", "https://www.w3.org/TR/edit-context/#interactions", "https://www.w3.org/TR/edit-context/#x1-3-interactions-with-other-editing-primitives", @@ -95,41 +216,152 @@ "https://www.w3.org/TR/edit-context/#example-how-beforeinput-can-be-used-to-catch-deletebydrag-and-insertfromdrop-to-apply-drag-and-drop-changes", "https://www.w3.org/TR/edit-context/#conformance", "https://www.w3.org/TR/edit-context/#x2-conformance", - "https://www.w3.org/TR/edit-context/#dfn-user-agent", - "https://www.w3.org/TR/edit-context/#extensions-to-the-element-interface", - "https://www.w3.org/TR/edit-context/#x3-extensions-to-the-element-interface", - "https://www.w3.org/TR/edit-context/#dom-element", - "https://www.w3.org/TR/edit-context/#webidl-385981653", - "https://www.w3.org/TR/edit-context/#idl-def-element-partial-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-element-1", - "https://www.w3.org/TR/edit-context/#idl-def-element-editcontext", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-13", - "https://www.w3.org/TR/edit-context/#ref-for-dom-element-editcontext-1", - "https://www.w3.org/TR/edit-context/#dom-element-editcontext", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-14", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-15", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-16", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-17", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-text-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionstart-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionend-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-compositionrangestart-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-compositionrangeend-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-isincomposition-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-text-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionstart-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionend-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-compositionrangestart-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-compositionrangeend-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-isincomposition-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-18", - "https://www.w3.org/TR/edit-context/#supported-elements", - "https://www.w3.org/TR/edit-context/#x3-1-supported-elements", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-19", - "https://www.w3.org/TR/edit-context/#the-editcontext-interface", - "https://www.w3.org/TR/edit-context/#x4-the-editcontext-interface", - "https://www.w3.org/TR/edit-context/#dom-editcontext", - "https://www.w3.org/TR/edit-context/#webidl-934741773", + "https://www.w3.org/TR/edit-context/#editcontext-api", + "https://www.w3.org/TR/edit-context/#x3-editcontext-api", + "https://www.w3.org/TR/edit-context/#extensions-to-the-htmlelement-interface", + "https://www.w3.org/TR/edit-context/#x3-1-extensions-to-the-htmlelement-interface", + "https://www.w3.org/TR/edit-context/#webidl-1194002304", + "https://www.w3.org/TR/edit-context/#idl-def-htmlelement-partial-1", + "https://www.w3.org/TR/edit-context/#idl-def-htmlelement-editcontext", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-20", + "https://www.w3.org/TR/edit-context/#dom-htmlelement-editcontext", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-21", + "https://www.w3.org/TR/edit-context/#ref-for-dom-htmlelement-editcontext-3", + "https://www.w3.org/TR/edit-context/#ref-for-dom-htmlelement-editcontext-4", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-11", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-12", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-13", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-14", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-15", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-5", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-deactivate-an-editcontext-1", + "https://www.w3.org/TR/edit-context/#handle-input-for-editcontext", + "https://www.w3.org/TR/edit-context/#x3-1-1-handle-input-for-editcontext", + "https://www.w3.org/TR/edit-context/#dfn-handle-input-for-editcontext", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-update-the-editcontext-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-17", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-state-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-13", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-formats-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-start-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-end-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-composition-start-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-composition-end-2", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-4", + "https://www.w3.org/TR/edit-context/#h-note-4", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-18", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-19", + "https://www.w3.org/TR/edit-context/#editcontext-handled-inputtype", + "https://www.w3.org/TR/edit-context/#x3-1-2-editcontext-handled-inputtype", + "https://www.w3.org/TR/edit-context/#dfn-editcontext-handled-inputtype", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-editcontext-handled-inputtype-1", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-5", + "https://www.w3.org/TR/edit-context/#h-note-5", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-22", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-23", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-24", + "https://www.w3.org/TR/edit-context/#update-the-editcontext", + "https://www.w3.org/TR/edit-context/#x3-1-3-update-the-editcontext", + "https://www.w3.org/TR/edit-context/#dfn-update-the-editcontext", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-25", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-format-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-17", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-4", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-5", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-7", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-14", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-start-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-end-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-composition-start-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-composition-end-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-composition-start-4", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-dispatch-text-update-event-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-8", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-dispatch-text-format-update-event-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-dispatch-character-bounds-update-event-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-9", + "https://www.w3.org/TR/edit-context/#update-the-text-edit-context", + "https://www.w3.org/TR/edit-context/#x3-1-4-update-the-text-edit-context", + "https://www.w3.org/TR/edit-context/#dfn-update-the-text-edit-context", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-7", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-determine-the-active-editcontext-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-deactivate-an-editcontext-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-20", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-state-4", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-state-5", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-8", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-6", + "https://www.w3.org/TR/edit-context/#h-note-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-edit-context-21", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-state-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-18", + "https://www.w3.org/TR/edit-context/#dispatch-text-update-event", + "https://www.w3.org/TR/edit-context/#x3-1-5-dispatch-text-update-event", + "https://www.w3.org/TR/edit-context/#dfn-dispatch-text-update-event", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-26", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-3", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-text-1", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-selectionstart-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-start-4", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-selectionend-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-end-4", + "https://www.w3.org/TR/edit-context/#dispatch-text-format-update-event", + "https://www.w3.org/TR/edit-context/#x3-1-6-dispatch-text-format-update-event", + "https://www.w3.org/TR/edit-context/#dfn-dispatch-text-format-update-event", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-27", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-format-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-19", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-format-4", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-rangestart-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-range-start-1", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-rangeend-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-range-end-1", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-underlinestyle-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-underline-style-1", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-underlinethickness-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-underline-thickness-1", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-3", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-4", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-format-list-1", + "https://www.w3.org/TR/edit-context/#dispatch-character-bounds-update-event", + "https://www.w3.org/TR/edit-context/#x3-1-7-dispatch-character-bounds-update-event", + "https://www.w3.org/TR/edit-context/#dfn-dispatch-character-bounds-update-event", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-28", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-6", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-rangestart-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-composition-start-5", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-rangeend-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-composition-end-4", + "https://www.w3.org/TR/edit-context/#deactivate-an-editcontext", + "https://www.w3.org/TR/edit-context/#x3-1-8-deactivate-an-editcontext", + "https://www.w3.org/TR/edit-context/#dfn-deactivate-an-editcontext", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-29", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-is-composing-10", + "https://www.w3.org/TR/edit-context/#determine-the-active-editcontext", + "https://www.w3.org/TR/edit-context/#x3-1-9-determine-the-active-editcontext", + "https://www.w3.org/TR/edit-context/#dfn-determine-the-active-editcontext", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-30", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-7", + "https://www.w3.org/TR/edit-context/#h-note-7", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-9", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-10", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-8", + "https://www.w3.org/TR/edit-context/#h-note-8", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-31", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-16", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-32", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-active-editcontext-11", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-33", + "https://www.w3.org/TR/edit-context/#editcontext-interface-0", + "https://www.w3.org/TR/edit-context/#editcontext-interface", + "https://www.w3.org/TR/edit-context/#webidl-1706524934", "https://www.w3.org/TR/edit-context/#idl-def-editcontextinit", "https://www.w3.org/TR/edit-context/#dom-editcontextinit", "https://www.w3.org/TR/edit-context/#idl-def-editcontextinit-text", @@ -139,93 +371,77 @@ "https://www.w3.org/TR/edit-context/#idl-def-editcontextinit-selectionend", "https://www.w3.org/TR/edit-context/#dom-editcontextinit-selectionend", "https://www.w3.org/TR/edit-context/#idl-def-editcontext", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-20", + "https://www.w3.org/TR/edit-context/#dom-editcontext", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-constructor-options", "https://www.w3.org/TR/edit-context/#dom-editcontext-constructor", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontextinit-1", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-updatetext-rangestart-rangeend-text", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatetext-1", + "https://www.w3.org/TR/edit-context/#dom-editcontext-updatetext", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-updateselection-start-end", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updateselection-1", - "https://www.w3.org/TR/edit-context/#idl-def-editcontext-updatecontrolbound-controlbound", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecontrolbound-1", - "https://www.w3.org/TR/edit-context/#idl-def-editcontext-updateselectionbound-selectionbound", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updateselectionbound-1", + "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselection", + "https://www.w3.org/TR/edit-context/#idl-def-editcontext-updatecontrolbounds-controlbounds", + "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecontrolbounds", + "https://www.w3.org/TR/edit-context/#idl-def-editcontext-updateselectionbounds-selectionbounds", + "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselectionbounds", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-updatecharacterbounds-rangestart-characterbounds", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecharacterbounds-2", + "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecharacterbounds", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-attachedelements", - "https://www.w3.org/TR/edit-context/#ref-for-dom-element-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-attachedelements-1", + "https://www.w3.org/TR/edit-context/#dom-editcontext-attachedelements", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-text", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-text-4", + "https://www.w3.org/TR/edit-context/#dom-editcontext-text", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-selectionstart", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionstart-4", + "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionstart", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-selectionend", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionend-4", - "https://www.w3.org/TR/edit-context/#idl-def-editcontext-compositionrangestart", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-compositionrangestart-3", - "https://www.w3.org/TR/edit-context/#idl-def-editcontext-compositionrangeend", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-compositionrangeend-3", - "https://www.w3.org/TR/edit-context/#idl-def-editcontext-isincomposition", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-isincomposition-3", - "https://www.w3.org/TR/edit-context/#idl-def-editcontext-controlbound", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-controlbound-2", - "https://www.w3.org/TR/edit-context/#idl-def-editcontext-selectionbound", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionbound-2", + "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionend", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-characterboundsrangestart", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-characterboundsrangestart-1", + "https://www.w3.org/TR/edit-context/#dom-editcontext-characterboundsrangestart", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-characterbounds", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-characterbounds-2", + "https://www.w3.org/TR/edit-context/#dom-editcontext-characterbounds", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-ontextupdate", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-ontextupdate-1", + "https://www.w3.org/TR/edit-context/#dom-editcontext-ontextupdate", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-ontextformatupdate", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-ontextformatupdate-1", + "https://www.w3.org/TR/edit-context/#dom-editcontext-ontextformatupdate", "https://www.w3.org/TR/edit-context/#idl-def-editcontext-oncharacterboundsupdate", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-oncharacterboundsupdate-1", - "https://www.w3.org/TR/edit-context/#idl-def-editcontext-oncompositionstart", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-oncompositionstart-1", - "https://www.w3.org/TR/edit-context/#idl-def-editcontext-oncompositionend", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-oncompositionend-1", - "https://www.w3.org/TR/edit-context/#dom-editcontext-text", - "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionstart", - "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionend", - "https://www.w3.org/TR/edit-context/#dom-editcontext-compositionrangestart", - "https://www.w3.org/TR/edit-context/#dom-editcontext-compositionrangeend", - "https://www.w3.org/TR/edit-context/#dom-editcontext-isincomposition", - "https://www.w3.org/TR/edit-context/#dom-editcontext-controlbound", - "https://www.w3.org/TR/edit-context/#issue-container-generatedID", - "https://www.w3.org/TR/edit-context/#h-note", - "https://www.w3.org/TR/edit-context/#dom-editcontext-selectionbound", - "https://www.w3.org/TR/edit-context/#dom-editcontext-characterboundsrangestart", - "https://www.w3.org/TR/edit-context/#dom-editcontext-characterbounds", - "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselection", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionstart-5", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionend-5", - "https://www.w3.org/TR/edit-context/#dom-editcontext-updateselectionbound", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionbound-3", - "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecontrolbound", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-controlbound-3", - "https://www.w3.org/TR/edit-context/#dom-editcontext-updatecharacterbounds", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-characterboundsrangestart-2", - "https://www.w3.org/TR/edit-context/#dom-editcontext-updatetext", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-text-5", - "https://www.w3.org/TR/edit-context/#dom-editcontext-attachedelements", - "https://www.w3.org/TR/edit-context/#issue-container-number-1", - "https://www.w3.org/TR/edit-context/#h-issue", - "https://www.w3.org/TR/edit-context/#dom-editcontext-ontextupdate", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-3", "https://www.w3.org/TR/edit-context/#dom-editcontext-oncharacterboundsupdate", - "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-4", - "https://www.w3.org/TR/edit-context/#dom-editcontext-ontextformatupdate", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-3", + "https://www.w3.org/TR/edit-context/#idl-def-editcontext-oncompositionstart", "https://www.w3.org/TR/edit-context/#dom-editcontext-oncompositionstart", + "https://www.w3.org/TR/edit-context/#idl-def-editcontext-oncompositionend", "https://www.w3.org/TR/edit-context/#dom-editcontext-oncompositionend", - "https://www.w3.org/TR/edit-context/#editcontext-events", - "https://www.w3.org/TR/edit-context/#x5-editcontext-events", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-text-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-15", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionstart-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-start-5", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionend-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-end-5", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-characterbounds-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-codepoint-rects-4", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-characterboundsrangestart-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-codepoint-rects-start-index-1", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-16", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-9", + "https://www.w3.org/TR/edit-context/#h-note-9", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-start-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-end-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-selection-bounds-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-control-bounds-3", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-codepoint-rects-start-index-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-codepoint-rects-5", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-34", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-17", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-35", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-18", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-10", + "https://www.w3.org/TR/edit-context/#h-note-10", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-36", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-associated-element-19", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-4", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-7", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-5", + "https://www.w3.org/TR/edit-context/#editcontext-events-0", + "https://www.w3.org/TR/edit-context/#x4-editcontext-events", "https://www.w3.org/TR/edit-context/#textupdateevent", - "https://www.w3.org/TR/edit-context/#x5-1-textupdateevent", - "https://www.w3.org/TR/edit-context/#dom-textupdateevent", - "https://www.w3.org/TR/edit-context/#webidl-267612351", + "https://www.w3.org/TR/edit-context/#x4-1-textupdateevent", + "https://www.w3.org/TR/edit-context/#webidl-1353943793", "https://www.w3.org/TR/edit-context/#idl-def-textupdateeventinit", "https://www.w3.org/TR/edit-context/#dom-textupdateeventinit", "https://www.w3.org/TR/edit-context/#idl-def-textupdateeventinit-updaterangestart", @@ -243,8 +459,8 @@ "https://www.w3.org/TR/edit-context/#idl-def-textupdateeventinit-compositionend", "https://www.w3.org/TR/edit-context/#dom-textupdateeventinit-compositionend", "https://www.w3.org/TR/edit-context/#idl-def-textupdateevent", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-4", - "https://www.w3.org/TR/edit-context/#idl-def-textupdateevent-constructor-options", + "https://www.w3.org/TR/edit-context/#dom-textupdateevent", + "https://www.w3.org/TR/edit-context/#idl-def-textupdateevent-constructor-type-options", "https://www.w3.org/TR/edit-context/#dom-textupdateevent-constructor", "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateeventinit-1", "https://www.w3.org/TR/edit-context/#idl-def-textupdateevent-updaterangestart", @@ -257,37 +473,38 @@ "https://www.w3.org/TR/edit-context/#dom-textupdateevent-selectionstart", "https://www.w3.org/TR/edit-context/#idl-def-textupdateevent-selectionend", "https://www.w3.org/TR/edit-context/#dom-textupdateevent-selectionend", - "https://www.w3.org/TR/edit-context/#idl-def-textupdateevent-compositionstart", - "https://www.w3.org/TR/edit-context/#dom-textupdateevent-compositionstart", - "https://www.w3.org/TR/edit-context/#idl-def-textupdateevent-compositionend", - "https://www.w3.org/TR/edit-context/#dom-textupdateevent-compositionend", "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-updaterangestart-1", "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-updaterangeend-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-text-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-selectionstart-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-selectionend-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-compositionstart-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-compositionend-1", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-text-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-selectionstart-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-selectionend-2", "https://www.w3.org/TR/edit-context/#textformatupdateevent", - "https://www.w3.org/TR/edit-context/#x5-2-textformatupdateevent", - "https://www.w3.org/TR/edit-context/#dom-textformatupdateevent", - "https://www.w3.org/TR/edit-context/#webidl-121882802", + "https://www.w3.org/TR/edit-context/#x4-2-textformatupdateevent", + "https://www.w3.org/TR/edit-context/#webidl-1736300795", + "https://www.w3.org/TR/edit-context/#idl-def-underlinestyle", + "https://www.w3.org/TR/edit-context/#dom-underlinestyle", + "https://www.w3.org/TR/edit-context/#dom-underlinestyle-none", + "https://www.w3.org/TR/edit-context/#dom-underlinestyle-solid", + "https://www.w3.org/TR/edit-context/#dom-underlinestyle-dotted", + "https://www.w3.org/TR/edit-context/#dom-underlinestyle-dashed", + "https://www.w3.org/TR/edit-context/#dom-underlinestyle-wavy", + "https://www.w3.org/TR/edit-context/#idl-def-underlinethickness", + "https://www.w3.org/TR/edit-context/#dom-underlinethickness", + "https://www.w3.org/TR/edit-context/#dom-underlinethickness-none", + "https://www.w3.org/TR/edit-context/#dom-underlinethickness-thin", + "https://www.w3.org/TR/edit-context/#dom-underlinethickness-thick", "https://www.w3.org/TR/edit-context/#idl-def-textformatinit", "https://www.w3.org/TR/edit-context/#dom-textformatinit", "https://www.w3.org/TR/edit-context/#idl-def-textformatinit-rangestart", "https://www.w3.org/TR/edit-context/#dom-textformatinit-rangestart", "https://www.w3.org/TR/edit-context/#idl-def-textformatinit-rangeend", "https://www.w3.org/TR/edit-context/#dom-textformatinit-rangeend", - "https://www.w3.org/TR/edit-context/#idl-def-textformatinit-textcolor", - "https://www.w3.org/TR/edit-context/#dom-textformatinit-textcolor", - "https://www.w3.org/TR/edit-context/#idl-def-textformatinit-backgroundcolor", - "https://www.w3.org/TR/edit-context/#dom-textformatinit-backgroundcolor", "https://www.w3.org/TR/edit-context/#idl-def-textformatinit-underlinestyle", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinestyle-2", "https://www.w3.org/TR/edit-context/#dom-textformatinit-underlinestyle", "https://www.w3.org/TR/edit-context/#idl-def-textformatinit-underlinethickness", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinethickness-2", "https://www.w3.org/TR/edit-context/#dom-textformatinit-underlinethickness", - "https://www.w3.org/TR/edit-context/#idl-def-textformatinit-underlinecolor", - "https://www.w3.org/TR/edit-context/#dom-textformatinit-underlinecolor", "https://www.w3.org/TR/edit-context/#idl-def-textformat", "https://www.w3.org/TR/edit-context/#dom-textformat", "https://www.w3.org/TR/edit-context/#idl-def-textformat-constructor-options", @@ -297,43 +514,39 @@ "https://www.w3.org/TR/edit-context/#dom-textformat-rangestart", "https://www.w3.org/TR/edit-context/#idl-def-textformat-rangeend", "https://www.w3.org/TR/edit-context/#dom-textformat-rangeend", - "https://www.w3.org/TR/edit-context/#idl-def-textformat-textcolor", - "https://www.w3.org/TR/edit-context/#dom-textformat-textcolor", - "https://www.w3.org/TR/edit-context/#idl-def-textformat-backgroundcolor", - "https://www.w3.org/TR/edit-context/#dom-textformat-backgroundcolor", "https://www.w3.org/TR/edit-context/#idl-def-textformat-underlinestyle", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinestyle-3", "https://www.w3.org/TR/edit-context/#dom-textformat-underlinestyle", "https://www.w3.org/TR/edit-context/#idl-def-textformat-underlinethickness", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinethickness-3", "https://www.w3.org/TR/edit-context/#dom-textformat-underlinethickness", - "https://www.w3.org/TR/edit-context/#idl-def-textformat-underlinecolor", - "https://www.w3.org/TR/edit-context/#dom-textformat-underlinecolor", "https://www.w3.org/TR/edit-context/#idl-def-textformatupdateeventinit", "https://www.w3.org/TR/edit-context/#dom-textformatupdateeventinit", "https://www.w3.org/TR/edit-context/#idl-def-textformatupdateeventinit-textformats", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-1", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-3", "https://www.w3.org/TR/edit-context/#dom-textformatupdateeventinit-textformats", "https://www.w3.org/TR/edit-context/#idl-def-textformatupdateevent", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-4", - "https://www.w3.org/TR/edit-context/#idl-def-textformatupdateevent-constructor-options", + "https://www.w3.org/TR/edit-context/#dom-textformatupdateevent", + "https://www.w3.org/TR/edit-context/#idl-def-textformatupdateevent-constructor-type-options", "https://www.w3.org/TR/edit-context/#dom-textformatupdateevent-constructor", "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateeventinit-1", "https://www.w3.org/TR/edit-context/#idl-def-textformatupdateevent-gettextformats", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-4", "https://www.w3.org/TR/edit-context/#dom-textformatupdateevent-gettextformats", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-rangestart-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-rangeend-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-textcolor-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-backgroundcolor-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-underlinestyle-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-underlinethickness-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-underlinecolor-1", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-rangestart-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-rangeend-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-underlinestyle-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinestyle-4", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-underlinethickness-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinethickness-4", "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-gettextformats-1", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-text-6", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-format-list-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-6", + "https://www.w3.org/TR/edit-context/#dfn-text-format-list", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-format-5", "https://www.w3.org/TR/edit-context/#characterboundsupdateevent", - "https://www.w3.org/TR/edit-context/#x5-3-characterboundsupdateevent", - "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateevent", - "https://www.w3.org/TR/edit-context/#webidl-603569052", + "https://www.w3.org/TR/edit-context/#x4-3-characterboundsupdateevent", + "https://www.w3.org/TR/edit-context/#webidl-1965075523", "https://www.w3.org/TR/edit-context/#idl-def-characterboundsupdateeventinit", "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateeventinit", "https://www.w3.org/TR/edit-context/#idl-def-characterboundsupdateeventinit-rangestart", @@ -341,67 +554,36 @@ "https://www.w3.org/TR/edit-context/#idl-def-characterboundsupdateeventinit-rangeend", "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateeventinit-rangeend", "https://www.w3.org/TR/edit-context/#idl-def-characterboundsupdateevent", - "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-5", - "https://www.w3.org/TR/edit-context/#idl-def-characterboundsupdateevent-constructor-options", + "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateevent", + "https://www.w3.org/TR/edit-context/#idl-def-characterboundsupdateevent-constructor-type-options", "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateevent-constructor", "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateeventinit-1", "https://www.w3.org/TR/edit-context/#idl-def-characterboundsupdateevent-rangestart", "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateevent-rangestart", "https://www.w3.org/TR/edit-context/#idl-def-characterboundsupdateevent-rangeend", "https://www.w3.org/TR/edit-context/#dom-characterboundsupdateevent-rangeend", - "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-rangestart-1", - "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-7", - "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-rangeend-1", - "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-8", - "https://www.w3.org/TR/edit-context/#privacy-and-security-considerations", - "https://www.w3.org/TR/edit-context/#x6-privacy-and-security-considerations", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updateselection-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatetext-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updateselectionbound-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecontrolbound-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecharacterbounds-3", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-rangestart-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-20", + "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-rangeend-2", + "https://www.w3.org/TR/edit-context/#ref-for-dfn-text-input-service-21", "https://www.w3.org/TR/edit-context/#idl-index", "https://www.w3.org/TR/edit-context/#a-idl-index", "https://www.w3.org/TR/edit-context/#actual-idl-index", - "https://www.w3.org/TR/edit-context/#ref-for-dom-element-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-21", - "https://www.w3.org/TR/edit-context/#ref-for-dom-element-editcontext-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-22", + "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-37", "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontextinit-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatetext-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updateselection-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecontrolbound-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updateselectionbound-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-updatecharacterbounds-4", - "https://www.w3.org/TR/edit-context/#ref-for-dom-element-4", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-attachedelements-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-text-7", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionstart-6", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionend-6", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-compositionrangestart-4", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-compositionrangeend-4", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-isincomposition-4", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-controlbound-4", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-selectionbound-4", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-characterboundsrangestart-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-characterbounds-3", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-ontextupdate-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-ontextformatupdate-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-oncharacterboundsupdate-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-oncompositionstart-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-editcontext-oncompositionend-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateevent-5", "https://www.w3.org/TR/edit-context/#ref-for-dom-textupdateeventinit-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinestyle-5", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinethickness-5", "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatinit-2", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-4", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateevent-5", - "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateeventinit-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinestyle-6", + "https://www.w3.org/TR/edit-context/#ref-for-dom-underlinethickness-6", "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-5", - "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateevent-6", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformatupdateeventinit-2", + "https://www.w3.org/TR/edit-context/#ref-for-dom-textformat-6", "https://www.w3.org/TR/edit-context/#ref-for-dom-characterboundsupdateeventinit-2", "https://www.w3.org/TR/edit-context/#contributors", "https://www.w3.org/TR/edit-context/#b-contributors", - "https://www.w3.org/TR/edit-context/#issue-container-generatedID-0", + "https://www.w3.org/TR/edit-context/#issue-container-generatedID-11", "https://www.w3.org/TR/edit-context/#h-ednote", "https://www.w3.org/TR/edit-context/#references", "https://www.w3.org/TR/edit-context/#c-references", @@ -410,9 +592,12 @@ "https://www.w3.org/TR/edit-context/#bib-dom", "https://www.w3.org/TR/edit-context/#bib-geometry-1", "https://www.w3.org/TR/edit-context/#bib-html", - "https://www.w3.org/TR/edit-context/#bib-rfc2119", - "https://www.w3.org/TR/edit-context/#bib-rfc8174", + "https://www.w3.org/TR/edit-context/#bib-infra", + "https://www.w3.org/TR/edit-context/#bib-uievents", "https://www.w3.org/TR/edit-context/#bib-webidl", + "https://www.w3.org/TR/edit-context/#informative-references", + "https://www.w3.org/TR/edit-context/#c-2-informative-references", + "https://www.w3.org/TR/edit-context/#bib-input-events", "https://www.w3.org/TR/edit-context/#back-to-top" ] } \ No newline at end of file diff --git a/tr/ids/mathml4.json b/tr/ids/mathml4.json index 892686b44895..e0fe1d27d85a 100644 --- a/tr/ids/mathml4.json +++ b/tr/ids/mathml4.json @@ -331,35 +331,10 @@ "https://www.w3.org/TR/mathml4/#presm_mpadded_desc", "https://www.w3.org/TR/mathml4/#attributes-12", "https://www.w3.org/TR/mathml4/#presm_mpaddedatt", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-unsigned-number-1", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-1", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-2", + "https://www.w3.org/TR/mathml4/#mpadded-lengths", + "https://www.w3.org/TR/mathml4/#h-note-1", "https://www.w3.org/TR/mathml4/#ref-for-dfn-namedspace-2", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-unsigned-number-2", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-3", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-4", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-namedspace-3", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-unsigned-number-3", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-5", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-6", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-namedspace-4", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-unsigned-number-4", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-7", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-8", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-namedspace-5", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-unsigned-number-5", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-9", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-10", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-namedspace-6", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-11", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-12", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-unsigned-number-6", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-13", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-14", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-15", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-16", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-namedspace-7", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-17", + "https://www.w3.org/TR/mathml4/#ref-for-dfn-pseudo-units-1", "https://www.w3.org/TR/mathml4/#meanings-of-size-and-position-attributes", "https://www.w3.org/TR/mathml4/#presm_size_position", "https://www.w3.org/TR/mathml4/#examples-8", @@ -476,7 +451,7 @@ "https://www.w3.org/TR/mathml4/#alignment-markers-maligngroup-malignmark", "https://www.w3.org/TR/mathml4/#presm_malign", "https://www.w3.org/TR/mathml4/#notcore-malign", - "https://www.w3.org/TR/mathml4/#h-note-1", + "https://www.w3.org/TR/mathml4/#h-note-2", "https://www.w3.org/TR/mathml4/#removal-notice", "https://www.w3.org/TR/mathml4/#presm_malignmark_notice", "https://www.w3.org/TR/mathml4/#description-25", @@ -484,15 +459,15 @@ "https://www.w3.org/TR/mathml4/#specifying-alignment-groups", "https://www.w3.org/TR/mathml4/#presm_specify_align_group", "https://www.w3.org/TR/mathml4/#issue-container-generatedID-0", - "https://www.w3.org/TR/mathml4/#h-note-2", + "https://www.w3.org/TR/mathml4/#h-note-3", "https://www.w3.org/TR/mathml4/#table-cells-that-are-not-divided-into-alignment-groups", "https://www.w3.org/TR/mathml4/#presm_no_align_group", "https://www.w3.org/TR/mathml4/#issue-container-generatedID-1", - "https://www.w3.org/TR/mathml4/#h-note-3", + "https://www.w3.org/TR/mathml4/#h-note-4", "https://www.w3.org/TR/mathml4/#specifying-alignment-points-using-malignmark", "https://www.w3.org/TR/mathml4/#presm_using_malignmark", "https://www.w3.org/TR/mathml4/#issue-container-generatedID-2", - "https://www.w3.org/TR/mathml4/#h-note-4", + "https://www.w3.org/TR/mathml4/#h-note-5", "https://www.w3.org/TR/mathml4/#mathml-representation-of-an-alignment-example", "https://www.w3.org/TR/mathml4/#presm_ex_alignment_1", "https://www.w3.org/TR/mathml4/#issue-container-number-180", @@ -500,7 +475,7 @@ "https://www.w3.org/TR/mathml4/#a-simple-alignment-algorithm", "https://www.w3.org/TR/mathml4/#presm_alignment_algo", "https://www.w3.org/TR/mathml4/#issue-container-generatedID-3", - "https://www.w3.org/TR/mathml4/#h-note-5", + "https://www.w3.org/TR/mathml4/#h-note-6", "https://www.w3.org/TR/mathml4/#elementary-math", "https://www.w3.org/TR/mathml4/#presm_elementary", "https://www.w3.org/TR/mathml4/#stacks-of-characters-mstack", @@ -1605,7 +1580,7 @@ "https://www.w3.org/TR/mathml4/#oper-dict_index", "https://www.w3.org/TR/mathml4/#notes-on-lspace-and-rspace-attributes", "https://www.w3.org/TR/mathml4/#oper-dict_space", - "https://www.w3.org/TR/mathml4/#ref-for-dfn-namedspace-8", + "https://www.w3.org/TR/mathml4/#ref-for-dfn-namedspace-3", "https://www.w3.org/TR/mathml4/#operator-dictionary-entries", "https://www.w3.org/TR/mathml4/#oper-dict_entries-table", "https://www.w3.org/TR/mathml4/#compressed-view", diff --git a/tr/ids/pointerevents3.json b/tr/ids/pointerevents3.json index 27a5e39ad4f9..ba3898ad3bd0 100644 --- a/tr/ids/pointerevents3.json +++ b/tr/ids/pointerevents3.json @@ -40,12 +40,11 @@ "https://www.w3.org/TR/pointerevents3/#example_2", "https://www.w3.org/TR/pointerevents3/#example_3", "https://www.w3.org/TR/pointerevents3/#example_4", - "https://www.w3.org/TR/pointerevents3/#example_5", "https://www.w3.org/TR/pointerevents3/#pointer-events-and-interfaces", "https://www.w3.org/TR/pointerevents3/#x4-pointer-events-and-interfaces", "https://www.w3.org/TR/pointerevents3/#pointerevent-interface", "https://www.w3.org/TR/pointerevents3/#x4-1-pointerevent-interface", - "https://www.w3.org/TR/pointerevents3/#webidl-1641249507", + "https://www.w3.org/TR/pointerevents3/#webidl-2013488848", "https://www.w3.org/TR/pointerevents3/#idl-def-pointereventinit", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointereventinit-1", "https://www.w3.org/TR/pointerevents3/#idl-def-pointereventinit-pointerid", @@ -72,8 +71,6 @@ "https://www.w3.org/TR/pointerevents3/#dom-pointereventinit-pointertype", "https://www.w3.org/TR/pointerevents3/#idl-def-pointereventinit-isprimary", "https://www.w3.org/TR/pointerevents3/#dom-pointereventinit-isprimary", - "https://www.w3.org/TR/pointerevents3/#idl-def-pointereventinit-persistentdeviceid", - "https://www.w3.org/TR/pointerevents3/#dom-pointereventinit-persistentdeviceid", "https://www.w3.org/TR/pointerevents3/#idl-def-pointereventinit-coalescedevents", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-1", "https://www.w3.org/TR/pointerevents3/#dom-pointereventinit-coalescedevents", @@ -109,8 +106,6 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-pointertype-1", "https://www.w3.org/TR/pointerevents3/#idl-def-pointerevent-isprimary", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-isprimary-1", - "https://www.w3.org/TR/pointerevents3/#idl-def-pointerevent-persistentdeviceid", - "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-persistentdeviceid-1", "https://www.w3.org/TR/pointerevents3/#idl-def-pointerevent-getcoalescedevents", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-4", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-getcoalescedevents-1", @@ -149,10 +144,6 @@ "https://www.w3.org/TR/pointerevents3/#h-note-4", "https://www.w3.org/TR/pointerevents3/#dom-pointerevent-isprimary", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-primary-pointer-1", - "https://www.w3.org/TR/pointerevents3/#dom-pointerevent-persistentdeviceid", - "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-pointerid-2", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-5", - "https://www.w3.org/TR/pointerevents3/#h-note-5", "https://www.w3.org/TR/pointerevents3/#dom-pointerevent-getcoalescedevents", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-1", "https://www.w3.org/TR/pointerevents3/#dom-pointerevent-getpredictedevents", @@ -166,8 +157,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointereventinit-4", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointereventinit-predictedevents-1", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-1", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-6", - "https://www.w3.org/TR/pointerevents3/#h-note-6", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-5", + "https://www.w3.org/TR/pointerevents3/#h-note-5", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-7", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-click-auxclick-and-contextmenu-events-1", "https://www.w3.org/TR/pointerevents3/#button-states", @@ -182,8 +173,8 @@ "https://www.w3.org/TR/pointerevents3/#x4-1-1-2-the-button-property", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-3", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-3", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-7", - "https://www.w3.org/TR/pointerevents3/#h-note-7", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-6", + "https://www.w3.org/TR/pointerevents3/#h-note-6", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointermove-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointermove-3", "https://www.w3.org/TR/pointerevents3/#the-buttons-property", @@ -195,16 +186,16 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-compatibility-mouse-events-3", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-primary-pointer-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-compatibility-mouse-events-4", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-8", - "https://www.w3.org/TR/pointerevents3/#h-note-8", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-7", + "https://www.w3.org/TR/pointerevents3/#h-note-7", "https://www.w3.org/TR/pointerevents3/#multiple-primary-pointers", + "https://www.w3.org/TR/pointerevents3/#h-note-8", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-8", "https://www.w3.org/TR/pointerevents3/#h-note-9", "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-9", "https://www.w3.org/TR/pointerevents3/#h-note-10", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-10", - "https://www.w3.org/TR/pointerevents3/#h-note-11", "https://www.w3.org/TR/pointerevents3/#multiple-mouse-inputs", - "https://www.w3.org/TR/pointerevents3/#h-note-12", + "https://www.w3.org/TR/pointerevents3/#h-note-11", "https://www.w3.org/TR/pointerevents3/#firing-events-using-the-pointerevent-interface", "https://www.w3.org/TR/pointerevents3/#x4-1-3-firing-events-using-the-pointerevent-interface", "https://www.w3.org/TR/pointerevents3/#dfn-fire-a-pointer-event", @@ -225,8 +216,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-set-pointer-capture-1", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-implicit-pointer-capture-1", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerover-2", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-11", - "https://www.w3.org/TR/pointerevents3/#h-note-13", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-10", + "https://www.w3.org/TR/pointerevents3/#h-note-12", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointer-capture-target-override-3", "https://www.w3.org/TR/pointerevents3/#attributes-and-default-actions", "https://www.w3.org/TR/pointerevents3/#x4-1-3-1-attributes-and-default-actions", @@ -249,8 +240,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-direct-manipulation-behavior-1", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerenter-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerleave-2", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-12", - "https://www.w3.org/TR/pointerevents3/#h-note-14", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-11", + "https://www.w3.org/TR/pointerevents3/#h-note-13", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerover-4", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerout-3", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerleave-3", @@ -276,18 +267,18 @@ "https://www.w3.org/TR/pointerevents3/#dfn-pointer-capture-target-override", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pending-pointer-capture-target-override-4", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointer-capture-target-override-7", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-13", - "https://www.w3.org/TR/pointerevents3/#h-note-15", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-12", + "https://www.w3.org/TR/pointerevents3/#h-note-14", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-click-auxclick-and-contextmenu-events-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-lostpointercapture-7", "https://www.w3.org/TR/pointerevents3/#suppressing-a-pointer-event-stream", "https://www.w3.org/TR/pointerevents3/#x4-1-3-3-suppressing-a-pointer-event-stream", "https://www.w3.org/TR/pointerevents3/#dfn-suppress-a-pointer-event-stream", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-touch-action-1", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-13", + "https://www.w3.org/TR/pointerevents3/#h-note-15", "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-14", "https://www.w3.org/TR/pointerevents3/#h-note-16", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-15", - "https://www.w3.org/TR/pointerevents3/#h-note-17", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-suppress-a-pointer-event-stream-1", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-suppress-a-pointer-event-stream-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointercancel-2", @@ -296,7 +287,7 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-implicitly-release-the-pointer-capture-2", "https://www.w3.org/TR/pointerevents3/#converting-between-tiltx-tilty-and-altitudeangle-azimuthangle", "https://www.w3.org/TR/pointerevents3/#x4-1-4-converting-between-tiltx-tilty-and-altitudeangle-azimuthangle", - "https://www.w3.org/TR/pointerevents3/#example_6", + "https://www.w3.org/TR/pointerevents3/#example_12", "https://www.w3.org/TR/pointerevents3/#pointer-event-types", "https://www.w3.org/TR/pointerevents3/#x4-2-pointer-event-types", "https://www.w3.org/TR/pointerevents3/#dfn-pointer-event-types", @@ -323,8 +314,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-10", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-hit-test-5", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerover-6", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-16", - "https://www.w3.org/TR/pointerevents3/#h-note-18", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-15", + "https://www.w3.org/TR/pointerevents3/#h-note-17", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerleave-5", "https://www.w3.org/TR/pointerevents3/#the-pointerdown-event", "https://www.w3.org/TR/pointerevents3/#x4-2-3-the-pointerdown-event", @@ -333,8 +324,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-11", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-active-buttons-state-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-digitizer-1", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-17", - "https://www.w3.org/TR/pointerevents3/#h-note-19", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-16", + "https://www.w3.org/TR/pointerevents3/#h-note-18", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-12", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-6", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-chorded-buttons-1", @@ -342,8 +333,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerover-7", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerenter-4", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-13", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-18", - "https://www.w3.org/TR/pointerevents3/#h-note-20", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-17", + "https://www.w3.org/TR/pointerevents3/#h-note-19", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-compatibility-mouse-events-7", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-14", "https://www.w3.org/TR/pointerevents3/#the-pointermove-event", @@ -388,8 +379,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerrawupdate-14", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-compatibility-mouse-events-8", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerrawupdate-15", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-19", - "https://www.w3.org/TR/pointerevents3/#h-note-21", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-18", + "https://www.w3.org/TR/pointerevents3/#h-note-20", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerrawupdate-16", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerrawupdate-17", "https://www.w3.org/TR/pointerevents3/#the-pointerup-event", @@ -405,8 +396,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-9", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-10", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-implicitly-release-the-pointer-capture-3", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-20", - "https://www.w3.org/TR/pointerevents3/#h-note-22", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-19", + "https://www.w3.org/TR/pointerevents3/#h-note-21", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-16", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-11", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-chorded-buttons-3", @@ -439,8 +430,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-15", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-suppress-a-pointer-event-stream-5", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerout-7", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-21", - "https://www.w3.org/TR/pointerevents3/#h-note-23", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-20", + "https://www.w3.org/TR/pointerevents3/#h-note-22", "https://www.w3.org/TR/pointerevents3/#the-gotpointercapture-event", "https://www.w3.org/TR/pointerevents3/#x4-2-10-the-gotpointercapture-event", "https://www.w3.org/TR/pointerevents3/#dfn-gotpointercapture", @@ -469,13 +460,13 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-12", "https://www.w3.org/TR/pointerevents3/#event-dispatch", "https://www.w3.org/TR/pointerevents3/#x4-2-12-3-event-dispatch", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-22", - "https://www.w3.org/TR/pointerevents3/#h-note-24", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-21", + "https://www.w3.org/TR/pointerevents3/#h-note-23", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-16", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-17", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-17", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-23", - "https://www.w3.org/TR/pointerevents3/#h-note-25", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-22", + "https://www.w3.org/TR/pointerevents3/#h-note-24", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-lostpointercapture-10", "https://www.w3.org/TR/pointerevents3/#extensions-to-the-element-interface", "https://www.w3.org/TR/pointerevents3/#x5-extensions-to-the-element-interface", @@ -497,8 +488,8 @@ "https://www.w3.org/TR/pointerevents3/#dom-element-haspointercapture", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointer-capture-1", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pending-pointer-capture-target-override-5", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-24", - "https://www.w3.org/TR/pointerevents3/#h-note-26", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-23", + "https://www.w3.org/TR/pointerevents3/#h-note-25", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-element-setpointercapture-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-gotpointercapture-9", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-implicit-pointer-capture-2", @@ -557,16 +548,16 @@ "https://www.w3.org/TR/pointerevents3/#idl-def-navigator-maxtouchpoints", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-navigator-maxtouchpoints-1", "https://www.w3.org/TR/pointerevents3/#dom-navigator-maxtouchpoints", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-24", + "https://www.w3.org/TR/pointerevents3/#h-note-26", "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-25", "https://www.w3.org/TR/pointerevents3/#h-note-27", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-26", - "https://www.w3.org/TR/pointerevents3/#h-note-28", "https://www.w3.org/TR/pointerevents3/#declaring-direct-manipulation-behavior", "https://www.w3.org/TR/pointerevents3/#x8-declaring-direct-manipulation-behavior", "https://www.w3.org/TR/pointerevents3/#dfn-direct-manipulation-behavior", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-attributes-and-default-actions-2", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-27", - "https://www.w3.org/TR/pointerevents3/#h-note-29", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-26", + "https://www.w3.org/TR/pointerevents3/#h-note-28", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-direct-manipulation-3", "https://www.w3.org/TR/pointerevents3/#the-touch-action-css-property", "https://www.w3.org/TR/pointerevents3/#x8-1-the-touch-action-css-property", @@ -578,10 +569,10 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-19", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointercancel-7", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-21", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-27", + "https://www.w3.org/TR/pointerevents3/#h-note-29", "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-28", "https://www.w3.org/TR/pointerevents3/#h-note-30", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-29", - "https://www.w3.org/TR/pointerevents3/#h-note-31", "https://www.w3.org/TR/pointerevents3/#determining-supported-direct-manipulation-behavior", "https://www.w3.org/TR/pointerevents3/#x8-2-determining-supported-direct-manipulation-behavior", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-direct-manipulation-5", @@ -589,27 +580,27 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-conforming-touch-behavior-1", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-conforming-touch-behavior-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-22", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-30", - "https://www.w3.org/TR/pointerevents3/#h-note-32", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-29", + "https://www.w3.org/TR/pointerevents3/#h-note-31", "https://www.w3.org/TR/pointerevents3/#details-of-touch-action-values", "https://www.w3.org/TR/pointerevents3/#x8-3-details-of-touch-action-values", "https://www.w3.org/TR/pointerevents3/#dfn-touch-action-values", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-30", + "https://www.w3.org/TR/pointerevents3/#h-note-32", "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-31", "https://www.w3.org/TR/pointerevents3/#h-note-33", "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-32", "https://www.w3.org/TR/pointerevents3/#h-note-34", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-direct-manipulation-6", "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-33", "https://www.w3.org/TR/pointerevents3/#h-note-35", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-direct-manipulation-6", "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-34", "https://www.w3.org/TR/pointerevents3/#h-note-36", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-35", - "https://www.w3.org/TR/pointerevents3/#h-note-37", + "https://www.w3.org/TR/pointerevents3/#example_5", + "https://www.w3.org/TR/pointerevents3/#example_6", "https://www.w3.org/TR/pointerevents3/#example_7", "https://www.w3.org/TR/pointerevents3/#example_8", "https://www.w3.org/TR/pointerevents3/#example_9", - "https://www.w3.org/TR/pointerevents3/#example_10", - "https://www.w3.org/TR/pointerevents3/#example_11", "https://www.w3.org/TR/pointerevents3/#pointer-capture", "https://www.w3.org/TR/pointerevents3/#x9-pointer-capture", "https://www.w3.org/TR/pointerevents3/#dfn-pointer-capture", @@ -644,10 +635,10 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-25", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-element-releasepointercapture-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-gotpointercapture-11", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-35", + "https://www.w3.org/TR/pointerevents3/#h-note-37", "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-36", "https://www.w3.org/TR/pointerevents3/#h-note-38", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-37", - "https://www.w3.org/TR/pointerevents3/#h-note-39", "https://www.w3.org/TR/pointerevents3/#implicit-release-of-pointer-capture", "https://www.w3.org/TR/pointerevents3/#x9-5-implicit-release-of-pointer-capture", "https://www.w3.org/TR/pointerevents3/#dfn-implicitly-release-the-pointer-capture", @@ -663,15 +654,15 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointer-capture-target-override-9", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pending-pointer-capture-target-override-8", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pending-pointer-capture-target-override-9", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-38", - "https://www.w3.org/TR/pointerevents3/#h-note-40", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-37", + "https://www.w3.org/TR/pointerevents3/#h-note-39", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-lostpointercapture-13", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-process-pending-pointer-capture-7", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-element-releasepointercapture-3", "https://www.w3.org/TR/pointerevents3/#coalesced-and-predicted-events", "https://www.w3.org/TR/pointerevents3/#x10-coalesced-and-predicted-events", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-39", - "https://www.w3.org/TR/pointerevents3/#h-note-41", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-38", + "https://www.w3.org/TR/pointerevents3/#h-note-40", "https://www.w3.org/TR/pointerevents3/#coalesced-events", "https://www.w3.org/TR/pointerevents3/#x10-1-coalesced-events", "https://www.w3.org/TR/pointerevents3/#dfn-coalesced-events", @@ -689,24 +680,20 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointermove-23", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerrawupdate-21", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-2", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-40", - "https://www.w3.org/TR/pointerevents3/#h-note-42", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-41", - "https://www.w3.org/TR/pointerevents3/#h-note-43", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-3", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-4", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-39", + "https://www.w3.org/TR/pointerevents3/#h-note-41", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-getpredictedevents-2", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-5", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-3", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-2", - "https://www.w3.org/TR/pointerevents3/#example_12", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-42", - "https://www.w3.org/TR/pointerevents3/#h-note-44", + "https://www.w3.org/TR/pointerevents3/#example_10", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-40", + "https://www.w3.org/TR/pointerevents3/#h-note-42", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-26", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointermove-24", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointermove-25", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-27", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-43", - "https://www.w3.org/TR/pointerevents3/#h-note-45", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-41", + "https://www.w3.org/TR/pointerevents3/#h-note-43", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerrawupdate-22", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerrawupdate-23", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerrawupdate-24", @@ -730,44 +717,40 @@ "https://www.w3.org/TR/pointerevents3/#dfn-predicted-events-list", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointermove-30", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-3", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-44", - "https://www.w3.org/TR/pointerevents3/#h-note-46", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-6", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-42", + "https://www.w3.org/TR/pointerevents3/#h-note-44", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-4", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-4", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-45", - "https://www.w3.org/TR/pointerevents3/#h-note-47", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-5", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-6", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-getpredictedevents-4", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-7", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-7", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-46", - "https://www.w3.org/TR/pointerevents3/#h-note-48", - "https://www.w3.org/TR/pointerevents3/#example_13", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-5", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-5", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-43", + "https://www.w3.org/TR/pointerevents3/#h-note-45", + "https://www.w3.org/TR/pointerevents3/#example_11", "https://www.w3.org/TR/pointerevents3/#populating-and-maintaining-the-coalesced-and-predicted-events-lists", "https://www.w3.org/TR/pointerevents3/#x10-3-populating-and-maintaining-the-coalesced-and-predicted-events-lists", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-15", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-8", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-8", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-9", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-9", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-6", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-6", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-7", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-7", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-16", "https://www.w3.org/TR/pointerevents3/#ref-for-dom-pointerevent-17", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-10", - "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-10", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-coalesced-events-list-8", + "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-predicted-events-list-8", "https://www.w3.org/TR/pointerevents3/#compatibility-mapping-with-mouse-events", "https://www.w3.org/TR/pointerevents3/#x11-compatibility-mapping-with-mouse-events", "https://www.w3.org/TR/pointerevents3/#dfn-compatibility-mouse-events", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-47", - "https://www.w3.org/TR/pointerevents3/#h-note-49", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-44", + "https://www.w3.org/TR/pointerevents3/#h-note-46", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-touch-action-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-29", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-23", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-24", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-25", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-compatibility-mouse-events-10", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-48", - "https://www.w3.org/TR/pointerevents3/#h-note-50", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-45", + "https://www.w3.org/TR/pointerevents3/#h-note-47", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-26", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-27", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointercancel-10", @@ -789,8 +772,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-effective-position-of-the-legacy-mouse-pointer-2", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-effective-position-of-the-legacy-mouse-pointer-3", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-effective-position-of-the-legacy-mouse-pointer-4", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-49", - "https://www.w3.org/TR/pointerevents3/#h-note-51", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-46", + "https://www.w3.org/TR/pointerevents3/#h-note-48", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-effective-position-of-the-legacy-mouse-pointer-5", "https://www.w3.org/TR/pointerevents3/#legacy-pointer-transition", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-effective-position-of-the-legacy-mouse-pointer-6", @@ -812,8 +795,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointercancel-12", "https://www.w3.org/TR/pointerevents3/#mapping-for-devices-that-do-not-support-hover", "https://www.w3.org/TR/pointerevents3/#x11-3-mapping-for-devices-that-do-not-support-hover", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-50", - "https://www.w3.org/TR/pointerevents3/#h-note-52", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-47", + "https://www.w3.org/TR/pointerevents3/#h-note-49", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerover-9", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-36", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-37", @@ -829,8 +812,8 @@ "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointercancel-13", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerup-35", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointercancel-14", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-51", - "https://www.w3.org/TR/pointerevents3/#h-note-53", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-48", + "https://www.w3.org/TR/pointerevents3/#h-note-50", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerover-10", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointerdown-40", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-pointermove-37", @@ -853,14 +836,14 @@ "https://www.w3.org/TR/pointerevents3/#dfn-active-document", "https://www.w3.org/TR/pointerevents3/#ref-for-dfn-active-pointer-8", "https://www.w3.org/TR/pointerevents3/#dfn-active-pointer", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-52", - "https://www.w3.org/TR/pointerevents3/#h-note-54", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-49", + "https://www.w3.org/TR/pointerevents3/#h-note-51", "https://www.w3.org/TR/pointerevents3/#dfn-canceled-event", "https://www.w3.org/TR/pointerevents3/#dfn-contact-geometry", "https://www.w3.org/TR/pointerevents3/#dfn-digitizer", "https://www.w3.org/TR/pointerevents3/#dfn-direct-manipulation", - "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-53", - "https://www.w3.org/TR/pointerevents3/#h-note-55", + "https://www.w3.org/TR/pointerevents3/#issue-container-generatedID-50", + "https://www.w3.org/TR/pointerevents3/#h-note-52", "https://www.w3.org/TR/pointerevents3/#dfn-hit-test", "https://www.w3.org/TR/pointerevents3/#dfn-measurable-properties", "https://www.w3.org/TR/pointerevents3/#dfn-pointer", @@ -889,7 +872,7 @@ "https://www.w3.org/TR/pointerevents3/#c-2-informative-references", "https://www.w3.org/TR/pointerevents3/#bib-compat", "https://www.w3.org/TR/pointerevents3/#bib-pointerevents", - "https://www.w3.org/TR/pointerevents3/#bib-pointerevents3", + "https://www.w3.org/TR/pointerevents3/#bib-pointerevents2", "https://www.w3.org/TR/pointerevents3/#bib-wcag22", "https://www.w3.org/TR/pointerevents3/#back-to-top" ] diff --git a/tr/ids/webnn.json b/tr/ids/webnn.json index 8583301e705a..138546540a9f 100644 --- a/tr/ids/webnn.json +++ b/tr/ids/webnn.json @@ -691,13 +691,14 @@ "https://www.w3.org/TR/webnn/#allowed-data-types", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0", - "https://www.w3.org/TR/webnn/#same-as", + "https://www.w3.org/TR/webnn/#same-type-as", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1", "https://www.w3.org/TR/webnn/#any-data-type", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank", "https://www.w3.org/TR/webnn/#allowed-ranks", "https://www.w3.org/TR/webnn/#any-rank", + "https://www.w3.org/TR/webnn/#same-rank-as", "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcastable", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcastable", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks", @@ -1057,6 +1058,11 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-any-data-type", "https://www.w3.org/TR/webnn/#ref-for-any-rank", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-input%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-input%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmax%E2%91%A1", @@ -1082,7 +1088,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-reduction-output-sizes", @@ -1091,7 +1097,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A2", @@ -1156,7 +1162,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-axis", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw", "https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-epsilon", "https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A1", @@ -1182,17 +1188,21 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-mean%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-variance%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-scale%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlbatchnormalizationsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationsupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A1%E2%91%A7", @@ -1237,7 +1247,7 @@ "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-the-range", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4", @@ -1325,6 +1335,9 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-type%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-cast", @@ -1333,9 +1346,9 @@ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-type%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-options-type%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32", @@ -1407,6 +1420,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp-input-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-clamp", @@ -1464,7 +1481,7 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-axis", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A2", @@ -1473,8 +1490,15 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-options-inputs%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-list-item", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-options-inputs%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-options-inputs%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlconcatsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlconcatsupportlimits-inputs", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A3%E2%91%A1", @@ -1495,13 +1519,13 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-list-item", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-is-empty%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A1", @@ -1516,13 +1540,13 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A0", @@ -1627,11 +1651,13 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-conv2d-input-filter-options-filter%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-conv2d-input-filter-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-conv2d-input-filter-options-input%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-conv2d-input-filter-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlconv2dsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlconv2dsupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A4%E2%93%AA", @@ -1678,11 +1704,11 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A3", @@ -1752,7 +1778,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A5", @@ -1857,11 +1883,13 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-convtranspose2d-input-filter-options-filter%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-convtranspose2d-input-filter-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-convtranspose2d-input-filter-options-input%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-convtranspose2d-input-filter-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-convtranspose2d%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-convtranspose2d", @@ -1888,7 +1916,7 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A7", @@ -1896,7 +1924,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%93%AA", @@ -1984,7 +2012,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A3", @@ -2002,8 +2030,8 @@ "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary", "https://www.w3.org/TR/webnn/#ref-for-broadcasting", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcastable%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-add", @@ -2090,9 +2118,15 @@ "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-add-a-b-options-b%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-add-a-b-options-a%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-add-a-b-options-a%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-add-a-b-options-a%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-add-a-b-options-b%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-add", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlbinarysupportlimits%E2%91%A7", @@ -2180,8 +2214,8 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-broadcasting%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcastable%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-equal", @@ -2260,9 +2294,15 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-equal-a-b-options-a%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-equal-a-b-options-b%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-equal-a-b-options-a%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-equal-a-b-options-a%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-equal-a-b-options-a%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-equal-a-b-options-b%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllogicalnotsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mllogicalnotsupportlimits-a", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A5%E2%93%AA", @@ -2478,6 +2518,10 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-abs-input-options-input%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-abs-input-options-input%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-abs-input-options-input%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-abs", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A1%E2%91%A1", @@ -2653,6 +2697,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-elu-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-elu-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-elu%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-elu", @@ -2712,6 +2760,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand-input-newshape-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand-input-newshape-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand-input-newshape-options-newshape%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-expand", @@ -2767,7 +2819,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgatheroptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgatheroptions-axis", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-indices", @@ -2778,9 +2830,9 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgatheroptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gather-input-indices-options-indices%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gather%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp%E2%91%A4", @@ -2796,6 +2848,12 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gather-input-indices-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gather-input-indices-options-input%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gather-input-indices-options-indices%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgathersupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgathersupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A5%E2%91%A6", @@ -2826,7 +2884,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgatheroptions-axis%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A2", @@ -2868,6 +2926,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gelu-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gelu-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gelu%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-gelu", @@ -2955,11 +3017,13 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gemm-a-b-options-b%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gemm-a-b-options-a%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-c%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gemm-a-b-options-a%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gemm-a-b-options-a%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgemmsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgemmsupportlimits-a", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A6%E2%91%A6", @@ -2992,7 +3056,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A5", @@ -3147,20 +3211,25 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-weight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-recurrentweight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-initialhiddenstate%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-returnsequence%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgrusupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgrusupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A8%E2%91%A1", @@ -3208,7 +3277,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A1", @@ -3260,7 +3329,7 @@ "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-activations%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A3", @@ -3269,13 +3338,13 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-tanh%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-returnsequence%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-returnsequence%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-returnsequence%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-returnsequence%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A7", @@ -3381,17 +3450,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-weight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-recurrentweight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgrucellsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgrucellsupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A0%E2%91%A0%E2%91%A2", @@ -3437,7 +3508,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A5", @@ -3478,7 +3549,7 @@ "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-activations%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A5", @@ -3540,6 +3611,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardsigmoid-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardsigmoid-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardsigmoid%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-hardsigmoid", @@ -3596,6 +3671,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardswish-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardswish-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardswish%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-hardswish", @@ -3654,15 +3733,15 @@ "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlinstancenormalizationoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlinstancenormalizationoptions-scale", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlinstancenormalizationoptions-bias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlinstancenormalizationoptions-epsilon", "https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A0%E2%91%A3", @@ -3681,11 +3760,13 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-scale%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-instancenormalization-input-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-instancenormalization-input-options-input%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-instancenormalization-input-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlnormalizationsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlnormalizationsupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A0%E2%91%A2%E2%91%A0", @@ -3722,7 +3803,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A1", @@ -3811,15 +3892,19 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-scale%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization-input-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization-input-options-input%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization-input-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization-input-options-input%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization-input-options-input%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization-input-options-input%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-layernormalization", @@ -3848,12 +3933,12 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-epsilon%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-epsilon%E2%91%A1", @@ -3864,9 +3949,9 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A2", @@ -3875,17 +3960,17 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A3", @@ -3941,6 +4026,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-leakyrelu-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-leakyrelu-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-leakyrelu%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-leakyrelu", @@ -4004,6 +4093,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-linear-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-linear-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-linear%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-linear", @@ -4152,26 +4245,33 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-weight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-recurrentweight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mllstmsupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A0%E2%91%A3%E2%91%A7", @@ -4231,7 +4331,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A1", @@ -4299,7 +4399,7 @@ "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-activations%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A7", @@ -4309,7 +4409,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-tanh%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A5", @@ -4317,7 +4417,7 @@ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A1", @@ -4442,26 +4542,30 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-weight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-recurrentweight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-hiddenstate%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-cellstate%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-peepholeweight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmcellsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mllstmcellsupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A0%E2%91%A6%E2%91%A4", @@ -4515,7 +4619,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%93%AA", @@ -4568,7 +4672,7 @@ "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-activations%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%93%AA", @@ -4628,7 +4732,7 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-broadcasting%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcastable%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#constraints-matmul", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A5%E2%91%A7", @@ -4637,8 +4741,14 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul-a-b-options-b%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul-a-b-options-a%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul-a-b-options-a%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul-a-b-options-a%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul-a-b-options-b%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-matmul", @@ -4649,10 +4759,10 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A7", @@ -4731,11 +4841,11 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-beginningpadding", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-endingpadding", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpadoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%93%AA", @@ -4746,6 +4856,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-pad", @@ -4755,7 +4869,7 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A1", @@ -4766,17 +4880,17 @@ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-padding-output-sizes", - "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A0", @@ -4872,6 +4986,8 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-averagepool2d-input-options-input%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-averagepool2d-input-options-input%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-averagepool2d", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A4%E2%91%A3", @@ -4918,12 +5034,12 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-windowdimensions%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-windowdimensions%E2%91%A1", @@ -4934,7 +5050,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-padding%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-padding%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A0", @@ -4942,7 +5058,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A3", @@ -4950,7 +5066,7 @@ "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A4", @@ -4961,7 +5077,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A3", @@ -4978,7 +5094,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A2", @@ -5011,8 +5127,8 @@ "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu", "https://www.w3.org/TR/webnn/#ref-for-broadcasting%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcastable%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-prelu", @@ -5051,9 +5167,15 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-prelu-input-slope-options-slope%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-prelu-input-slope-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-prelu-input-slope-options-input%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-prelu-input-slope-options-input%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-prelu-input-slope-options-slope%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlprelusupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlprelusupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A0%E2%91%A8%E2%91%A5", @@ -5191,7 +5313,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlopsupportlimits-reducesumsquare", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlreduceoptions-axes", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlreduceoptions-keepdimensions", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1-input-options-input", @@ -5204,6 +5326,12 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducel1-input-options-input%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducel1-input-options-input%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducel1-input-options-input%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-axes%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-reducel1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsingleinputsupportlimits%E2%91%A5%E2%91%A6", @@ -5240,7 +5368,7 @@ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-boolean", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A5", @@ -5271,9 +5399,9 @@ "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-reduction-output-sizes%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-axes%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-axes%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperanddescriptor%E2%91%A0%E2%91%A6", @@ -5348,9 +5476,9 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A5", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu-method", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A8", @@ -5377,6 +5505,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-relu-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-relu-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-relu%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-relu", @@ -5452,6 +5584,8 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-resample2d-input-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-resample2d-input-options-input%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-resample2d%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-resample2d", @@ -5461,7 +5595,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-scales%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A2", @@ -5469,7 +5603,7 @@ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-resample-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlresample2doptions%E2%91%A2", @@ -5479,7 +5613,7 @@ "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes%E2%91%A2", @@ -5504,7 +5638,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A3", @@ -5550,6 +5684,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape-input-newshape-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape-input-newshape-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape-input-newshape-options-newshape%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-reshape", @@ -5566,9 +5704,9 @@ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A7", @@ -5607,6 +5745,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sigmoid-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sigmoid-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sigmoid%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-sigmoid", @@ -5655,11 +5797,11 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-starts", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-sizes", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperatoroptions%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A8", @@ -5670,6 +5812,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice-input-starts-sizes-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice-input-starts-sizes-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice-input-starts-sizes-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-slice", @@ -5685,17 +5831,17 @@ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#issue-b8ab142b", @@ -5739,6 +5885,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax-input-axis-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax-input-axis-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-softmax", @@ -5758,7 +5908,7 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A3", @@ -5790,6 +5940,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softplus-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softplus-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softplus%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-softplus", @@ -5838,6 +5992,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softsign-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softsign-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softsign%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-softsign", @@ -5904,15 +6062,15 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlsplitoptions-axis", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#constraints-split", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-allowed-data-types%E2%91%A7%E2%91%A8", @@ -5920,6 +6078,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split-input-splits-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split-input-splits-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split-input-splits-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitsupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlsplitsupportlimits-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A1%E2%93%AA%E2%91%A3", @@ -5943,7 +6105,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlsplitoptions-axis%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%93%AA", @@ -5958,7 +6120,7 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A3", @@ -5995,6 +6157,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-tanh-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-tanh-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-tanh%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-tanh", @@ -6038,8 +6204,8 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlopsupportlimits-transpose", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltransposeoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mltransposeoptions-permutation", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose-input-options-options", @@ -6052,6 +6218,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-transpose-input-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-transpose-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-transpose-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-transpose%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-transpose", @@ -6073,12 +6243,12 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A1", @@ -6122,6 +6292,10 @@ "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-triangular-input-options-input%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-triangular-input-options-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-same-rank-as%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-triangular-input-options-input%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlopsupportlimits%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-triangular%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlopsupportlimits-triangular", @@ -6137,7 +6311,7 @@ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-allowed-ranks%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A6", @@ -6150,8 +6324,8 @@ "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where", "https://www.w3.org/TR/webnn/#ref-for-broadcasting%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcastable%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where", @@ -6195,9 +6369,17 @@ "https://www.w3.org/TR/webnn/#ref-for-any-data-type%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-falsevalue%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-same-as%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-truevalue%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-any-rank%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-same-type-as%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-truevalue%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-condition%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-truevalue%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where-condition-truevalue-falsevalue-options-falsevalue%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlwheresupportlimits%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlwheresupportlimits-condition", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsupportlimits%E2%91%A1%E2%91%A0%E2%91%A1", @@ -6259,10 +6441,10 @@ "https://www.w3.org/TR/webnn/#unidirectionally-broadcasting", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-prepend", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A4", @@ -6273,13 +6455,13 @@ "https://www.w3.org/TR/webnn/#bidirectionally-broadcasting", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-prepend%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-prepend%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A5", diff --git a/tr/index.json b/tr/index.json index eee0b0009620..6d8492eb43f4 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-11-19T01:34:54.492Z", + "date": "2024-11-20T01:35:22.249Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -715,7 +715,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "19 November 2024", + "date": "20 November 2024", "links": "links/av1-spec.json" }, { @@ -9496,10 +9496,11 @@ ], "crawled": "https://www.w3.org/TR/edit-context/", "crawlCacheInfo": { - "lastModified": "Mon, 20 Dec 2021 14:38:15 GMT" + "lastModified": "Tue, 19 Nov 2024 23:41:05 GMT" }, "generator": "respec", - "date": "21 December 2021", + "date": "19 November 2024", + "revision": "c0433694bcefea2d5c02ba4c407c378dcfd713bf", "algorithms": "algorithms/edit-context.json", "links": "links/edit-context.json", "refs": "refs/edit-context.json", @@ -12328,11 +12329,11 @@ ], "crawled": "https://www.w3.org/TR/mathml4/", "crawlCacheInfo": { - "lastModified": "Fri, 15 Nov 2024 16:35:30 GMT" + "lastModified": "Tue, 19 Nov 2024 09:18:05 GMT" }, "generator": "respec", - "date": "15 November 2024", - "revision": "b6a570053ad459fdee4f974d29a9c3a5250ac866", + "date": "19 November 2024", + "revision": "5395b724ddb7306a6556048e64fdcba8728d858d", "algorithms": "algorithms/mathml4.json", "links": "links/mathml4.json", "refs": "refs/mathml4.json", @@ -14799,11 +14800,11 @@ ], "crawled": "https://www.w3.org/TR/pointerevents3/", "crawlCacheInfo": { - "lastModified": "Wed, 06 Nov 2024 18:11:16 GMT" + "lastModified": "Tue, 19 Nov 2024 19:01:34 GMT" }, "generator": "respec", - "date": "06 November 2024", - "revision": "f35ece254dadada5f6766bcd943d8482858374b3", + "date": "19 November 2024", + "revision": "6800523390644fe2bb7ed2c14174a5d74da658f1", "algorithms": "algorithms/pointerevents3.json", "links": "links/pointerevents3.json", "refs": "refs/pointerevents3.json", @@ -20569,11 +20570,11 @@ ], "crawled": "https://www.w3.org/TR/webnn/", "crawlCacheInfo": { - "lastModified": "Fri, 15 Nov 2024 21:32:12 GMT" + "lastModified": "Tue, 19 Nov 2024 23:06:48 GMT" }, "generator": "bikeshed", - "date": "15 November 2024", - "revision": "c237cf15afa30f43c5270136db970c291f6b11d2", + "date": "19 November 2024", + "revision": "d4b4e9df82a4420a3ad2a06aa91487615b3a4961", "algorithms": "algorithms/webnn.json", "links": "links/webnn.json", "refs": "refs/webnn.json", @@ -21723,11 +21724,11 @@ ], "crawled": "https://www.w3.org/TR/WGSL/", "crawlCacheInfo": { - "lastModified": "Fri, 08 Nov 2024 21:54:32 GMT" + "lastModified": "Tue, 19 Nov 2024 21:10:21 GMT" }, "generator": "bikeshed", - "date": "8 November 2024", - "revision": "5419dbf3356d6a427a925f45857be5ac38e31d35", + "date": "19 November 2024", + "revision": "a851e93678a32b15aa4da916e71a82896be600cf", "algorithms": "algorithms/WGSL.json", "links": "links/WGSL.json", "refs": "refs/WGSL.json", diff --git a/tr/links/edit-context.json b/tr/links/edit-context.json index 2832c594274b..f7da76d3008d 100644 --- a/tr/links/edit-context.json +++ b/tr/links/edit-context.json @@ -5,22 +5,46 @@ }, "links": { "rawlinks": { - "https://datatracker.ietf.org/doc/html/bcp14": {}, "https://dom.spec.whatwg.org/": { "anchors": [ - "eventtarget", - "event" + "concept-tree-parent", + "concept-node-document", + "concept-tree-root", + "concept-documentfragment-host" + ] + }, + "https://drafts.csswg.org/css-values/": { + "anchors": [ + "px" + ] + }, + "https://drafts.csswg.org/cssom-view/": { + "anchors": [ + "layout-viewport" + ] + }, + "https://html.spec.whatwg.org/": { + "anchors": [ + "focused-area-of-the-document" ] }, "https://html.spec.whatwg.org/multipage/": {}, - "https://html.spec.whatwg.org/multipage/webappapis.html": { + "https://html.spec.whatwg.org/multipage/document-sequences.html": { "anchors": [ - "eventhandler" + "fully-active" ] }, - "https://html.spec.whatwg.org/multipage/window-object.html": { + "https://html.spec.whatwg.org/multipage/interaction.html": { "anchors": [ - "window" + "focused", + "dom-anchor", + "currently-focused-area-of-a-top-level-traversable" + ] + }, + "https://infra.spec.whatwg.org/": {}, + "https://w3c.github.io/editing/docs/execCommand/": { + "anchors": [ + "editable" ] }, "https://w3c.github.io/uievents/": { @@ -29,61 +53,104 @@ "event-type-compositionend" ] }, - "https://w3c.github.io/webappsec-secure-contexts/": {}, "https://webidl.spec.whatwg.org/": { "anchors": [ - "idl-DOMString", - "idl-unsigned-long", "Exposed", - "idl-undefined", - "idl-sequence", - "idl-boolean" + "idl-sequence" ] }, - "https://www.rfc-editor.org/rfc/rfc2119": {}, - "https://www.rfc-editor.org/rfc/rfc8174": {}, - "https://www.w3.org/2021/Process-20211102/": { + "https://www.w3.org/TR/": {}, + "https://www.w3.org/TR/geometry-1/": {}, + "https://www.w3.org/TR/input-events-1/": {}, + "https://www.w3.org/TR/uievents/": { "anchors": [ - "recs-and-notes" + "default-action", + "event-type-beforeinput", + "event-type-input", + "dom-inputevent-inputtype" ] }, - "https://www.w3.org/Consortium/Patent-Policy/": { + "https://www.w3.org/groups/wg/webediting": {}, + "https://www.w3.org/groups/wg/webediting/ipr": {}, + "https://www.w3.org/policies/patent-policy/": { "anchors": [ "def-essential", "sec-Disclosure" ] }, - "https://www.w3.org/TR/": {}, - "https://www.w3.org/TR/css-color-4/": { + "https://www.w3.org/policies/process/20231103/": { "anchors": [ - "serializing-sRGB-values" + "recs-and-notes" + ] + } + }, + "autolinks": { + "https://dom.spec.whatwg.org/": { + "anchors": [ + "concept-document", + "document", + "concept-element-local-name", + "valid-shadow-host-name", + "concept-event-fire", + "concept-shadow-including-root", + "concept-shadow-root", + "eventtarget", + "dictdef-eventinit", + "event" ] }, - "https://www.w3.org/TR/geometry-1/": { + "https://html.spec.whatwg.org/multipage/document-sequences.html": { "anchors": [ - "domrect" + "node-navigable", + "top-level-traversable" ] }, - "https://www.w3.org/groups/wg/webediting": {}, - "https://www.w3.org/groups/wg/webediting/ipr": {} - }, - "autolinks": { - "https://dom.spec.whatwg.org/": { + "https://html.spec.whatwg.org/multipage/dom.html": { "anchors": [ - "concept-event-fire" + "htmlelement" + ] + }, + "https://html.spec.whatwg.org/multipage/interaction.html": { + "anchors": [ + "designMode", + "editing-host", + "attr-contenteditable" + ] + }, + "https://html.spec.whatwg.org/multipage/webappapis.html": { + "anchors": [ + "update-the-rendering", + "queue-a-global-task", + "dom-manipulation-task-source", + "concept-relevant-global", + "eventhandler" + ] + }, + "https://infra.spec.whatwg.org/": { + "anchors": [ + "assert" ] }, "https://webidl.spec.whatwg.org/": { "anchors": [ "idl-DOMString", + "this", + "dfn-throw", + "notsupportederror", + "idl-DOMException", "idl-unsigned-long", - "idl-boolean" + "idl-undefined" ] }, "https://www.w3.org/TR/geometry-1/": { "anchors": [ "domrect" ] + }, + "https://www.w3.org/TR/uievents/": { + "anchors": [ + "compositionevent" + ] } } } diff --git a/tr/links/pointerevents3.json b/tr/links/pointerevents3.json index bbfd3433db65..dee41a008580 100644 --- a/tr/links/pointerevents3.json +++ b/tr/links/pointerevents3.json @@ -44,7 +44,48 @@ "https://developer.mozilla.org/en-US/docs/Web/CSS/touch-action": {}, "https://dom.spec.whatwg.org/": {}, "https://github.com/w3c/pointerevents/commits": {}, - "https://github.com/w3c/pointerevents/pull/495": {}, + "https://github.com/w3c/pointerevents/pull/294": {}, + "https://github.com/w3c/pointerevents/pull/300": {}, + "https://github.com/w3c/pointerevents/pull/306": {}, + "https://github.com/w3c/pointerevents/pull/307": {}, + "https://github.com/w3c/pointerevents/pull/316": {}, + "https://github.com/w3c/pointerevents/pull/317": {}, + "https://github.com/w3c/pointerevents/pull/318": {}, + "https://github.com/w3c/pointerevents/pull/323": {}, + "https://github.com/w3c/pointerevents/pull/324": {}, + "https://github.com/w3c/pointerevents/pull/334": {}, + "https://github.com/w3c/pointerevents/pull/345": {}, + "https://github.com/w3c/pointerevents/pull/347": {}, + "https://github.com/w3c/pointerevents/pull/348": {}, + "https://github.com/w3c/pointerevents/pull/349": {}, + "https://github.com/w3c/pointerevents/pull/350": {}, + "https://github.com/w3c/pointerevents/pull/351": {}, + "https://github.com/w3c/pointerevents/pull/364": {}, + "https://github.com/w3c/pointerevents/pull/376": {}, + "https://github.com/w3c/pointerevents/pull/379": {}, + "https://github.com/w3c/pointerevents/pull/382": {}, + "https://github.com/w3c/pointerevents/pull/383": {}, + "https://github.com/w3c/pointerevents/pull/386": {}, + "https://github.com/w3c/pointerevents/pull/388": {}, + "https://github.com/w3c/pointerevents/pull/390": {}, + "https://github.com/w3c/pointerevents/pull/391": {}, + "https://github.com/w3c/pointerevents/pull/393": {}, + "https://github.com/w3c/pointerevents/pull/398": {}, + "https://github.com/w3c/pointerevents/pull/403": {}, + "https://github.com/w3c/pointerevents/pull/404": {}, + "https://github.com/w3c/pointerevents/pull/410": {}, + "https://github.com/w3c/pointerevents/pull/411": {}, + "https://github.com/w3c/pointerevents/pull/412": {}, + "https://github.com/w3c/pointerevents/pull/413": {}, + "https://github.com/w3c/pointerevents/pull/414": {}, + "https://github.com/w3c/pointerevents/pull/418": {}, + "https://github.com/w3c/pointerevents/pull/419": {}, + "https://github.com/w3c/pointerevents/pull/437": {}, + "https://github.com/w3c/pointerevents/pull/464": {}, + "https://github.com/w3c/pointerevents/pull/490": {}, + "https://github.com/w3c/pointerevents/pull/491": {}, + "https://github.com/w3c/pointerevents/pull/494": {}, + "https://github.com/w3c/pointerevents/pull/527": {}, "https://html.spec.whatwg.org/multipage/": { "anchors": [ "drag-and-drop-processing-model" @@ -77,7 +118,7 @@ "https://www.w3.org/TR/css-overflow-3/": {}, "https://www.w3.org/TR/cssom-view-1/": {}, "https://www.w3.org/TR/pointerevents/": {}, - "https://www.w3.org/TR/pointerevents3/": {}, + "https://www.w3.org/TR/pointerevents2/": {}, "https://www.w3.org/TR/pointerlock/": {}, "https://www.w3.org/TR/touch-events/": { "anchors": [ @@ -117,8 +158,8 @@ "connected", "dom-eventinit-composed", "dom-event-cancelable", - "dom-event-istrusted", "dom-event-timestamp", + "dom-event-istrusted", "dom-event-bubbles", "dom-event-target", "callbackdef-eventlistener", diff --git a/tr/refs/edit-context.json b/tr/refs/edit-context.json index ff09e165fc6d..659e9a7f9c23 100644 --- a/tr/refs/edit-context.json +++ b/tr/refs/edit-context.json @@ -14,22 +14,27 @@ "url": "https://www.w3.org/TR/geometry-1/" }, { - "name": "HTML", + "name": "html", "url": "https://html.spec.whatwg.org/multipage/" }, { - "name": "RFC2119", - "url": "https://www.rfc-editor.org/rfc/rfc2119" + "name": "infra", + "url": "https://infra.spec.whatwg.org/" }, { - "name": "RFC8174", - "url": "https://www.rfc-editor.org/rfc/rfc8174" + "name": "uievents", + "url": "https://www.w3.org/TR/uievents/" }, { - "name": "WEBIDL", + "name": "webidl", "url": "https://webidl.spec.whatwg.org/" } ], - "informative": [] + "informative": [ + { + "name": "input-events", + "url": "https://www.w3.org/TR/input-events-1/" + } + ] } } \ No newline at end of file diff --git a/tr/refs/pointerevents3.json b/tr/refs/pointerevents3.json index df291ca59927..8e057cb79950 100644 --- a/tr/refs/pointerevents3.json +++ b/tr/refs/pointerevents3.json @@ -64,8 +64,8 @@ "url": "https://www.w3.org/TR/pointerevents/" }, { - "name": "PointerEvents3", - "url": "https://www.w3.org/TR/pointerevents3/" + "name": "PointerEvents2", + "url": "https://www.w3.org/TR/pointerevents2/" }, { "name": "WCAG22",