From d857f8732ad774859b38142bc347e54a1957e87c Mon Sep 17 00:00:00 2001 From: reffy-bot <> Date: Wed, 13 Mar 2024 01:23:25 +0000 Subject: [PATCH] Update of TR report from new reffy run Using reffy commit 14.8.2. --- tr/css/css-values.json | 15 +- tr/dfns/css-values-4.json | 89 ++ tr/dfns/device-posture.json | 4 +- tr/dfns/webnn.json | 189 ++- tr/headings/device-posture.json | 18 +- tr/ids/css-values-4.json | 383 +++-- tr/ids/device-posture.json | 19 +- tr/ids/webcodecs.json | 8 + tr/ids/webnn.json | 2457 +++++++++++++++---------------- tr/index.json | 112 +- tr/links/css-values-4.json | 35 +- tr/links/device-posture.json | 4 +- tr/links/webcodecs.json | 1 + tr/links/webnn.json | 3 +- tr/refs/css-values-4.json | 4 + 15 files changed, 1782 insertions(+), 1559 deletions(-) diff --git a/tr/css/css-values.json b/tr/css/css-values.json index 675a68d6cff5..d6844f95f6fd 100644 --- a/tr/css/css-values.json +++ b/tr/css/css-values.json @@ -538,7 +538,7 @@ }, { "name": "", - "prose": "The value specifies the position of a object area (e.g. background image) inside a positioning area (e.g. background positioning area). It is interpreted as specified for background-position. [CSS3-BACKGROUND]", + "prose": "The value specifies the position of a object area (e.g. background image) inside a positioning area (e.g. background positioning area). It is computed and interpreted as specified for background-position. [CSS3-BACKGROUND]", "href": "https://www.w3.org/TR/css-values-4/#typedef-position", "type": "type", "value": "[ [ left | center | right | top | bottom | ] | [ left | center | right ] && [ top | center | bottom ] | [ left | center | right | ] [ top | center | bottom | ] | [ [ left | right ] ] && [ [ top | bottom ] ] ]" @@ -606,11 +606,20 @@ "prose": "The clamp() function takes three calculations—​a minimum value, a central value, and a maximum value—​and represents its central calculation, clamped according to its min and max calculations, favoring the min calculation if it conflicts with the max. (That is, given clamp(MIN, VAL, MAX), it represents exactly the same value as max(MIN, min(VAL, MAX))).", "href": "https://www.w3.org/TR/css-values-4/#funcdef-clamp", "type": "function", - "value": "clamp( #{3} )" + "value": "clamp( [ | none ], , [ | none ] )", + "values": [ + { + "name": "none", + "prose": "Either the min or max calculations (or even both) can instead be the keyword none, which indicates the value is not clamped from that side. (That is, clamp(MIN, VAL, none) is equivalent to max(MIN, VAL), clamp(none, VAL, MAX) is equivalent to min(VAL, MAX), and clamp(none, VAL, none) is equivalent to just calc(VAL).)", + "href": "https://www.w3.org/TR/css-values-4/#valdef-clamp-none", + "type": "value", + "value": "none" + } + ] }, { "name": "round()", - "value": "round( ?, , )", + "value": "round( ?, , ? )", "href": "https://www.w3.org/TR/css-values-4/#funcdef-round", "type": "function" }, diff --git a/tr/dfns/css-values-4.json b/tr/dfns/css-values-4.json index a54013540092..868c51a9a591 100644 --- a/tr/dfns/css-values-4.json +++ b/tr/dfns/css-values-4.json @@ -2909,6 +2909,27 @@ }, "definedIn": "prose" }, + { + "id": "valdef-clamp-none", + "href": "https://www.w3.org/TR/css-values-4/#valdef-clamp-none", + "linkingText": [ + "none" + ], + "localLinkingText": [], + "type": "value", + "for": [ + "clamp()" + ], + "access": "public", + "informative": false, + "heading": { + "id": "comp-func", + "href": "https://www.w3.org/TR/css-values-4/#comp-func", + "title": "Comparison Functions: min(), max(), and clamp()", + "number": "10.2" + }, + "definedIn": "prose" + }, { "id": "funcdef-round", "href": "https://www.w3.org/TR/css-values-4/#funcdef-round", @@ -3554,6 +3575,74 @@ }, "definedIn": "prose" }, + { + "id": "css-contain-a-percentage", + "href": "https://www.w3.org/TR/css-values-4/#css-contain-a-percentage", + "linkingText": [ + "contain a percentage", + "percentage-containing" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "CSS" + ], + "access": "public", + "informative": false, + "heading": { + "id": "calc-type-checking", + "href": "https://www.w3.org/TR/css-values-4/#calc-type-checking", + "title": "Type Checking", + "number": "10.9" + }, + "definedIn": "prose" + }, + { + "id": "css-consistent-type", + "href": "https://www.w3.org/TR/css-values-4/#css-consistent-type", + "linkingText": [ + "consistent type" + ], + "localLinkingText": [ + "consistent" + ], + "type": "dfn", + "for": [ + "CSS" + ], + "access": "public", + "informative": false, + "heading": { + "id": "calc-type-checking", + "href": "https://www.w3.org/TR/css-values-4/#calc-type-checking", + "title": "Type Checking", + "number": "10.9" + }, + "definedIn": "prose" + }, + { + "id": "css-make-a-type-consistent", + "href": "https://www.w3.org/TR/css-values-4/#css-make-a-type-consistent", + "linkingText": [ + "make a type consistent", + "make consistent", + "made consistent" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "CSS" + ], + "access": "public", + "informative": false, + "heading": { + "id": "calc-type-checking", + "href": "https://www.w3.org/TR/css-values-4/#calc-type-checking", + "title": "Type Checking", + "number": "10.9" + }, + "definedIn": "prose" + }, { "id": "top-level-calculation", "href": "https://www.w3.org/TR/css-values-4/#top-level-calculation", diff --git a/tr/dfns/device-posture.json b/tr/dfns/device-posture.json index 1764888e3c58..764d59346aad 100644 --- a/tr/dfns/device-posture.json +++ b/tr/dfns/device-posture.json @@ -365,7 +365,7 @@ "heading": { "id": "dependencies", "href": "https://www.w3.org/TR/device-posture/#dependencies", - "title": "11. Dependencies" + "title": "12. Dependencies" }, "definedIn": "prose" }, @@ -383,7 +383,7 @@ "heading": { "id": "conformance", "href": "https://www.w3.org/TR/device-posture/#conformance", - "title": "12. Conformance" + "title": "13. Conformance" }, "definedIn": "prose" } diff --git a/tr/dfns/webnn.json b/tr/dfns/webnn.json index d0c35331fd66..ae94dc8f98fe 100644 --- a/tr/dfns/webnn.json +++ b/tr/dfns/webnn.json @@ -5,10 +5,10 @@ }, "dfns": [ { - "id": "platform-operator", - "href": "https://www.w3.org/TR/webnn/#platform-operator", + "id": "computational-graph", + "href": "https://www.w3.org/TR/webnn/#computational-graph", "linkingText": [ - "platform operator" + "computational graph" ], "localLinkingText": [], "type": "dfn", @@ -24,10 +24,167 @@ "definedIn": "prose" }, { - "id": "platform-operand", - "href": "https://www.w3.org/TR/webnn/#platform-operand", + "id": "mlgraphbuilder-graph", + "href": "https://www.w3.org/TR/webnn/#mlgraphbuilder-graph", "linkingText": [ - "platform operand" + "graph" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "MLGraphBuilder" + ], + "access": "private", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/webnn/#title", + "title": "Web Neural Network API" + }, + "definedIn": "prose" + }, + { + "id": "operators", + "href": "https://www.w3.org/TR/webnn/#operators", + "linkingText": [ + "operators" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/webnn/#title", + "title": "Web Neural Network API" + }, + "definedIn": "prose" + }, + { + "id": "computational-graph-input", + "href": "https://www.w3.org/TR/webnn/#computational-graph-input", + "linkingText": [ + "input" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "computational graph" + ], + "access": "private", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/webnn/#title", + "title": "Web Neural Network API" + }, + "definedIn": "prose" + }, + { + "id": "computational-graph-constants", + "href": "https://www.w3.org/TR/webnn/#computational-graph-constants", + "linkingText": [ + "constants" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "computational graph" + ], + "access": "private", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/webnn/#title", + "title": "Web Neural Network API" + }, + "definedIn": "prose" + }, + { + "id": "operator-input", + "href": "https://www.w3.org/TR/webnn/#operator-input", + "linkingText": [ + "input" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "operator" + ], + "access": "private", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/webnn/#title", + "title": "Web Neural Network API" + }, + "definedIn": "prose" + }, + { + "id": "operator-output", + "href": "https://www.w3.org/TR/webnn/#operator-output", + "linkingText": [ + "output" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "operator" + ], + "access": "private", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/webnn/#title", + "title": "Web Neural Network API" + }, + "definedIn": "prose" + }, + { + "id": "operator-activation", + "href": "https://www.w3.org/TR/webnn/#operator-activation", + "linkingText": [ + "activation", + "activation function" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "operator" + ], + "access": "private", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/webnn/#title", + "title": "Web Neural Network API" + }, + "definedIn": "prose" + }, + { + "id": "platform-operators", + "href": "https://www.w3.org/TR/webnn/#platform-operators", + "linkingText": [ + "platform operators" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/webnn/#title", + "title": "Web Neural Network API" + }, + "definedIn": "prose" + }, + { + "id": "platform-operands", + "href": "https://www.w3.org/TR/webnn/#platform-operands", + "linkingText": [ + "platform operands" ], "localLinkingText": [], "type": "dfn", @@ -1373,26 +1530,6 @@ }, "definedIn": "dt" }, - { - "id": "dom-mloperand-operand-slot", - "href": "https://www.w3.org/TR/webnn/#dom-mloperand-operand-slot", - "linkingText": [ - "[[operand]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "MLOperand" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://www.w3.org/TR/webnn/#title", - "title": "Web Neural Network API" - }, - "definedIn": "dt" - }, { "id": "dom-mloperand-operator-slot", "href": "https://www.w3.org/TR/webnn/#dom-mloperand-operator-slot", diff --git a/tr/headings/device-posture.json b/tr/headings/device-posture.json index 1fb01fe1cb14..89af80068174 100644 --- a/tr/headings/device-posture.json +++ b/tr/headings/device-posture.json @@ -163,44 +163,50 @@ "title": "Visibility State", "number": "9.2.3" }, + { + "id": "accessibility-considerations", + "href": "https://www.w3.org/TR/device-posture/#accessibility-considerations", + "level": 2, + "title": "10. Accessibility considerations" + }, { "id": "examples", "href": "https://www.w3.org/TR/device-posture/#examples", "level": 2, - "title": "10. Examples" + "title": "11. Examples" }, { "id": "example-1-posture-data", "href": "https://www.w3.org/TR/device-posture/#example-1-posture-data", "level": 3, "title": "Example 1: Posture data", - "number": "10.1" + "number": "11.1" }, { "id": "example-2-device-posture", "href": "https://www.w3.org/TR/device-posture/#example-2-device-posture", "level": 3, "title": "Example 2: device-posture", - "number": "10.2" + "number": "11.2" }, { "id": "example-3-feature-detection-of-device-posture-media-feature", "href": "https://www.w3.org/TR/device-posture/#example-3-feature-detection-of-device-posture-media-feature", "level": 3, "title": "Example 3: Feature detection of device-posture media feature", - "number": "10.3" + "number": "11.3" }, { "id": "dependencies", "href": "https://www.w3.org/TR/device-posture/#dependencies", "level": 2, - "title": "11. Dependencies" + "title": "12. Dependencies" }, { "id": "conformance", "href": "https://www.w3.org/TR/device-posture/#conformance", "level": 2, - "title": "12. Conformance" + "title": "13. Conformance" }, { "id": "idl-index", diff --git a/tr/ids/css-values-4.json b/tr/ids/css-values-4.json index 1f10e17dfb9a..4700736d8c26 100644 --- a/tr/ids/css-values-4.json +++ b/tr/ids/css-values-4.json @@ -707,10 +707,22 @@ "https://www.w3.org/TR/css-values-4/#ref-for-large-viewport-size", "https://www.w3.org/TR/css-values-4/#ref-for-small-viewport-size", "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-propdef-overflow", + "https://www.w3.org/TR/css-values-4/#ref-for-propdef-scrollbar-gutter", + "https://www.w3.org/TR/css-values-4/#ref-for-root-element", + "https://www.w3.org/TR/css-values-4/#ref-for-propdef-overflow%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-propdef-overflow%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-initial-containing-block%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#issue-56221f3d", + "https://www.w3.org/TR/css-values-4/#ref-for-media-query%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-initial-containing-block%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-propdef-overflow%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-the-body-element-2", + "https://www.w3.org/TR/css-values-4/#ref-for-root-element%E2%91%A0", "https://www.w3.org/TR/css-values-4/#viewport-relative-units", - "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A4", "https://www.w3.org/TR/css-values-4/#vw", "https://www.w3.org/TR/css-values-4/#svw", "https://www.w3.org/TR/css-values-4/#lvw", @@ -754,10 +766,10 @@ "https://www.w3.org/TR/css-values-4/#svmax", "https://www.w3.org/TR/css-values-4/#lvmax", "https://www.w3.org/TR/css-values-4/#dvmax", - "https://www.w3.org/TR/css-values-4/#ref-for-initial-containing-block%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-initial-containing-block%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-continuous-media%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-large-viewport-percentage-units%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-media-query%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-media-query%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-writing-mode%E2%91%A0", "https://www.w3.org/TR/css-values-4/#absolute-lengths", "https://www.w3.org/TR/css-values-4/#ref-for-cm", @@ -967,8 +979,8 @@ "https://www.w3.org/TR/css-values-4/#ref-for-typedef-position%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-transform-origin%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-values-4/#combine-positions", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-position%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-interpolation%E2%91%A0%E2%91%A2", @@ -987,7 +999,7 @@ "https://www.w3.org/TR/css-values-4/#example-3fbb1c9d", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-functional-notation%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-typedef-absolute-color-function", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-color%E2%91%A7", "https://www.w3.org/TR/css-values-4/#math", "https://www.w3.org/TR/css-values-4/#calc-notation", "https://www.w3.org/TR/css-values-4/#math-function", @@ -1045,19 +1057,20 @@ "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2", "https://www.w3.org/TR/css-values-4/#funcdef-clamp", "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#valdef-clamp-none", "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-dimension%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type%E2%91%A0", "https://www.w3.org/TR/css-values-4/#example-67532822", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-min%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-max%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-clamp%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-font-size%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-calc%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#example-3f7f1368", + "https://www.w3.org/TR/css-values-4/#example-50cf5aee", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-min%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-max%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-max%E2%91%A3", @@ -1085,8 +1098,8 @@ "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-dimension%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-round%E2%91%A1", "https://www.w3.org/TR/css-values-4/#typedef-rounding-strategy", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-rounding-strategy%E2%91%A0", @@ -1097,6 +1110,8 @@ "https://www.w3.org/TR/css-values-4/#ref-for-typedef-rounding-strategy%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-rounding-strategy-nearest", "https://www.w3.org/TR/css-values-4/#ref-for-css-round-to-the-nearest-integer%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-values-4/#issue-1a929fd0", "https://www.w3.org/TR/css-values-4/#example-1c1bb50d", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-rounding-strategy%E2%91%A2", @@ -1109,11 +1124,11 @@ "https://www.w3.org/TR/css-values-4/#funcdef-rem", "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-dimension%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0", "https://www.w3.org/TR/css-values-4/#between-zero-and-b", "https://www.w3.org/TR/css-values-4/#example-1588859b", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-rem%E2%91%A1", @@ -1155,9 +1170,11 @@ "https://www.w3.org/TR/css-values-4/#funcdef-cos", "https://www.w3.org/TR/css-values-4/#funcdef-tan", "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#ref-for-angle-value%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-angle-value%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-css-make-a-type-consistent", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sin%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-cos%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-tan%E2%91%A1", @@ -1165,19 +1182,23 @@ "https://www.w3.org/TR/css-values-4/#funcdef-asin", "https://www.w3.org/TR/css-values-4/#funcdef-acos", "https://www.w3.org/TR/css-values-4/#funcdef-atan", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-angle-value%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-css-make-a-type-consistent%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-asin%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-acos%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-atan%E2%91%A1", "https://www.w3.org/TR/css-values-4/#funcdef-atan2", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-dimension%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-angle-value%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-css-make-a-type-consistent%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-values-4/#trig-infinities", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-implementation-defined%E2%91%A3", @@ -1197,30 +1218,35 @@ "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-log%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-exp%E2%91%A0", "https://www.w3.org/TR/css-values-4/#funcdef-pow", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#funcdef-sqrt", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#funcdef-sqrt", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-css-make-a-type-consistent%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sqrt%E2%91%A1", "https://www.w3.org/TR/css-values-4/#funcdef-hypot", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-dimension%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-hypot%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-pow%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sqrt%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-match", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-match%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A1%E2%91%A6", @@ -1230,13 +1256,17 @@ "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-hypot%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-hypot%E2%91%A3", "https://www.w3.org/TR/css-values-4/#funcdef-log", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#funcdef-exp", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-css-make-a-type-consistent%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#funcdef-exp", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-css-make-a-type-consistent%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/css-values-4/#example-bebe620e", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-pow%E2%91%A2", "https://www.w3.org/TR/css-values-4/#example-d7f26d9d", @@ -1245,27 +1275,30 @@ "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-log%E2%91%A1", "https://www.w3.org/TR/css-values-4/#exponent-infinities", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/css-values-4/#sign-funcs", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-abs", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sign", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-abs%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sign%E2%91%A0", "https://www.w3.org/TR/css-values-4/#funcdef-abs", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A3", "https://www.w3.org/TR/css-values-4/#funcdef-sign", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-css-make-a-type-consistent%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-background-position%E2%91%A1", "https://www.w3.org/TR/css-values-4/#calc-keywords", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation%E2%91%A0", "https://www.w3.org/TR/css-values-4/#calc-constants", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc-e", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc-pi", "https://www.w3.org/TR/css-values-4/#valdef-calc-e", "https://www.w3.org/TR/css-values-4/#valdef-calc-pi", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-animation-name%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-line-height%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-line-height%E2%91%A0%E2%91%A0", @@ -1274,24 +1307,24 @@ "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc-infinity", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc--infinity", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc-nan", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-css-infinity", "https://www.w3.org/TR/css-values-4/#ref-for-css-nan", "https://www.w3.org/TR/css-values-4/#valdef-calc-infinity", "https://www.w3.org/TR/css-values-4/#valdef-calc--infinity", "https://www.w3.org/TR/css-values-4/#valdef-calc-nan", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-ascii-case-insensitive%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc-nan%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc-infinity%E2%91%A0", "https://www.w3.org/TR/css-values-4/#calc-variables", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-relative-color", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-determine-the-type-of-a-calculation%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/css-values-4/#calc-syntax", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A0%E2%91%A1", @@ -1305,100 +1338,106 @@ "https://www.w3.org/TR/css-values-4/#ref-for-mult-comma%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-clamp%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-mult-comma%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-round%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-typedef-rounding-strategy%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-mult-opt%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-mod%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-round%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-rounding-strategy%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-mult-opt%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-rem%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-mult-opt%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-mod%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sin%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-rem%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-cos%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-tan%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sin%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-asin%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-cos%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-acos%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-tan%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-atan%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-asin%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-atan2%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-acos%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-atan%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-pow%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-atan2%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sqrt%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-pow%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-hypot%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-mult-comma%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-log%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sqrt%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-hypot%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-mult-opt%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-exp%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-mult-comma%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-log%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-abs%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-comma%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sign%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-mult-opt%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-exp%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-abs%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sign%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/css-values-4/#typedef-calc-sum", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-product", - "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-product%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-mult-zero-plus%E2%91%A1", "https://www.w3.org/TR/css-values-4/#typedef-calc-product", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-value", - "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-value%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-mult-zero-plus%E2%91%A2", "https://www.w3.org/TR/css-values-4/#typedef-calc-value", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-typedef-dimension%E2%91%A6", - "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-keyword", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-dimension%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#typedef-calc-keyword", + "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-keyword", "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#typedef-calc-keyword", "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#ref-for-typedef-rounding-strategy%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-rounding-strategy%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-comb-one%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-keyword%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-relative-color%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-whitespace", - "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-sum%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-value%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-min%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/css-values-4/#calc-type-checking", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/css-values-4/#example-40312766", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-width%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%91%A0", @@ -1406,59 +1445,71 @@ "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-width%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-integer-value%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-css-round-to-the-nearest-integer%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/css-values-4/#determine-the-type-of-a-calculation", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-add-two-types", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-multiply-two-types", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-invert-a-type", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-multiply-two-types%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-percent-hint", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-integer-value%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-angle-value%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-time-value%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-frequency-value%E2%91%A7", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-resolution-value%E2%91%A6", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-flex%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-calc-keyword%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-width%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-percent-hint%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#css-contain-a-percentage", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-percent-hint", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-percent-hint%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#css-consistent-type", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-add-two-types%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-css-consistent-type%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#css-make-a-type-consistent", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-percent-hint%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-percent-hint%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-percent-hint%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-percent-hint%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-calc%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-abs%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-min%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-max%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-clamp%E2%91%A8", @@ -1466,8 +1517,8 @@ "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-round%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-mod%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-rem%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-add-two-types%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-add-two-types%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-asin%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-acos%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-atan%E2%91%A5", @@ -1480,10 +1531,10 @@ "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sqrt%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-log%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-exp%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-angle-value%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-time-value%E2%91%A0%E2%93%AA", @@ -1491,13 +1542,13 @@ "https://www.w3.org/TR/css-values-4/#ref-for-resolution-value%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-flex%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-match%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-match%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-opacity", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-opacity%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-dimension%E2%91%A7", @@ -1505,28 +1556,28 @@ "https://www.w3.org/TR/css-values-4/#ref-for-propdef-opacity%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-opacity%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-number-token%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-integer-value%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-width%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-width%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-width%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-line-height%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-tab-size", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-calc%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-px%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-px%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-values-4/#calc-ieee", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A1%E2%91%A4", @@ -1563,7 +1614,7 @@ "https://www.w3.org/TR/css-values-4/#calculation-tree", "https://www.w3.org/TR/css-values-4/#calculation-tree-operator-nodes", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/css-values-4/#calculation-tree-calc-operator-nodes", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A2%E2%91%A3", @@ -1576,7 +1627,7 @@ "https://www.w3.org/TR/css-values-4/#ref-for-calculation-tree-operator-nodes", "https://www.w3.org/TR/css-values-4/#ref-for-parse-a-calculation%E2%91%A0", "https://www.w3.org/TR/css-values-4/#parse-a-calculation", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-component-value%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-calculation-tree%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-typedef-whitespace-token", @@ -1602,10 +1653,10 @@ "https://www.w3.org/TR/css-values-4/#ref-for-canonical-unit%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-calculation-tree-operator-nodes%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-simplify-a-calculation-tree%E2%91%A1", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-calculation-tree-operator-nodes%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-calculation-tree-calc-operator-nodes", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-canonical-unit%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-opacity%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-list-iterate", @@ -1615,11 +1666,11 @@ "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-canonical-unit%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-values-4/#calc-computed-value", - "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-calculation-tree%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-simplify-a-calculation-tree%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-em%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-px%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A3%E2%91%A0", @@ -1630,7 +1681,7 @@ "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/css-values-4/#example-023dad93", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-font-size%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-font-relative-length%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-background-position%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-background-position%E2%91%A3", @@ -1640,16 +1691,16 @@ "https://www.w3.org/TR/css-values-4/#calc-range", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-top-level-calculation%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-used-value%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-specified-value%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-calc%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-animation-iteration-count", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-integer-value%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-used-value%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-css-round-to-the-nearest-integer%E2%91%A2", "https://www.w3.org/TR/css-values-4/#example-ec14dee2", @@ -1660,15 +1711,15 @@ "https://www.w3.org/TR/css-values-4/#issue-f5bc4b00", "https://www.w3.org/TR/css-values-4/#serialize-a-math-function", "https://www.w3.org/TR/css-values-4/#ref-for-calculation-tree%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/css-values-4/#ref-for-string%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc-infinity%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc--infinity%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc-nan%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-canonical-unit%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-px%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-calculation-tree%E2%91%A5", @@ -1679,7 +1730,7 @@ "https://www.w3.org/TR/css-values-4/#ref-for-calculation-tree%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-math-function%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-serialize-a-math-function", - "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-calc-calculation%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-string%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-serialize-a-calculation-tree%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-string%E2%91%A2", @@ -1728,7 +1779,7 @@ "https://www.w3.org/TR/css-values-4/#ref-for-used-value%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-coordinating-list-property%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-used-value%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-coordinating-list-property%E2%91%A4", "https://www.w3.org/TR/css-values-4/#iana", "https://www.w3.org/TR/css-values-4/#about-invalid", @@ -1786,6 +1837,14 @@ "https://www.w3.org/TR/css-values-4/#acknowledgments", "https://www.w3.org/TR/css-values-4/#changes", "https://www.w3.org/TR/css-values-4/#changes-recent", + "https://www.w3.org/TR/css-values-4/#ref-for-valdef-clamp-none", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-clamp%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A5", + "https://www.w3.org/TR/css-values-4/#ref-for-propdef-overflow%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-propdef-scrollbar-gutter%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-initial-containing-block%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-round%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-default-viewport-percentage-units", "https://www.w3.org/TR/css-values-4/#ref-for-large-viewport-percentage-units%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-css-grammar-production-block", @@ -1798,7 +1857,7 @@ "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-max%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-functional-notation%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-snap-a-length-as-a-border-width", - "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-computed-value%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-mix%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-tan%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-resolution-value%E2%91%A8", @@ -1817,12 +1876,12 @@ "https://www.w3.org/TR/css-values-4/#ref-for-typedef-position%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-specified-value%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-number%E2%91%A2", - "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/css-values-4/#ref-for-cssnumericvalue-type%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-propdef-line-height%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-lh%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-rlh%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-writing-mode", - "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A3", + "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-calc%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-calc-nan%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-toggle", @@ -1837,7 +1896,7 @@ "https://www.w3.org/TR/css-values-4/#ref-for-typedef-quirky-length%E2%91%A2", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-mix%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-integer-value%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/css-values-4/#ref-for-number-value%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-percentage-value%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/css-values-4/#ref-for-length-value%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-valdef-width-auto%E2%91%A0", @@ -1896,8 +1955,8 @@ "https://www.w3.org/TR/css-values-4/#ref-for-dppx%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-min%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-max%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-clamp%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-round%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-clamp%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-round%E2%91%A5", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-mod%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-rem%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-sin%E2%91%A5", @@ -1931,7 +1990,7 @@ "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-src%E2%91%A3", "https://www.w3.org/TR/css-values-4/#ref-for-url-value%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-values-4/#privacy", - "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A4", + "https://www.w3.org/TR/css-values-4/#ref-for-viewport-percentage-lengths%E2%91%A7", "https://www.w3.org/TR/css-values-4/#ref-for-font-relative-length%E2%91%A8", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-url%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-values-4/#ref-for-funcdef-src%E2%91%A4", @@ -1971,18 +2030,18 @@ "https://www.w3.org/TR/css-values-4/#d5e08d9c", "https://www.w3.org/TR/css-values-4/#7c39b465", "https://www.w3.org/TR/css-values-4/#1a2b1083", + "https://www.w3.org/TR/css-values-4/#5bd3632a", "https://www.w3.org/TR/css-values-4/#3b7558dc", "https://www.w3.org/TR/css-values-4/#f3226176", - "https://www.w3.org/TR/css-values-4/#139c8f05", - "https://www.w3.org/TR/css-values-4/#1548047a", + "https://www.w3.org/TR/css-values-4/#d04b6986", "https://www.w3.org/TR/css-values-4/#2b36ebcb", - "https://www.w3.org/TR/css-values-4/#8e993f60", "https://www.w3.org/TR/css-values-4/#b786b3c1", "https://www.w3.org/TR/css-values-4/#a5d6c9d2", "https://www.w3.org/TR/css-values-4/#087858ba", "https://www.w3.org/TR/css-values-4/#a9efccbc", "https://www.w3.org/TR/css-values-4/#6b4fc208", "https://www.w3.org/TR/css-values-4/#e26aa9bf", + "https://www.w3.org/TR/css-values-4/#8b4f8a45", "https://www.w3.org/TR/css-values-4/#c7d3b8b7", "https://www.w3.org/TR/css-values-4/#2f7ff51f", "https://www.w3.org/TR/css-values-4/#056b67db", @@ -2000,6 +2059,8 @@ "https://www.w3.org/TR/css-values-4/#80a12c2a", "https://www.w3.org/TR/css-values-4/#2d8be2d9", "https://www.w3.org/TR/css-values-4/#e97d95b6", + "https://www.w3.org/TR/css-values-4/#add377f4", + "https://www.w3.org/TR/css-values-4/#91e8e72e", "https://www.w3.org/TR/css-values-4/#072f08da", "https://www.w3.org/TR/css-values-4/#1fe10a71", "https://www.w3.org/TR/css-values-4/#f411d42d", @@ -2106,6 +2167,7 @@ "https://www.w3.org/TR/css-values-4/#24905be8", "https://www.w3.org/TR/css-values-4/#43ac8374", "https://www.w3.org/TR/css-values-4/#9c4c1e66", + "https://www.w3.org/TR/css-values-4/#c51ad875", "https://www.w3.org/TR/css-values-4/#7f9469b5", "https://www.w3.org/TR/css-values-4/#915aff5e", "https://www.w3.org/TR/css-values-4/#4a3bf5fb", @@ -2138,6 +2200,7 @@ "https://www.w3.org/TR/css-values-4/#biblio-css-images-4", "https://www.w3.org/TR/css-values-4/#biblio-css-inline-3", "https://www.w3.org/TR/css-values-4/#biblio-css-masking-1", + "https://www.w3.org/TR/css-values-4/#biblio-css-overflow-3", "https://www.w3.org/TR/css-values-4/#biblio-css-page-3", "https://www.w3.org/TR/css-values-4/#biblio-css-position-3", "https://www.w3.org/TR/css-values-4/#biblio-css-scoping-1", diff --git a/tr/ids/device-posture.json b/tr/ids/device-posture.json index e7415db37b94..a0588bdd3896 100644 --- a/tr/ids/device-posture.json +++ b/tr/ids/device-posture.json @@ -128,25 +128,28 @@ "https://www.w3.org/TR/device-posture/#x9-2-2-focused-area", "https://www.w3.org/TR/device-posture/#visibility-state", "https://www.w3.org/TR/device-posture/#x9-2-3-visibility-state", + "https://www.w3.org/TR/device-posture/#accessibility-considerations", + "https://www.w3.org/TR/device-posture/#x10-accessibility-considerations", + "https://www.w3.org/TR/device-posture/#ref-for-dfn-posture-6", "https://www.w3.org/TR/device-posture/#examples", - "https://www.w3.org/TR/device-posture/#x10-examples", + "https://www.w3.org/TR/device-posture/#x11-examples", "https://www.w3.org/TR/device-posture/#example-1-posture-data", - "https://www.w3.org/TR/device-posture/#x10-1-example-1-posture-data", - "https://www.w3.org/TR/device-posture/#ref-for-dfn-posture-6", + "https://www.w3.org/TR/device-posture/#x11-1-example-1-posture-data", + "https://www.w3.org/TR/device-posture/#ref-for-dfn-posture-7", "https://www.w3.org/TR/device-posture/#example-react-to-poster-change", "https://www.w3.org/TR/device-posture/#example-2-device-posture", - "https://www.w3.org/TR/device-posture/#x10-2-example-2-device-posture", - "https://www.w3.org/TR/device-posture/#ref-for-dfn-posture-7", + "https://www.w3.org/TR/device-posture/#x11-2-example-2-device-posture", + "https://www.w3.org/TR/device-posture/#ref-for-dfn-posture-8", "https://www.w3.org/TR/device-posture/#example-adapting-ui-to-posture", "https://www.w3.org/TR/device-posture/#example-3-feature-detection-of-device-posture-media-feature", - "https://www.w3.org/TR/device-posture/#x10-3-example-3-feature-detection-of-device-posture-media-feature", + "https://www.w3.org/TR/device-posture/#x11-3-example-3-feature-detection-of-device-posture-media-feature", "https://www.w3.org/TR/device-posture/#example-feature-detect-the-device-posture", "https://www.w3.org/TR/device-posture/#dependencies", - "https://www.w3.org/TR/device-posture/#x11-dependencies", + "https://www.w3.org/TR/device-posture/#x12-dependencies", "https://www.w3.org/TR/device-posture/#dfn-current-screen-orientation", "https://www.w3.org/TR/device-posture/#dfn-evaluating-media-features-in-a-boolean-context", "https://www.w3.org/TR/device-posture/#conformance", - "https://www.w3.org/TR/device-posture/#x12-conformance", + "https://www.w3.org/TR/device-posture/#x13-conformance", "https://www.w3.org/TR/device-posture/#dfn-user-agent", "https://www.w3.org/TR/device-posture/#idl-index", "https://www.w3.org/TR/device-posture/#a-idl-index", diff --git a/tr/ids/webcodecs.json b/tr/ids/webcodecs.json index e14f8c336c18..1e275b09a4a8 100644 --- a/tr/ids/webcodecs.json +++ b/tr/ids/webcodecs.json @@ -2001,6 +2001,7 @@ "https://www.w3.org/TR/webcodecs/#ref-for-dom-audiodecoderconfig-codec%E2%91%A1", "https://www.w3.org/TR/webcodecs/#ref-for-strip-leading-and-trailing-ascii-whitespace", "https://www.w3.org/TR/webcodecs/#ref-for-dom-audiodecoderconfig-description%E2%91%A2", + "https://www.w3.org/TR/webcodecs/#ref-for-buffersource-detached", "https://www.w3.org/TR/webcodecs/#dom-audiodecoderconfig-codec", "https://www.w3.org/TR/webcodecs/#infopanel-for-dom-audiodecoderconfig-codec", "https://www.w3.org/TR/webcodecs/#infopaneltitle-for-dom-audiodecoderconfig-codec", @@ -2072,6 +2073,7 @@ "https://www.w3.org/TR/webcodecs/#ref-for-dom-videodecoderconfig-displayaspectwidth%E2%91%A2", "https://www.w3.org/TR/webcodecs/#ref-for-dom-videodecoderconfig-displayaspectheight%E2%91%A2", "https://www.w3.org/TR/webcodecs/#ref-for-dom-videodecoderconfig-description%E2%91%A1", + "https://www.w3.org/TR/webcodecs/#ref-for-buffersource-detached%E2%91%A0", "https://www.w3.org/TR/webcodecs/#dom-videodecoderconfig-codec", "https://www.w3.org/TR/webcodecs/#infopanel-for-dom-videodecoderconfig-codec", "https://www.w3.org/TR/webcodecs/#infopaneltitle-for-dom-videodecoderconfig-codec", @@ -5845,6 +5847,7 @@ "https://www.w3.org/TR/webcodecs/#ref-for-is-readable-stream-disturbed", "https://www.w3.org/TR/webcodecs/#ref-for-readablestream-locked", "https://www.w3.org/TR/webcodecs/#ref-for-BufferSource%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webcodecs/#ref-for-buffersource-detached%E2%91%A1", "https://www.w3.org/TR/webcodecs/#ref-for-list-is-empty%E2%91%A0", "https://www.w3.org/TR/webcodecs/#ref-for-dom-imagedecoderinit-desiredwidth%E2%91%A1", "https://www.w3.org/TR/webcodecs/#ref-for-map-exists%E2%91%A1%E2%91%A7", @@ -6806,6 +6809,11 @@ "https://www.w3.org/TR/webcodecs/#infopaneltitle-for-5372cca8", "https://www.w3.org/TR/webcodecs/#infopanel-for-5372cca8", "https://www.w3.org/TR/webcodecs/#infopaneltitle-for-5372cca8", + "https://www.w3.org/TR/webcodecs/#e97b1447", + "https://www.w3.org/TR/webcodecs/#infopanel-for-e97b1447", + "https://www.w3.org/TR/webcodecs/#infopaneltitle-for-e97b1447", + "https://www.w3.org/TR/webcodecs/#infopanel-for-e97b1447", + "https://www.w3.org/TR/webcodecs/#infopaneltitle-for-e97b1447", "https://www.w3.org/TR/webcodecs/#8c800cdf", "https://www.w3.org/TR/webcodecs/#infopanel-for-8c800cdf", "https://www.w3.org/TR/webcodecs/#infopaneltitle-for-8c800cdf", diff --git a/tr/ids/webnn.json b/tr/ids/webnn.json index 2290ca5cc685..da8757d37897 100644 --- a/tr/ids/webnn.json +++ b/tr/ids/webnn.json @@ -64,49 +64,94 @@ "https://www.w3.org/TR/webnn/#ethics", "https://www.w3.org/TR/webnn/#programming-model", "https://www.w3.org/TR/webnn/#programming-model-overview", + "https://www.w3.org/TR/webnn/#computational-graph", + "https://www.w3.org/TR/webnn/#infopanel-for-computational-graph", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-computational-graph", + "https://www.w3.org/TR/webnn/#infopanel-for-computational-graph", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-computational-graph", "https://www.w3.org/TR/webnn/#ref-for-mlgraph", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-computational-graph", + "https://www.w3.org/TR/webnn/#mlgraphbuilder-graph", + "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-graph", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-graph", + "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-graph", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-graph", "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-computational-graph%E2%91%A0", + "https://www.w3.org/TR/webnn/#operators", + "https://www.w3.org/TR/webnn/#infopanel-for-operators", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-operators", + "https://www.w3.org/TR/webnn/#infopanel-for-operators", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-operators", "https://www.w3.org/TR/webnn/#ref-for-mloperand", + "https://www.w3.org/TR/webnn/#ref-for-computational-graph%E2%91%A1", + "https://www.w3.org/TR/webnn/#computational-graph-input", + "https://www.w3.org/TR/webnn/#infopanel-for-computational-graph-input", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-computational-graph-input", + "https://www.w3.org/TR/webnn/#infopanel-for-computational-graph-input", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-computational-graph-input", + "https://www.w3.org/TR/webnn/#computational-graph-constants", + "https://www.w3.org/TR/webnn/#infopanel-for-computational-graph-constants", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-computational-graph-constants", + "https://www.w3.org/TR/webnn/#infopanel-for-computational-graph-constants", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-computational-graph-constants", + "https://www.w3.org/TR/webnn/#ref-for-operators", + "https://www.w3.org/TR/webnn/#operator-input", + "https://www.w3.org/TR/webnn/#infopanel-for-operator-input", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-operator-input", + "https://www.w3.org/TR/webnn/#infopanel-for-operator-input", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-operator-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0", + "https://www.w3.org/TR/webnn/#operator-output", + "https://www.w3.org/TR/webnn/#infopanel-for-operator-output", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-operator-output", + "https://www.w3.org/TR/webnn/#infopanel-for-operator-output", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-operator-output", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1", + "https://www.w3.org/TR/webnn/#operator-activation", + "https://www.w3.org/TR/webnn/#infopanel-for-operator-activation", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-operator-activation", + "https://www.w3.org/TR/webnn/#infopanel-for-operator-activation", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-operator-activation", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gemm", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-softmax-noargs", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gemm%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-implementation-defined", - "https://www.w3.org/TR/webnn/#platform-operator", - "https://www.w3.org/TR/webnn/#infopanel-for-platform-operator", - "https://www.w3.org/TR/webnn/#infopaneltitle-for-platform-operator", - "https://www.w3.org/TR/webnn/#infopanel-for-platform-operator", - "https://www.w3.org/TR/webnn/#infopaneltitle-for-platform-operator", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation", + "https://www.w3.org/TR/webnn/#ref-for-operator-input", + "https://www.w3.org/TR/webnn/#ref-for-operator-activation", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A0", - "https://www.w3.org/TR/webnn/#platform-operand", - "https://www.w3.org/TR/webnn/#infopanel-for-platform-operand", - "https://www.w3.org/TR/webnn/#infopaneltitle-for-platform-operand", - "https://www.w3.org/TR/webnn/#infopanel-for-platform-operand", - "https://www.w3.org/TR/webnn/#infopaneltitle-for-platform-operand", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build", "https://www.w3.org/TR/webnn/#ref-for-idl-promise", "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A3", + "https://www.w3.org/TR/webnn/#platform-operators", + "https://www.w3.org/TR/webnn/#infopanel-for-platform-operators", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-platform-operators", + "https://www.w3.org/TR/webnn/#infopanel-for-platform-operators", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-platform-operators", + "https://www.w3.org/TR/webnn/#platform-operands", + "https://www.w3.org/TR/webnn/#infopanel-for-platform-operands", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-platform-operands", + "https://www.w3.org/TR/webnn/#infopanel-for-platform-operands", + "https://www.w3.org/TR/webnn/#infopaneltitle-for-platform-operands", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0", "https://www.w3.org/TR/webnn/#programming-model-device-selection", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A3", @@ -129,7 +174,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-ml-task-source", "https://www.w3.org/TR/webnn/#ref-for-task-source", "https://www.w3.org/TR/webnn/#ref-for-concept-task", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A6", "https://www.w3.org/TR/webnn/#queue-an-ml-task", "https://www.w3.org/TR/webnn/#infopanel-for-queue-an-ml-task", @@ -395,7 +440,7 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcomputeresult", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlcontext-compute-graph-inputs-outputs-graph", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlcontext-compute-graph-inputs-outputs-inputs", @@ -457,7 +502,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-execute-graph", "https://www.w3.org/TR/webnn/#infopanel-for-execute-graph", "https://www.w3.org/TR/webnn/#infopaneltitle-for-execute-graph", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-undefined", @@ -498,7 +543,7 @@ "https://www.w3.org/TR/webnn/#ref-for-sec-construct", "https://www.w3.org/TR/webnn/#api-mlcontext-compute", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-compute%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlcontextoptions%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw", @@ -507,7 +552,7 @@ "https://www.w3.org/TR/webnn/#ref-for-arraybufferview-write", "https://www.w3.org/TR/webnn/#ref-for-mlnamedarraybufferviews-transfer", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlnamedarraybufferviews-transfer%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedarraybufferviews%E2%91%A0%E2%91%A3", @@ -561,8 +606,8 @@ "https://www.w3.org/TR/webnn/#api-mlcontext-compute-examples", "https://www.w3.org/TR/webnn/#example-51b119bc", "https://www.w3.org/TR/webnn/#api-mlgraph", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-SecureContext%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-Exposed%E2%91%A1", "https://www.w3.org/TR/webnn/#mlgraph", @@ -570,7 +615,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraph", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraph", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraph", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraph-context-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraph-context-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraph-context-slot", @@ -578,7 +623,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraph-context-slot", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraph-inputdescriptors-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraph-inputdescriptors-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraph-inputdescriptors-slot", @@ -587,10 +632,10 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMString%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraph-outputdescriptors-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraph-outputdescriptors-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraph-outputdescriptors-slot", @@ -599,10 +644,10 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMString%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraph-implementation-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraph-implementation-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraph-implementation-slot", @@ -611,8 +656,8 @@ "https://www.w3.org/TR/webnn/#api-mloperanddescriptor", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A6", "https://www.w3.org/TR/webnn/#enumdef-mlinputoperandlayout", "https://www.w3.org/TR/webnn/#infopanel-for-enumdef-mlinputoperandlayout", @@ -712,9 +757,9 @@ "https://www.w3.org/TR/webnn/#issue-8054fa8e", "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-byte-length%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mloperand", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-SecureContext%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-Exposed%E2%91%A2", "https://www.w3.org/TR/webnn/#mloperand", @@ -727,44 +772,36 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-shape", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mloperand-builder-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-builder-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-builder-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-builder-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-builder-slot", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mloperand-descriptor-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-descriptor-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-descriptor-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-descriptor-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-descriptor-slot", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mloperand-name-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-name-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-name-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-name-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-name-slot", "https://www.w3.org/TR/webnn/#ref-for-string", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#dom-mloperand-operand-slot", - "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-operand-slot", - "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-operand-slot", - "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-operand-slot", - "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-operand-slot", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mloperand-operator-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-operator-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-operator-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mloperand-operator-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mloperand-operator-slot", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#mloperand-shape", "https://www.w3.org/TR/webnn/#infopanel-for-mloperand-shape", @@ -797,13 +834,13 @@ "https://www.w3.org/TR/webnn/#api-mloperand-create", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4", "https://www.w3.org/TR/webnn/#create-an-mloperand", "https://www.w3.org/TR/webnn/#infopanel-for-create-an-mloperand", "https://www.w3.org/TR/webnn/#infopaneltitle-for-create-an-mloperand", "https://www.w3.org/TR/webnn/#infopanel-for-create-an-mloperand", "https://www.w3.org/TR/webnn/#infopaneltitle-for-create-an-mloperand", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-builder-slot%E2%91%A0", @@ -829,7 +866,7 @@ "https://www.w3.org/TR/webnn/#infopanel-for-mloperand-validate-mloperand", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mloperand-validate-mloperand", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-builder-slot%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-check-dimensions", @@ -856,8 +893,8 @@ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlactivation", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-SecureContext%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-Exposed%E2%91%A3", "https://www.w3.org/TR/webnn/#mlactivation", @@ -865,42 +902,42 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlactivation", "https://www.w3.org/TR/webnn/#infopanel-for-mlactivation", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlactivation", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlactivation-name-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlactivation-name-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlactivation-name-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlactivation-name-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlactivation-name-slot", "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlactivation-builder-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlactivation-builder-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlactivation-builder-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlactivation-builder-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlactivation-builder-slot", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlactivation-options-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlactivation-options-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlactivation-options-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlactivation-options-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlactivation-options-slot", "https://www.w3.org/TR/webnn/#ref-for-ordered-map%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlactivation-operator-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlactivation-operator-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlactivation-operator-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlactivation-operator-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlactivation-operator-slot", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-conv2d", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization", "https://www.w3.org/TR/webnn/#api-mlactivation-create", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-sigmoid-noargs", "https://www.w3.org/TR/webnn/#ref-for-relu-noargs", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-conv2d%E2%91%A0", @@ -909,23 +946,20 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-create-an-mlactivation", "https://www.w3.org/TR/webnn/#infopanel-for-create-an-mlactivation", "https://www.w3.org/TR/webnn/#infopaneltitle-for-create-an-mlactivation", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-ordered-map%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlactivation-builder-slot", "https://www.w3.org/TR/webnn/#ref-for-dom-mlactivation-name-slot", "https://www.w3.org/TR/webnn/#ref-for-dom-mlactivation-options-slot", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlactivation-operator-slot", "https://www.w3.org/TR/webnn/#ref-for-dom-mlactivation-operator-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-implementation-defined", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-record%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMString%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4", @@ -963,20 +997,20 @@ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-constant-value-type-type", "https://www.w3.org/TR/webnn/#ref-for-idl-promise%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnamedoperands", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-build-outputs-outputs", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlcontext-contexttype-slot%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-context-type-default%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant%E2%91%A0", "https://www.w3.org/TR/webnn/#issue-f13b8ed7", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-context-slot", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-context-slot", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-context-slot", @@ -984,9 +1018,9 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-context-slot", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlcontext%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constructor", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-new", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mlgraphbuilder", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-mlgraphbuilder", @@ -998,9 +1032,9 @@ "https://www.w3.org/TR/webnn/#ref-for-concept-document-window%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-allowed-to-use%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-webnn-feature%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-securityerror%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-context-slot", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-input", @@ -1013,22 +1047,20 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-input", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-input", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-input", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-check-dimensions%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-name-slot%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph", + "https://www.w3.org/TR/webnn/#ref-for-computational-graph-input", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-bufferview", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A1", @@ -1041,19 +1073,17 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-constant", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-constant", "https://www.w3.org/TR/webnn/#ref-for-mloperanddescriptor-check-dimensions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-validate-buffer-with-descriptor%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-get-buffer-source-copy", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-computational-graph-constants", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-value-type", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant-value-type%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A3", @@ -1071,13 +1101,11 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-computational-graph-constants%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-constant-range", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-constant-start-end-step-type", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A5", @@ -1097,17 +1125,15 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%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%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-the-range", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-graph%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-computational-graph-constants%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-build", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-build", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-build", @@ -1115,9 +1141,9 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-build", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-build", "https://www.w3.org/TR/webnn/#ref-for-a-new-promise%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-global%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-concept-relevant-realm%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-in-parallel%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A5", @@ -1129,17 +1155,17 @@ "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlgraph%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-context-slot%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-context-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-implementation-slot%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-validate-mloperand", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-reject%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0", @@ -1150,11 +1176,21 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraph-inputdescriptors-slot%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-name-slot%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-platform-operands", + "https://www.w3.org/TR/webnn/#ref-for-platform-operators", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot", "https://www.w3.org/TR/webnn/#issue-f13b8ed7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-queue-an-ml-task%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-resolve%E2%91%A2", + "https://www.w3.org/TR/webnn/#issue-c2da0124", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-build%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-platform-operators%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-platform-operands%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-output", + "https://www.w3.org/TR/webnn/#ref-for-operator-activation%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax", "https://www.w3.org/TR/webnn/#dictdef-mlargminmaxoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlargminmaxoptions", @@ -1169,16 +1205,16 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-keepdimensions", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-selectlastindex", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmax", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmax", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmax-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmax-input-options-options", @@ -1202,9 +1238,9 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlargminmaxoptions-selectlastindex", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlargminmaxoptions-selectlastindex", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64", "https://www.w3.org/TR/webnn/#mlgraphbuilder-argminmax-op", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-argminmax-op", @@ -1212,14 +1248,14 @@ "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-argminmax-op", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-argminmax-op", "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-assert", "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-axes%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-reduction-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1", @@ -1230,58 +1266,53 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-argmin", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-argmin", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-argmin", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-argmin", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-argminmax-op", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmax", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-argmax", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-argmax", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-argmax", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-argmax", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-argminmax-op%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm", "https://www.w3.org/TR/webnn/#dictdef-mlbatchnormalizationoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlbatchnormalizationoptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlbatchnormalizationoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlbatchnormalizationoptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlbatchnormalizationoptions", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-scale", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-scale", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-bias", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-epsilon", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-activation", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-mean", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-mean", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-variance", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlbatchnormalizationoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization-input-mean-variance-options-options", @@ -1291,7 +1322,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlbatchnormalizationoptions-scale", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlbatchnormalizationoptions-scale", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlbatchnormalizationoptions-scale", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-bias", @@ -1299,7 +1330,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlbatchnormalizationoptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlbatchnormalizationoptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlbatchnormalizationoptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-axis", @@ -1321,16 +1352,16 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlbatchnormalizationoptions-activation", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlbatchnormalizationoptions-activation", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlbatchnormalizationoptions-activation", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlbatchnormalizationoptions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-batchnormalization", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-batchnormalization", @@ -1339,85 +1370,85 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A4", "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%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6", + "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%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7", + "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%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8", + "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%A5", "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%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3", "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%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-scale%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-scale%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-bias%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7", "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-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-activation%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-activation%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-scale%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-bias%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-relu-noargs%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-cast", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-input", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-type", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-cast", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-cast", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-cast", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-cast", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp", "https://www.w3.org/TR/webnn/#dictdef-mlclampoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlclampoptions", @@ -1436,14 +1467,14 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlclampoptions-maxvalue", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlclampoptions-maxvalue", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlclampoptions-maxvalue", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlclampoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlclampoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-options-options", @@ -1457,73 +1488,68 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-maxvalue", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp-operand-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlclampoptions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-clamp", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-clamp", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-clamp", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-clamp", "https://www.w3.org/TR/webnn/#ref-for-check-clamp-options", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-minvalue%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-maxvalue%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A3", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-clamp-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-clamp-options%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlclampoptions%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-clamp-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-clamp-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-clamp-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-clamp-options", "https://www.w3.org/TR/webnn/#ref-for-check-clamp-options%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA", + "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%A3", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-concat", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-inputs", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-axis", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A7", "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%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-concat", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-concat", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-concat", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-concat", "https://www.w3.org/TR/webnn/#ref-for-list-is-empty", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%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%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A6", @@ -1537,36 +1563,32 @@ "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-validate-mloperand%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%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-dfn-throw%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A7", "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%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%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%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A0%E2%93%AA", "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%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A4", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-conv2d", "https://www.w3.org/TR/webnn/#enumdef-mlconv2dfilteroperandlayout", "https://www.w3.org/TR/webnn/#infopanel-for-enumdef-mlconv2dfilteroperandlayout", @@ -1617,16 +1639,16 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlconv2dfilteroperandlayout", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-filterlayout", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-activation", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-conv2d%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-conv2d-input-filter-options-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-conv2d%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-conv2d-input-filter-options-input", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-conv2d-input-filter-options-filter", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlconv2doptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-conv2d-input-filter-options-options", @@ -1675,20 +1697,20 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlconv2doptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlconv2doptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlconv2doptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlconv2doptions-activation", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlconv2doptions-activation", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlconv2doptions-activation", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlconv2doptions-activation", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlconv2doptions-activation", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-filterlayout%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlconv2doptions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2dfilteroperandlayout-oihw%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2dfilteroperandlayout-hwio%E2%91%A0", @@ -1717,57 +1739,57 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-conv2d", "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%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-padding%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-padding%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-dilations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-dilations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A5", + "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%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A6", + "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%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A7", + "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%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A8", + "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%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%93%AA", + "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%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A2", @@ -1787,25 +1809,21 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-activation%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-activation%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A5", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-convtranspose2d", "https://www.w3.org/TR/webnn/#enumdef-mlconvtranspose2dfilteroperandlayout", "https://www.w3.org/TR/webnn/#infopanel-for-enumdef-mlconvtranspose2dfilteroperandlayout", @@ -1859,16 +1877,16 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlconvtranspose2dfilteroperandlayout", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-filterlayout", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-activation", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-convtranspose2d", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d-input-filter-options-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-convtranspose2d", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d-input-filter-options-input", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d-input-filter-options-filter", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlconvtranspose2doptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d-input-filter-options-options", @@ -1928,20 +1946,20 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlconvtranspose2doptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlconvtranspose2doptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlconvtranspose2doptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-activation", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlconvtranspose2doptions-activation", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlconvtranspose2doptions-activation", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlconvtranspose2doptions-activation", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlconvtranspose2doptions-activation", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-filterlayout%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-groups%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlconvtranspose2doptions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%E2%91%A1", @@ -1969,71 +1987,71 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-convtranspose2d", "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-dfn-throw%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A5", + "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%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-padding%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-padding%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%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%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%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%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-dilations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-dilations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%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-dfn-throw%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes%E2%91%A2", "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%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-groups%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-groups%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-bias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A5", @@ -2053,86 +2071,82 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-bias%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-activation%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-activation%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-binary", "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%A0%E2%91%A7", - "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%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-add", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-add", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sub", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sub", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-mul", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-mul", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-div", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-div", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-max", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-max-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-max", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-max-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-max-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-min", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-max-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-min", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pow", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pow", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#mlgraphbuilder-element-wise-binary-op", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-element-wise-binary-op", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-element-wise-binary-op", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-element-wise-binary-op", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-element-wise-binary-op", "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A3", "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%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%93%AA", @@ -2141,20 +2155,14 @@ "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting-the-shapes", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A0", + "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%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-add", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-add", @@ -2162,97 +2170,97 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-add", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-add", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sub", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-sub", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-sub", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-sub", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-sub", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-mul", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-mul", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-mul", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-mul", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-mul", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-div", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-div", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-div", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-div", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-div", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-max", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-max", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-max", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-max", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-max", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-min", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-min", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-min", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-min", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-min", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pow", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-pow", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-pow", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-pow", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-pow", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-binary-op%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-logical", "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%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-equal", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-equal", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-greater", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greater-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-greater", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greater-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greater-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-greaterorequal", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greater-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greaterorequal-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-greaterorequal", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greaterorequal-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greaterorequal-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lesser", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greaterorequal-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesser-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lesser", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesser-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesser-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lesserorequal", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesser-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesserorequal-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lesserorequal", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesserorequal-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesserorequal-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-not", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesserorequal-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-not-a-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-not", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-not-a-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-greaterorequal%E2%91%A0", @@ -2266,16 +2274,16 @@ "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-element-wise-logical-op", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-element-wise-logical-op", "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A0", @@ -2284,20 +2292,14 @@ "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting-the-shapes%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-equal", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-equal", @@ -2305,122 +2307,117 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-equal", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-equal", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greater", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-greater", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-greater", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-greater", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-greater", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-greaterorequal", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-greaterorequal", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-greaterorequal", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-greaterorequal", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-greaterorequal", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesser", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-lesser", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-lesser", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-lesser", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-lesser", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lesserorequal", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-lesserorequal", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-lesserorequal", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-lesserorequal", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-lesserorequal", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-not", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-not", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-not", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-not", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-not", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-logical-op%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-abs", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-abs-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-abs", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-ceil", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-abs-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-ceil-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-ceil", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cos", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-ceil-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cos-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cos", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-erf", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cos-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-erf-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-erf", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-exp", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-erf-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-exp-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-exp", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-floor", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-exp-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-floor-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-floor", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-identity", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-floor-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-identity-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-identity", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-log", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-identity-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-log-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-log", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-neg", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-log-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-neg-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-neg", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reciprocal", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-neg-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reciprocal-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reciprocal", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sin", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reciprocal-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sin-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sin", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sqrt", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sin-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sqrt-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sqrt", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-tan", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sqrt-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tan-input-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-tan", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tan-input-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#mlgraphbuilder-element-wise-unary-op", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-element-wise-unary-op", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-element-wise-unary-op", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-element-wise-unary-op", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-element-wise-unary-op", "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-abs", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-abs", @@ -2428,104 +2425,104 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-abs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-abs", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-ceil", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-ceil", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-ceil", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-ceil", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-ceil", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cos", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-cos", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-cos", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-cos", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-cos", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-erf", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-erf", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-erf", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-erf", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-erf", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-exp", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-exp", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-exp", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-exp", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-exp", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-floor", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-floor", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-floor", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-floor", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-floor", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-identity", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-identity", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-identity", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-identity", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-identity", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-log", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-log", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-log", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-log", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-log", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-neg", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-neg", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-neg", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-neg", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-neg", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reciprocal", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reciprocal", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reciprocal", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reciprocal", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reciprocal", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sin", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-sin", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-sin", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-sin", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-sin", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sqrt", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-sqrt", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-sqrt", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-sqrt", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-sqrt", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tan", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-tan", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-tan", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-tan", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-tan", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-element-wise-unary-op%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu", "https://www.w3.org/TR/webnn/#dictdef-mleluoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mleluoptions", @@ -2534,63 +2531,58 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mleluoptions", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mleluoptions-alpha", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-elu", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-elu", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mleluoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-elu-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mleluoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-options-options", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu-input-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-elu%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mleluoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-elu", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-elu", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-elu", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-elu", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-elu-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-elu-options%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mleluoptions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-elu-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-elu-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-elu-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-elu-options", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-expand", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand", + "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%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand-input-newshape-input", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand-input-newshape-newshape", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-expand", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-expand", @@ -2602,18 +2594,14 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcasting-the-shapes", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather", "https://www.w3.org/TR/webnn/#dictdef-mlgatheroptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlgatheroptions", @@ -2623,12 +2611,12 @@ "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgatheroptions-axis", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gather", + "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%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gather", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A1", + "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%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-indices", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgatheroptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-options", @@ -2640,12 +2628,12 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgatheroptions-axis", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A2", "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%E2%91%A0%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A1", "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%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%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-mloperand-rank%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A3", @@ -2657,17 +2645,17 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A4", "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-shape%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgatheroptions-axis%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-map-iterate%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-iteration-break", @@ -2678,17 +2666,11 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A6", - "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-platform-operator%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#example-7464c83f", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gemm", "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcastable", @@ -2697,7 +2679,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlgemmoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlgemmoptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlgemmoptions", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-c", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-alpha", @@ -2707,12 +2689,12 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-atranspose", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-btranspose", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gemm%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A0", "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-gemm-a-b-options-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gemm%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-a", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-b", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgemmoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm-a-b-options-options", @@ -2722,7 +2704,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgemmoptions-c", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgemmoptions-c", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgemmoptions-c", - "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%E2%91%A0%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcastable%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgemmoptions-alpha", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgemmoptions-alpha", @@ -2749,10 +2731,10 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgemmoptions-btranspose", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgemmoptions-btranspose", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgemmoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgemmoptions%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-gemm", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-gemm", @@ -2764,16 +2746,16 @@ "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%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-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-atranspose%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-btranspose%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-c%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcastable%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-c%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%91%A5", @@ -2781,18 +2763,15 @@ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A7", - "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%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%91%A4", + "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%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-c%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gru", "https://www.w3.org/TR/webnn/#enumdef-mlgruweightlayout", "https://www.w3.org/TR/webnn/#infopanel-for-enumdef-mlgruweightlayout", @@ -2826,11 +2805,11 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlgruoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlgruoptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlgruoptions", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-initialhiddenstate", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-resetafter", @@ -2841,17 +2820,17 @@ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlgruweightlayout", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-activations", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-weight", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-weight", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-recurrentweight", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A3", @@ -2867,21 +2846,21 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgruoptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgruoptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgruoptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgruoptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgruoptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgruoptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgruoptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgruoptions-recurrentbias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgruoptions-initialhiddenstate", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgruoptions-initialhiddenstate", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgruoptions-initialhiddenstate", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgruoptions-initialhiddenstate", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgruoptions-initialhiddenstate", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgruoptions-resetafter", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgruoptions-resetafter", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgruoptions-resetafter", @@ -2912,16 +2891,16 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgruoptions-activations", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgruoptions-activations", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgruoptions-activations", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgruoptions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-returnsequence%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-gru", @@ -2929,66 +2908,71 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-gru", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-gru", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-initialhiddenstate%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A3", "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%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#issue-0952c806", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-grucell", "https://www.w3.org/TR/webnn/#dictdef-mlgrucelloptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlgrucelloptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlgrucelloptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlgrucelloptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlgrucelloptions", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-bias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-bias", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-resetafter", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlgruweightlayout%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-layout", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-activations", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-weight", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-recurrentweight", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-weight", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-recurrentweight", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-hiddenstate", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A7", @@ -3001,14 +2985,14 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgrucelloptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgrucelloptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgrucelloptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgrucelloptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgrucelloptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgrucelloptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgrucelloptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgrucelloptions-recurrentbias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgrucelloptions-resetafter", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgrucelloptions-resetafter", @@ -3027,42 +3011,42 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgrucelloptions-activations", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgrucelloptions-activations", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgrucelloptions-activations", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgrucelloptions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-grucell", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-grucell", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-grucell", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-grucell", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%93%AA", - "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-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-activations%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A7", + "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%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A0%E2%91%A7", @@ -3070,17 +3054,12 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A3%E2%91%A8", + "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%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruweightlayout-zrn", "https://www.w3.org/TR/webnn/#ref-for-sigmoid-noargs%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-tanh-noargs", @@ -3094,14 +3073,14 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlhardsigmoidoptions-alpha", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlhardsigmoidoptions-beta", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardsigmoid", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardsigmoid", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlhardsigmoidoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardsigmoid-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlhardsigmoidoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-options-options", @@ -3120,76 +3099,66 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hardsigmoid-input-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardsigmoid%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlhardsigmoidoptions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlhardsigmoidoptions%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-hardsigmoid", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-hardsigmoid", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-hardsigmoid", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-hardsigmoid", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hardsigmoid-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardsigmoid-options%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlhardsigmoidoptions%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-hardsigmoid-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-hardsigmoid-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-hardsigmoid-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-hardsigmoid-options", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hard-swish", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardswish", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardswish", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish-input-input", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-hardswish-noargs", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hardswish-input", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hardswish%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-hardswish", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-hardswish", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-hardswish", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-hardswish", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-hardswish", "https://www.w3.org/TR/webnn/#ref-for-hardswish-noargs%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#hardswish-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-hardswish-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-hardswish-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-hardswish-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-hardswish-noargs", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A3", - "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-dfn-throw%E2%91%A0%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-instancenorm", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization%E2%91%A1", "https://www.w3.org/TR/webnn/#dictdef-mlinstancenormalizationoptions", @@ -3197,18 +3166,18 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlinstancenormalizationoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlinstancenormalizationoptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlinstancenormalizationoptions", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-scale", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-scale", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-bias", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-epsilon", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-layout", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-instancenormalization", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-instancenormalization", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlinstancenormalizationoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-instancenormalization-input-options-options", @@ -3218,7 +3187,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlinstancenormalizationoptions-scale", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlinstancenormalizationoptions-scale", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlinstancenormalizationoptions-scale", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A5", "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-mloperand-shape%E2%91%A2%E2%91%A5", @@ -3227,7 +3196,7 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlinstancenormalizationoptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlinstancenormalizationoptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlinstancenormalizationoptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A6", "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-mloperand-shape%E2%91%A2%E2%91%A6", @@ -3243,35 +3212,36 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlinstancenormalizationoptions-layout", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlinstancenormalizationoptions-layout", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlinstancenormalizationoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlinstancenormalizationoptions%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-instancenormalization", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-instancenormalization", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-instancenormalization", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-instancenormalization", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-instancenormalization", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-scale%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-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-bias%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-scale%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-bias%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A7", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-layernorm", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-batchnormalization%E2%91%A2", @@ -3281,9 +3251,9 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mllayernormalizationoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mllayernormalizationoptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mllayernormalizationoptions", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-scale", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-scale", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A8", @@ -3291,10 +3261,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-epsilon", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-layernormalization", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-layernormalization-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllayernormalizationoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-layernormalization-input-options-options", @@ -3304,13 +3274,13 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllayernormalizationoptions-scale", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllayernormalizationoptions-scale", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllayernormalizationoptions-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-mloperand%E2%91%A1%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mllayernormalizationoptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllayernormalizationoptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllayernormalizationoptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllayernormalizationoptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllayernormalizationoptions-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-mloperand%E2%91%A1%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mllayernormalizationoptions-axes", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllayernormalizationoptions-axes", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllayernormalizationoptions-axes", @@ -3322,16 +3292,16 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllayernormalizationoptions-epsilon", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllayernormalizationoptions-epsilon", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllayernormalizationoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllayernormalizationoptions%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-layernormalization", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-layernormalization", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-layernormalization", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-layernormalization", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-layernormalization", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A6", "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%A4", @@ -3342,13 +3312,13 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A2", "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%A0%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A6", "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%A6", - "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-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A6", "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%A5", @@ -3356,27 +3326,28 @@ "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A7", - "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-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-scale%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-scale%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leakyrelu", "https://www.w3.org/TR/webnn/#dictdef-mlleakyreluoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlleakyreluoptions", @@ -3385,14 +3356,14 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlleakyreluoptions", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlleakyreluoptions-alpha", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-leakyrelu", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-leakyrelu", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlleakyreluoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-leakyrelu-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlleakyreluoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-options-options", @@ -3405,37 +3376,32 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leaky-relu-input-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-leakyrelu%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlleakyreluoptions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlleakyreluoptions%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-leakyrelu", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-leakyrelu", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-leakyrelu", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-leakyrelu", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-leaky-relu-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-leakyrelu-options%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlleakyreluoptions%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-leakyrelu-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-leakyrelu-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-leakyrelu-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-leakyrelu-options", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear", "https://www.w3.org/TR/webnn/#dictdef-mllinearoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mllinearoptions", @@ -3446,14 +3412,14 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mllinearoptions-alpha", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllinearoptions-beta", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-linear", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-linear", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllinearoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-linear-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllinearoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-options-options", @@ -3472,37 +3438,32 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear-input-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-linear%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllinearoptions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllinearoptions%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-linear", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-linear", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-linear", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-linear", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-linear-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-linear-options%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllinearoptions%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-linear-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-linear-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-linear-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-linear-options", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstm", "https://www.w3.org/TR/webnn/#enumdef-mllstmweightlayout", "https://www.w3.org/TR/webnn/#infopanel-for-enumdef-mllstmweightlayout", @@ -3520,15 +3481,15 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mllstmoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mllstmoptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mllstmoptions", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence", @@ -3537,17 +3498,17 @@ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mllstmweightlayout", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-layout", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-activations", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-weight", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-weight", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-recurrentweight", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A0", @@ -3563,33 +3524,33 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-layout%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mllstmoptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-recurrentbias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-layout%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mllstmoptions-peepholeweight", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-peepholeweight", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-peepholeweight", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-peepholeweight", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-peepholeweight", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mllstmoptions-initialhiddenstate", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-initialhiddenstate", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-initialhiddenstate", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-initialhiddenstate", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-initialhiddenstate", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mllstmoptions-initialcellstate", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-initialcellstate", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-initialcellstate", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-initialcellstate", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-initialcellstate", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mllstmoptions-returnsequence", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-returnsequence", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-returnsequence", @@ -3614,16 +3575,16 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-activations", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmoptions-activations", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmoptions-activations", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-layout%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-layout%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-layout%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmoptions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-lstm", @@ -3633,148 +3594,161 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-direction%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkdirection-forward", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A0", - "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-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A8", + "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%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A3", - "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-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A0", "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%A0%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A5", + "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%A0%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A6", + "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%A0%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%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/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A0", - "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-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%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-map-exists%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A2", + "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%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A3", + "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%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A8", "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%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A6", - "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%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A1", - "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%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-returnsequence%E2%91%A2", + "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%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-lstmcell", "https://www.w3.org/TR/webnn/#dictdef-mllstmcelloptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mllstmcelloptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mllstmcelloptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mllstmcelloptions", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mllstmcelloptions", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-bias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-bias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-peepholeweight", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mllstmweightlayout%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-layout", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-activations", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-weight", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-recurrentweight", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-weight", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-hiddenstate", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-recurrentweight", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-hiddenstate", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-cellstate", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A4", @@ -3787,21 +3761,21 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmcelloptions-bias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmcelloptions-bias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmcelloptions-bias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-layout%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mllstmcelloptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmcelloptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmcelloptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmcelloptions-recurrentbias", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmcelloptions-recurrentbias", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-layout%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mllstmcelloptions-peepholeweight", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmcelloptions-peepholeweight", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmcelloptions-peepholeweight", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmcelloptions-peepholeweight", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmcelloptions-peepholeweight", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mllstmcelloptions-layout", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmcelloptions-layout", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmcelloptions-layout", @@ -3813,90 +3787,94 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmcelloptions-activations", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mllstmcelloptions-activations", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mllstmcelloptions-activations", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmcelloptions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-lstmcell", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-lstmcell", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-lstmcell", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-lstmcell", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%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-map-exists%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A0", "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-mllstmcelloptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A5", - "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-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A1", "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-dom-mllstmcelloptions-recurrentbias%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A6", - "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-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A3", "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-dom-mllstmcelloptions-peepholeweight%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A2", "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%93%AA%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-peepholeweight%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A6", "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%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A3", "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%93%AA%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A6", + "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%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-bias%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-peepholeweight%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmweightlayout-iofg", "https://www.w3.org/TR/webnn/#ref-for-sigmoid-noargs%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-tanh-noargs%E2%91%A0", - "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul", + "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-matmul", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul-a-b-a", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-matmul", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul-a-b-b", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul-a-b-a", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul-a-b-b", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-matmul-output-sizes", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-calculate-matmul-output-sizes", @@ -3909,16 +3887,16 @@ "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%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-dfn-throw%E2%91%A1%E2%93%AA%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%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-remove", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-remove%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting-the-shapes%E2%91%A1", - "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-dfn-throw%E2%91%A0%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-append", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul", @@ -3926,24 +3904,18 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-matmul", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-matmul", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-matmul", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-matmul-output-sizes", - "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-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A6", - "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-operationerror%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%91%A7", + "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-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pad", "https://www.w3.org/TR/webnn/#enumdef-mlpaddingmode", "https://www.w3.org/TR/webnn/#infopanel-for-enumdef-mlpaddingmode", @@ -3967,10 +3939,10 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlpadoptions-mode", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpadoptions-value", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-input", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A2", @@ -3997,13 +3969,13 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpadoptions-mode%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpaddingmode-constant", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A0", "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%93%AA%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-padding-output-sizes", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-calculate-padding-output-sizes", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-calculate-padding-output-sizes", @@ -4020,22 +3992,17 @@ "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-mloperand-rank%E2%91%A4%E2%91%A2", - "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-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%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-padding-output-sizes", - "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-operationerror%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#example-0cdaa4c5", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d", "https://www.w3.org/TR/webnn/#enumdef-mlroundingtype", @@ -4082,22 +4049,22 @@ "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-averagepool2d", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-averagepool2d", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-averagepool2d-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpool2doptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-averagepool2d-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-l2pool2d", "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-dom-mlgraphbuilder-l2pool2d", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-l2pool2d-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpool2doptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-l2pool2d-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-maxpool2d", "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-dom-mlgraphbuilder-maxpool2d", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-maxpool2d-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpool2doptions%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-maxpool2d-input-options-options", @@ -4142,9 +4109,9 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlpool2doptions-outputsizes", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlpool2doptions-outputsizes", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-roundingtype%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpool2doptions%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpool2doptions%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlroundingtype-floor", "https://www.w3.org/TR/webnn/#ref-for-dom-mlroundingtype-ceil", "https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-pool2d-output-sizes", @@ -4174,64 +4141,61 @@ "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-pooling-op", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-pooling-op", "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpool2doptions%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-assert%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%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A2", "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%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A3", "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-mlpool2doptions-windowdimensions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-padding%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-map-exists%E2%91%A5%E2%93%AA", "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%A4", "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%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A4", "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-dom-mlpool2doptions-strides%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A0", "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%A5", "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%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A6", "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%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes%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-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A2", "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%A6", "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%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A1", + "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%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-pool2d-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-layout%E2%91%A0", @@ -4242,79 +4206,72 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A5", "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%A4", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-averagepool2d", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-averagepool2d", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-averagepool2d", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-averagepool2d", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-averagepool2d", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-pooling-op", - "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-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-l2pool2d", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-l2pool2d", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-l2pool2d", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-l2pool2d", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-l2pool2d", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-pooling-op%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-maxpool2d", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-maxpool2d", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-maxpool2d", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-maxpool2d", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-maxpool2d", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-pooling-op%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-average", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-l2", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-pool2d-max", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-prelu", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-prelu", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu-input-slope-input", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-prelu", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu-input-slope-slope", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu-input-slope-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu-input-slope-slope", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcastable%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcastable%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-prelu", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-prelu", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-prelu", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-prelu", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-unidirectionally-broadcasting-the-shapes%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reduce", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-axes", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions", @@ -4329,64 +4286,64 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-axes%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A0", - "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%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducel1", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducel1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducel2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducel2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel2-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel2-input-options-options", - "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-reducelogsum", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducelogsum", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsum-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsum-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducelogsumexp", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducelogsumexp", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsumexp-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsumexp-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducemax", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducemax", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemax-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemax-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducemean", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducemean", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemean-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemean-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducemin", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducemin", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemin-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemin-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reduceproduct", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reduceproduct", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reduceproduct-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reduceproduct-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducesum", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducesum", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesum-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesum-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducesumsquare", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reducesumsquare", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesumsquare-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesumsquare-input-options-options", @@ -4404,9 +4361,9 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlreduceoptions-keepdimensions", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-reduction-output-sizes", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-calculate-reduction-output-sizes", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-calculate-reduction-output-sizes", @@ -4431,154 +4388,144 @@ "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-reduce-op", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-reduce-op", "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlreduceoptions%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-axes%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A4", "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%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A2", "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%A5%E2%91%A4", "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%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel1", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducel1", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducel1", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducel1", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducel1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%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-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducel2", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducel2", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducel2", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducel2", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducel2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsum", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducelogsum", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducelogsum", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducelogsum", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducelogsum", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducelogsumexp", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducelogsumexp", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducelogsumexp", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducelogsumexp", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducelogsumexp", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op%E2%91%A2", - "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-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemax", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducemax", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducemax", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducemax", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducemax", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A1", - "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-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A7", + "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/#dom-mlgraphbuilder-reducemean", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducemean", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducemean", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducemean", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducemean", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op%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-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A4", + "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-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducemin", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducemin", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducemin", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducemin", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducemin", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A6", + "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-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reduceproduct", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reduceproduct", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reduceproduct", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reduceproduct", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reduceproduct", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesum", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducesum", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducesum", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducesum", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducesum", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reducesumsquare", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducesumsquare", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducesumsquare", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reducesumsquare", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reducesumsquare", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-reduce-op%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu-method", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-relu", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-relu", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu-input-input", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-relu-noargs%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu-input", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-relu%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-relu", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-relu", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-relu", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-relu", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-relu", "https://www.w3.org/TR/webnn/#ref-for-relu-noargs%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#relu-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-relu-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-relu-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-relu-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-relu-noargs", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A4", - "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-this%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-resample2d-method", "https://www.w3.org/TR/webnn/#enumdef-mlinterpolationmode", "https://www.w3.org/TR/webnn/#infopanel-for-enumdef-mlinterpolationmode", @@ -4605,16 +4552,16 @@ "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes", - "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%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-resample2d", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-resample2d", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-resample2d-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlresample2doptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-resample2d-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlresample2doptions%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlresample2doptions%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlresample2doptions%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlresample2doptions-mode", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlresample2doptions-mode", @@ -4645,28 +4592,28 @@ "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-check-resample-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-check-resample-options", "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%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A6", "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%A3%E2%91%A1", "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%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-resample-output-sizes", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-calculate-resample-output-sizes", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-calculate-resample-output-sizes", "https://www.w3.org/TR/webnn/#infopanel-for-mlgraphbuilder-calculate-resample-output-sizes", "https://www.w3.org/TR/webnn/#infopaneltitle-for-mlgraphbuilder-calculate-resample-output-sizes", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlresample2doptions%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A0%E2%93%AA", "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%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-dom-mlresample2doptions-sizes%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes%E2%91%A2", @@ -4680,37 +4627,32 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-resample2d", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-resample2d", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A6", - "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-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-check-resample-options", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-resample-output-sizes", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-reshape-method", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-input", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-newshape", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-nullable-type", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-reshape", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-reshape", @@ -4719,69 +4661,59 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%93%AA", + "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%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A0", + "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%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid-method", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sigmoid", + "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%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sigmoid", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sigmoid-input-input", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-sigmoid-noargs%E2%91%A2", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid-input", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-sigmoid%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sigmoid", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-sigmoid", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-sigmoid", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-sigmoid", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-sigmoid", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-sigmoid", "https://www.w3.org/TR/webnn/#ref-for-sigmoid-noargs%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#sigmoid-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-sigmoid-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-sigmoid-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-sigmoid-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-sigmoid-noargs", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A3", - "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-this%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-slice", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A0", "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-dom-mlgraphbuilder-slice", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-input", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A3", @@ -4791,77 +4723,67 @@ "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-sizes", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-slice", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-slice", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-slice", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-slice", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A4", - "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-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A7", "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-size%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%93%AA", - "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-dfn-throw%E2%91%A1%E2%91%A1%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-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax-method", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax", + "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%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax-input-input", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-softmax-noargs%E2%91%A0", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax-input", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-softmax", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-softmax", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-softmax", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-softmax", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%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-dfn-throw%E2%91%A1%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softmax", "https://www.w3.org/TR/webnn/#ref-for-softmax-noargs%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#softmax-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-softmax-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-softmax-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-softmax-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-softmax-noargs", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A0", - "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-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus-method", "https://www.w3.org/TR/webnn/#dictdef-mlsoftplusoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlsoftplusoptions", @@ -4870,14 +4792,14 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mlsoftplusoptions", "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlsoftplusoptions-steepness", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softplus", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softplus", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsoftplusoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-input-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softplus-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsoftplusoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-options-options", @@ -4890,76 +4812,66 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-float%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus-input-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softplus%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsoftplusoptions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsoftplusoptions%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-softplus", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-softplus", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-softplus", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-softplus", - "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-operationerror%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softplus-options", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softplus-options%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsoftplusoptions%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-softplus-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-softplus-options", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-softplus-options", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-softplus-options", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A1", - "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-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign-method", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softsign", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softsign", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign-input-input", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-softsign-noargs", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign-input", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softsign%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-softsign", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-softsign", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-softsign", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-softsign", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-softsign", "https://www.w3.org/TR/webnn/#ref-for-softsign-noargs%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#softsign-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-softsign-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-softsign-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-softsign-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-softsign-noargs", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%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-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split", "https://www.w3.org/TR/webnn/#dictdef-mlsplitoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mlsplitoptions", @@ -4969,11 +4881,11 @@ "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A5", "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-dom-mlsplitoptions-axis", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-input", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6", @@ -4983,13 +4895,13 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-splits", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-options", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitoptions%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A3", @@ -5008,65 +4920,62 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-split", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-split", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-split", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlsplitoptions-axis%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlsplitoptions-axis%E2%91%A0", - "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-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A6", "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-idl-unsigned-long%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlsplitoptions-axis%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A7", "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-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A7", + "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%A6", + "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%91%A6", + "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-mloperand-shape%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-list-append%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh-method", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-tanh", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-tanh", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh-input-input", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-tanh-noargs%E2%91%A1", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh-input", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-tanh%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-tanh", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-tanh", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-tanh", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-tanh", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-tanh", "https://www.w3.org/TR/webnn/#ref-for-tanh-noargs%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlactivation%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#tanh-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-tanh-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-tanh-noargs", "https://www.w3.org/TR/webnn/#infopanel-for-tanh-noargs", "https://www.w3.org/TR/webnn/#infopaneltitle-for-tanh-noargs", "https://www.w3.org/TR/webnn/#ref-for-create-an-mlactivation%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A2%E2%91%A8", + "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/#api-mlgraphbuilder-transpose", "https://www.w3.org/TR/webnn/#dictdef-mltransposeoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mltransposeoptions", @@ -5075,12 +4984,12 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dictdef-mltransposeoptions", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%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-idl-unsigned-long%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-transpose", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-transpose", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltransposeoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose-input-options-options", @@ -5092,43 +5001,38 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mltransposeoptions-permutation", "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%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltransposeoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltransposeoptions%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-transpose", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-transpose", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-transpose", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-transpose", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A3", "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%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A4", "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%A1%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A0", "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-dom-mltransposeoptions-permutation%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A2", "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%A1%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A6", + "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%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-triangular", "https://www.w3.org/TR/webnn/#dictdef-mltriangularoptions", "https://www.w3.org/TR/webnn/#infopanel-for-dictdef-mltriangularoptions", @@ -5140,10 +5044,10 @@ "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-long", "https://www.w3.org/TR/webnn/#ref-for-dom-mltriangularoptions-diagonal", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-triangular", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%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-dom-mlgraphbuilder-triangular", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltriangularoptions", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular-input-options-options", @@ -5160,83 +5064,72 @@ "https://www.w3.org/TR/webnn/#infopanel-for-dom-mltriangularoptions-diagonal", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mltriangularoptions-diagonal", "https://www.w3.org/TR/webnn/#ref-for-idl-long%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltriangularoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mltriangularoptions%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-triangular", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-triangular", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-triangular", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-triangular", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A8", + "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%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-operationerror%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#example-c029a3ee", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-where", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where-condition-input-other-condition", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-where", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where-condition-input-other-input", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where-condition-input-other-condition", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where-condition-input-other-other", + "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where-condition-input-other-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-where-condition-input-other-other", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-where", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-where", "https://www.w3.org/TR/webnn/#infopanel-for-dom-mlgraphbuilder-where", "https://www.w3.org/TR/webnn/#infopaneltitle-for-dom-mlgraphbuilder-where", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcasting-the-shapes%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcastable", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%93%AA", - "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-operationerror%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-platform-operator%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-platform-operand%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operand-slot%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-operator-input%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-operator-output%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#algorithms", "https://www.w3.org/TR/webnn/#algorithms-broadcasting", "https://www.w3.org/TR/webnn/#unidirectionally-broadcasting-the-shapes", @@ -5244,17 +5137,17 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-unidirectionally-broadcasting-the-shapes", "https://www.w3.org/TR/webnn/#infopanel-for-unidirectionally-broadcasting-the-shapes", "https://www.w3.org/TR/webnn/#infopaneltitle-for-unidirectionally-broadcasting-the-shapes", - "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A5", - "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%E2%91%A3%E2%91%A6", "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-clone%E2%91%A7", "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-clone%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-prepend", - "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-list-append%E2%91%A1", + "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%A7", + "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-list-append%E2%91%A2", "https://www.w3.org/TR/webnn/#unidirectionally-broadcastable", "https://www.w3.org/TR/webnn/#infopanel-for-unidirectionally-broadcastable", "https://www.w3.org/TR/webnn/#infopaneltitle-for-unidirectionally-broadcastable", @@ -5266,20 +5159,20 @@ "https://www.w3.org/TR/webnn/#infopaneltitle-for-bidirectionally-broadcasting-the-shapes", "https://www.w3.org/TR/webnn/#infopanel-for-bidirectionally-broadcasting-the-shapes", "https://www.w3.org/TR/webnn/#infopaneltitle-for-bidirectionally-broadcasting-the-shapes", - "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A3", + "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%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A6", "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%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A4%E2%91%A7", "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%93%AA", - "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%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-list-append%E2%91%A2", + "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%A8", + "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-list-append%E2%91%A3", "https://www.w3.org/TR/webnn/#bidirectionally-broadcastable", "https://www.w3.org/TR/webnn/#infopanel-for-bidirectionally-broadcastable", "https://www.w3.org/TR/webnn/#infopaneltitle-for-bidirectionally-broadcastable", diff --git a/tr/index.json b/tr/index.json index c676594fc457..87325832fc41 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-03-12T01:21:25.572Z", + "date": "2024-03-13T01:23:17.984Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -685,7 +685,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "12 March 2024" + "date": "13 March 2024" }, { "url": "https://www.w3.org/TR/accelerometer/", @@ -7817,11 +7817,11 @@ ], "crawled": "https://www.w3.org/TR/css-values-4/", "crawlCacheInfo": { - "lastModified": "Mon, 18 Dec 2023 23:54:11 GMT" + "lastModified": "Tue, 12 Mar 2024 21:15:41 GMT" }, "generator": "bikeshed", - "date": "18 December 2023", - "revision": "38b702a93351a13acf3282b72c439a7cc4d5e30a", + "date": "12 March 2024", + "revision": "abc5bdd1d65640e9d7d1449fefa3aa78e40bcf43", "links": "links/css-values-4.json", "refs": "refs/css-values-4.json", "css": "css/css-values.json", @@ -8744,11 +8744,11 @@ ], "crawled": "https://www.w3.org/TR/device-posture/", "crawlCacheInfo": { - "lastModified": "Mon, 11 Mar 2024 21:01:44 GMT" + "lastModified": "Tue, 12 Mar 2024 16:45:27 GMT" }, "generator": "respec", - "date": "11 March 2024", - "revision": "059b94ab3f8045c912bfcb434bf2440aeb84e0ec", + "date": "12 March 2024", + "revision": "e6378085c3fde0ba4f3e3493b44b396579fa5ecf", "links": "links/device-posture.json", "refs": "refs/device-posture.json", "events": "events/device-posture.json", @@ -18048,11 +18048,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-aac-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:22:03 GMT" + "lastModified": "Tue, 12 Mar 2024 10:44:13 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-aac-codec-registration.json", "refs": "refs/webcodecs-aac-codec-registration.json", "idl": "idl/webcodecs-aac-codec-registration.idl", @@ -18105,11 +18105,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-alaw-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:34:35 GMT" + "lastModified": "Tue, 12 Mar 2024 10:55:21 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-alaw-codec-registration.json", "refs": "refs/webcodecs-alaw-codec-registration.json", "headings": "headings/webcodecs-alaw-codec-registration.json", @@ -18160,11 +18160,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-av1-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:27:12 GMT" + "lastModified": "Tue, 12 Mar 2024 10:48:57 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-av1-codec-registration.json", "refs": "refs/webcodecs-av1-codec-registration.json", "idl": "idl/webcodecs-av1-codec-registration.idl", @@ -18217,11 +18217,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-avc-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:16:56 GMT" + "lastModified": "Tue, 12 Mar 2024 10:39:30 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-avc-codec-registration.json", "refs": "refs/webcodecs-avc-codec-registration.json", "idl": "idl/webcodecs-avc-codec-registration.idl", @@ -18274,11 +18274,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-codec-registry/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:15:06 GMT" + "lastModified": "Tue, 12 Mar 2024 10:37:45 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-codec-registry.json", "refs": "refs/webcodecs-codec-registry.json", "headings": "headings/webcodecs-codec-registry.json", @@ -18329,11 +18329,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-flac-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:23:56 GMT" + "lastModified": "Tue, 12 Mar 2024 10:45:52 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-flac-codec-registration.json", "refs": "refs/webcodecs-flac-codec-registration.json", "idl": "idl/webcodecs-flac-codec-registration.idl", @@ -18386,11 +18386,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-hevc-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:38:28 GMT" + "lastModified": "Tue, 12 Mar 2024 10:58:42 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-hevc-codec-registration.json", "refs": "refs/webcodecs-hevc-codec-registration.json", "idl": "idl/webcodecs-hevc-codec-registration.idl", @@ -18443,11 +18443,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-mp3-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:20:17 GMT" + "lastModified": "Tue, 12 Mar 2024 10:42:33 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-mp3-codec-registration.json", "refs": "refs/webcodecs-mp3-codec-registration.json", "headings": "headings/webcodecs-mp3-codec-registration.json", @@ -18498,11 +18498,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-opus-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:25:41 GMT" + "lastModified": "Tue, 12 Mar 2024 10:47:17 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-opus-codec-registration.json", "refs": "refs/webcodecs-opus-codec-registration.json", "idl": "idl/webcodecs-opus-codec-registration.idl", @@ -18555,11 +18555,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-pcm-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:32:51 GMT" + "lastModified": "Tue, 12 Mar 2024 10:53:43 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-pcm-codec-registration.json", "refs": "refs/webcodecs-pcm-codec-registration.json", "headings": "headings/webcodecs-pcm-codec-registration.json", @@ -18610,11 +18610,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-ulaw-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:36:23 GMT" + "lastModified": "Tue, 12 Mar 2024 10:56:46 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-ulaw-codec-registration.json", "refs": "refs/webcodecs-ulaw-codec-registration.json", "headings": "headings/webcodecs-ulaw-codec-registration.json", @@ -18665,11 +18665,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-vorbis-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:18:33 GMT" + "lastModified": "Tue, 12 Mar 2024 10:40:53 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-vorbis-codec-registration.json", "refs": "refs/webcodecs-vorbis-codec-registration.json", "headings": "headings/webcodecs-vorbis-codec-registration.json", @@ -18720,11 +18720,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-vp8-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:31:06 GMT" + "lastModified": "Tue, 12 Mar 2024 10:52:06 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-vp8-codec-registration.json", "refs": "refs/webcodecs-vp8-codec-registration.json", "headings": "headings/webcodecs-vp8-codec-registration.json", @@ -18775,11 +18775,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs-vp9-codec-registration/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:29:06 GMT" + "lastModified": "Tue, 12 Mar 2024 10:50:27 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs-vp9-codec-registration.json", "refs": "refs/webcodecs-vp9-codec-registration.json", "idl": "idl/webcodecs-vp9-codec-registration.idl", @@ -18838,11 +18838,11 @@ ], "crawled": "https://www.w3.org/TR/webcodecs/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Feb 2024 17:13:21 GMT" + "lastModified": "Tue, 12 Mar 2024 10:36:02 GMT" }, "generator": "bikeshed", - "date": "29 February 2024", - "revision": "d5a4ed2934b3c7249c31d6fae486c7049aa62fad", + "date": "12 March 2024", + "revision": "c97f2989c9bd3e9bbca9b5a0f96a3ef029e7d7a0", "links": "links/webcodecs.json", "refs": "refs/webcodecs.json", "events": "events/webcodecs.json", @@ -19154,11 +19154,11 @@ ], "crawled": "https://www.w3.org/TR/webnn/", "crawlCacheInfo": { - "lastModified": "Fri, 08 Mar 2024 09:19:08 GMT" + "lastModified": "Tue, 12 Mar 2024 23:21:43 GMT" }, "generator": "bikeshed", - "date": "8 March 2024", - "revision": "28c1a6ea5a5518eadec51cf580263b7787606323", + "date": "12 March 2024", + "revision": "1d1b531ad869c5544e5d783ec63ea194654a5032", "links": "links/webnn.json", "refs": "refs/webnn.json", "idl": "idl/webnn.idl", diff --git a/tr/links/css-values-4.json b/tr/links/css-values-4.json index d6064c6f52da..b54f22790630 100644 --- a/tr/links/css-values-4.json +++ b/tr/links/css-values-4.json @@ -41,13 +41,6 @@ ], "specShortname": "css-typed-om-1" }, - "https://drafts.csswg.org/css-color-5/": { - "anchors": [ - "typedef-color", - "typedef-absolute-color-function" - ], - "specShortname": "css-color-5" - }, "https://drafts.csswg.org/css-scoping-1/": { "anchors": [ "css-tree-scoped-reference", @@ -91,11 +84,7 @@ }, "https://github.com/sass/sass/issues/684": {}, "https://github.com/w3c/csswg-drafts/issues": {}, - "https://github.com/w3c/csswg-drafts/issues/1766": { - "anchors": [ - "issuecomment-460470368" - ] - }, + "https://github.com/w3c/csswg-drafts/issues/10017": {}, "https://github.com/w3c/csswg-drafts/issues/2274": {}, "https://github.com/w3c/csswg-drafts/issues/2921": {}, "https://github.com/w3c/csswg-drafts/issues/3257": {}, @@ -108,6 +97,7 @@ "https://github.com/w3c/csswg-drafts/issues/5689": {}, "https://github.com/w3c/csswg-drafts/issues/5728": {}, "https://github.com/w3c/csswg-drafts/issues/5858": {}, + "https://github.com/w3c/csswg-drafts/issues/6026": {}, "https://github.com/w3c/csswg-drafts/issues/6097": {}, "https://github.com/w3c/csswg-drafts/issues/6100": {}, "https://github.com/w3c/csswg-drafts/issues/6105": {}, @@ -135,6 +125,8 @@ "https://github.com/w3c/csswg-drafts/issues/9301": {}, "https://github.com/w3c/csswg-drafts/issues/9343": {}, "https://github.com/w3c/csswg-drafts/issues/9559": {}, + "https://github.com/w3c/csswg-drafts/issues/9668": {}, + "https://github.com/w3c/csswg-drafts/issues/9713": {}, "https://github.com/w3c/csswg-drafts/issues/new": {}, "https://github.com/w3c/csswg-drafts/pull/7160": {}, "https://github.com/whatwg/fetch/pull/1413": {}, @@ -144,6 +136,11 @@ "find-a-potential-indicated-element" ] }, + "https://html.spec.whatwg.org/multipage/dom.html": { + "anchors": [ + "the-body-element-2" + ] + }, "https://html.spec.whatwg.org/multipage/semantics.html": { "anchors": [ "the-base-element" @@ -213,6 +210,7 @@ "https://www.w3.org/TR/2022/WD-css-values-4-20221019/": {}, "https://www.w3.org/TR/2023/WD-css-values-4-20230406/": {}, "https://www.w3.org/TR/2023/WD-css-values-4-20231027/": {}, + "https://www.w3.org/TR/2023/WD-css-values-4-20231218/": {}, "https://www.w3.org/TR/CSS/": { "anchors": [ "future-proofing", @@ -360,6 +358,7 @@ }, "https://www.w3.org/TR/css-color-4/": { "anchors": [ + "funcdef-hsl", "interpolation", "interpolation-alpha", "funcdef-rgba", @@ -370,7 +369,7 @@ "https://www.w3.org/TR/css-color-5/": { "anchors": [ "at-ruledef-profile", - "funcdef-hsl", + "typedef-color", "relative-color" ], "specShortname": "css-color-5" @@ -391,7 +390,8 @@ "https://www.w3.org/TR/css-display-3/": { "anchors": [ "containing-block", - "initial-containing-block" + "initial-containing-block", + "root-element" ], "specShortname": "css-display-3" }, @@ -457,6 +457,13 @@ ], "specShortname": "css-masking-1" }, + "https://www.w3.org/TR/css-overflow-3/": { + "anchors": [ + "propdef-overflow", + "propdef-scrollbar-gutter" + ], + "specShortname": "css-overflow-3" + }, "https://www.w3.org/TR/css-overflow-4/": { "anchors": [ "propdef-max-lines" diff --git a/tr/links/device-posture.json b/tr/links/device-posture.json index 967a38250037..e644c623259c 100644 --- a/tr/links/device-posture.json +++ b/tr/links/device-posture.json @@ -47,7 +47,8 @@ }, "https://html.spec.whatwg.org/multipage/nav-history-apis.html": { "anchors": [ - "concept-document-window" + "concept-document-window", + "window" ] }, "https://html.spec.whatwg.org/multipage/system-state.html": { @@ -109,6 +110,7 @@ ], "specShortname": "screen-orientation" }, + "https://www.w3.org/WAI/WCAG21/Understanding/orientation.html": {}, "https://www.w3.org/groups/wg/das": {}, "https://www.w3.org/groups/wg/das/ipr": {} } diff --git a/tr/links/webcodecs.json b/tr/links/webcodecs.json index 332568f472c7..51d32f70cc36 100644 --- a/tr/links/webcodecs.json +++ b/tr/links/webcodecs.json @@ -163,6 +163,7 @@ "idl-boolean", "idl-DOMString", "EnforceRange", + "buffersource-detached", "AllowSharedBufferSource", "idl-unsigned-long-long", "idl-double", diff --git a/tr/links/webnn.json b/tr/links/webnn.json index 6dc26687ac14..46e4cfd0e7ac 100644 --- a/tr/links/webnn.json +++ b/tr/links/webnn.json @@ -62,6 +62,7 @@ "https://github.com/webmachinelearning/webnn/issues": {}, "https://github.com/webmachinelearning/webnn/issues/373": {}, "https://github.com/webmachinelearning/webnn/issues/375": {}, + "https://github.com/webmachinelearning/webnn/issues/448": {}, "https://github.com/webmachinelearning/webnn/issues/456": {}, "https://github.com/webmachinelearning/webnn/issues/482": {}, "https://github.com/webmachinelearning/webnn/issues/552": {}, @@ -116,13 +117,13 @@ }, "https://infra.spec.whatwg.org/": { "anchors": [ - "implementation-defined", "map-exists", "ordered-map", "map-iterate", "list-iterate", "list-size", "string", + "implementation-defined", "list", "the-range", "assert", diff --git a/tr/refs/css-values-4.json b/tr/refs/css-values-4.json index fc6d050ca582..93a33fb87bce 100644 --- a/tr/refs/css-values-4.json +++ b/tr/refs/css-values-4.json @@ -65,6 +65,10 @@ "name": "CSS-MASKING-1", "url": "https://www.w3.org/TR/css-masking-1/" }, + { + "name": "CSS-OVERFLOW-3", + "url": "https://www.w3.org/TR/css-overflow-3/" + }, { "name": "CSS-PAGE-3", "url": "https://www.w3.org/TR/css-page-3/"