diff --git a/tr/algorithms/credential-management-1.json b/tr/algorithms/credential-management-1.json index 638e2d2876fd..473a2e2dcc9a 100644 --- a/tr/algorithms/credential-management-1.json +++ b/tr/algorithms/credential-management-1.json @@ -137,7 +137,7 @@ "html": "

Let credentialInterfaceObject be the Appropriate Interface Object (on settingsglobal object) whose Options Member Identifier is optionKey.

" }, { - "html": "

Assert: credentialInterfaceObject’s [[type]] slot equals the Credential Type whose Options Member\n Identifier is optionKey.

" + "html": "

Assert: credentialInterfaceObject’s [[type]] slot equals the Credential Type whose Options Member\n Identifier is optionKey.

" }, { "html": "

Append credentialInterfaceObject to relevant interface objects.

" @@ -182,7 +182,10 @@ "html": "

Assert: settings is a secure context.

" }, { - "html": "

If settings’s relevant global object's associated Document is not fully active,\n then return a promise rejected with \"NotAllowedError\" DOMException.

" + "html": "

Let document be settings’s relevant global object's associated Document.

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

If document is not fully active, then return a promise rejected with \"NotAllowedError\" DOMException.

" }, { "html": "

If options.signal is aborted,\n then return a promise rejected with options.signal’s abort reason.

" @@ -202,9 +205,6 @@ } ] }, - { - "html": "

Let p be a new promise.

" - }, { "html": "For each interface in optionsrelevant credential interface objects:", "rationale": "if", @@ -230,10 +230,22 @@ "html": "

Let sameOriginWithAncestors be true if settings is same-origin with its\n ancestors, and false otherwise.

" }, { - "html": "

If options[identity] exists and\n if settingsrelevant global object's associated Document is not allowed to use the identity-credentials-get policy-controlled feature return a promise rejected with a \"NotAllowedError\" DOMException.

" + "html": "For each interface in optionsrelevant credential interface objects:", + "rationale": "let", + "steps": [ + { + "html": "

Let permission be the interface’s [[type]] Get Permissions Policy.

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

If permission is null, continue.

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

If document is not allowed to use permission, return a promise rejected with a \"NotAllowedError\" DOMException.

" + } + ] }, { - "html": "

If options[publicKey] exists and\n if settingsrelevant global object's associated Document is not allowed to use the publickey-credentials-get policy-controlled feature return a promise rejected with a \"NotAllowedError\" DOMException.

" + "html": "

Let p be a new promise.

" }, { "html": "Run the following steps in parallel:", @@ -300,11 +312,11 @@ "rationale": "for", "steps": [ { - "html": "For each interface in optionsrelevant credential interface objects:", + "html": "For each interface in optionsrelevant credential interface objects:", "rationale": "remove", "steps": [ { - "html": "

Remove interface’s [[type]] from settingsactive credential types.

" + "html": "

Remove interface’s [[type]] from settingsactive credential types.

" } ] } @@ -325,7 +337,7 @@ "html": "

Let possible matches be an empty set.

" }, { - "html": "For each interface in optionsrelevant credential interface objects:", + "html": "For each interface in optionsrelevant credential interface objects:", "rationale": "let", "steps": [ { @@ -363,7 +375,7 @@ "html": "

Assert: settings is a secure context.

" }, { - "html": "

If settings’s relevant global object's associated Document is not fully active,\n then return a promise rejected with \"NotAllowedError\" DOMException.

" + "html": "

If settings’s relevant global object's associated Document is not fully active,\n then return a promise rejected with \"NotAllowedError\" DOMException.

" }, { "html": "

Let sameOriginWithAncestors be true if the current settings object is same-origin\n with its ancestors, and false otherwise.

" @@ -372,10 +384,10 @@ "html": "

Let p be a new promise.

" }, { - "html": "

If settingsactive credential types contains credential’s [[type]], return a promise rejected with a \"NotAllowedError\" DOMException.

" + "html": "

If settingsactive credential types contains credential’s [[type]], return a promise rejected with a \"NotAllowedError\" DOMException.

" }, { - "html": "

Append credential’s [[type]] to settingsactive credential types.

" + "html": "

Append credential’s [[type]] to settingsactive credential types.

" }, { "html": "Run the following steps in parallel:", @@ -406,7 +418,7 @@ "rationale": "remove", "steps": [ { - "html": "

Remove credential’s [[type]] from settingsactive credential types.

" + "html": "

Remove credential’s [[type]] from settingsactive credential types.

" } ] }, @@ -431,34 +443,49 @@ "html": "

Let global be settingsglobal object.

" }, { - "html": "

If settings’s relevant global object's associated Document is not fully active,\n then return a promise rejected with \"NotAllowedError\" DOMException.

" + "html": "

Let document be the relevant global object's associated Document.

" }, { - "html": "

Let sameOriginWithAncestors be true if the current settings object is same-origin\n with its ancestors, and false otherwise.

" + "html": "

If document is not fully active, then return a promise rejected with \"NotAllowedError\" DOMException.

" }, { - "html": "

If options[publicKey] exists and\n if settingsrelevant global object's associated Document is not allowed to use the publickey-credentials-create policy-controlled feature return a promise rejected with a \"NotAllowedError\" DOMException.

" + "html": "

Let sameOriginWithAncestors be true if the current settings object is same-origin\n with its ancestors, and false otherwise.

" }, { - "html": "

Let interfaces be the set of optionsrelevant credential interface objects.

" + "html": "

Let interfaces be the set of optionsrelevant credential interface objects.

" }, { - "html": "

Return a promise rejected with NotSupportedError if any of the following statements\n are true:

", + "html": "

Return a promise rejected with NotSupportedError if any of the following statements\n are true:

", "ignored": [ "global does not have an associated Document. interfaces’ size is greater than 1." ] }, { - "html": "

If options.signal is aborted,\n then return a promise rejected with options.signal’s abort reason.

" + "html": "For each interface in interfaces:", + "rationale": "let", + "steps": [ + { + "html": "

Let permission be the interface’s [[type]] Create Permissions Policy.

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

If permission is null, continue.

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

If document is not allowed to use permission, return a promise rejected with a \"NotAllowedError\" DOMException.

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

If options.signal is aborted,\n then return a promise rejected with options.signal’s abort reason.

" }, { "html": "

Let p be a new promise.

" }, { - "html": "

Let type be interfaces[0]'s [[type]].

" + "html": "

Let type be interfaces[0]'s [[type]].

" }, { - "html": "

If settingsactive credential types contains type, return a promise rejected with a \"NotAllowedError\" DOMException.

" + "html": "

If settingsactive credential types contains type, return a promise rejected with a \"NotAllowedError\" DOMException.

" }, { "html": "

Append type to settingsactive credential types.

" @@ -532,7 +559,7 @@ "html": "

Let origin be settingsorigin.

" }, { - "html": "

If settings’s relevant global object's associated Document is not fully active,\n then return a promise rejected with \"NotAllowedError\" DOMException.

" + "html": "

If settings’s relevant global object's associated Document is not fully active,\n then return a promise rejected with \"NotAllowedError\" DOMException.

" }, { "html": "

Let p be a new promise

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

Assert: options[\"password\"] exists.

" + "html": "

Assert: options[\"password\"] exists.

" }, { - "html": "

If sameOriginWithAncestors is false, throw a \"NotAllowedError\" DOMException.

" + "html": "

If sameOriginWithAncestors is false, throw a \"NotAllowedError\" DOMException.

" }, { "html": "

Return the empty set if options[\"password\"] is not true.

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

Assert: options[\"password\"] exists, and sameOriginWithAncestors is unused.

" + "html": "

Assert: options[\"password\"] exists, and sameOriginWithAncestors is unused.

" }, { "html": "

If options[\"password\"] is an HTMLFormElement, return the\n result of executing Create a PasswordCredential from an HTMLFormElement given options[\"password\"] and origin.\n Rethrow any exceptions.

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

Throw a \"NotAllowedError\" DOMException without altering the user agent’s credential store if sameOriginWithAncestors is false.

" + "html": "

Throw a \"NotAllowedError\" DOMException without altering the user agent’s credential store if sameOriginWithAncestors is false.

" }, { "html": "If the user agent’s credential store contains a PasswordCredential (stored)\n whose id attribute is credential’s id and whose [[origin]] slot is the same origin as credential’s [[origin]],\n then:", @@ -782,10 +809,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Assert: options[\"federated\"] exists.

" + "html": "

Assert: options[\"federated\"] exists.

" }, { - "html": "

If sameOriginWithAncestors is false, throw a \"NotAllowedError\" DOMException.

" + "html": "

If sameOriginWithAncestors is false, throw a \"NotAllowedError\" DOMException.

" }, { "html": "

Return the empty set if options[\"federated\"] is not true.

" @@ -801,10 +828,10 @@ "html": "

The credential’s [[origin]] is the same origin as origin.

" }, { - "html": "

If options[\"federated\"][\"providers\"] exists, its value contains the credentials’s provider.

" + "html": "

If options[\"federated\"][\"providers\"] exists, its value contains the credentials’s provider.

" }, { - "html": "

If options[\"federated\"][\"protocols\"] exists, its value contains the credentials’s protocol.

" + "html": "

If options[\"federated\"][\"protocols\"] exists, its value contains the credentials’s protocol.

" } ] } @@ -817,7 +844,7 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Assert: options[\"federated\"] exists, and sameOriginWithAncestors is unused.

" + "html": "

Assert: options[\"federated\"] exists, and sameOriginWithAncestors is unused.

" }, { "html": "

Set options[\"federated\"]'s origin member’s value to origin’s value.

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

Throw a \"NotAllowedError\" DOMException without altering the user agent’s credential store if sameOriginWithAncestors is false.

" + "html": "

Throw a \"NotAllowedError\" DOMException without altering the user agent’s credential store if sameOriginWithAncestors is false.

" }, { "html": "

If the user agent’s credential store contains a FederatedCredential whose id attribute is credential’s id and whose [[origin]] slot is the same origin as credential’s [[origin]], and\n whose provider is credential’s provider, then return.

" diff --git a/tr/algorithms/webnn.json b/tr/algorithms/webnn.json index 55b52e81dde8..65fdefa11c8a 100644 --- a/tr/algorithms/webnn.json +++ b/tr/algorithms/webnn.json @@ -697,13 +697,16 @@ "html": "

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

" }, { - "html": "

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

" + "html": "

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

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

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

" }, { "html": "

Let desc be a new MLOperandDescriptor.

" }, { - "html": "

Set desc.dataType to \"int64\".

" + "html": "

Set desc.dataType to options.outputDataType.

" }, { "html": "

Set desc.dimensions to outputShape.

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

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -765,7 +768,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -780,28 +783,28 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If mean’s shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" + "html": "

If mean’s shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If variance’s shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" + "html": "

If variance’s shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" }, { "html": "

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

" @@ -811,10 +814,10 @@ "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" + "html": "

If its shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" + "html": "

If its shape is not equal to « input’s shape[options.axis] », then throw a TypeError.

" } ] }, @@ -868,10 +871,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "Make graph connections:", @@ -905,10 +908,10 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let minValue be the options.minValue if given, or Infinity otherwise.

" @@ -923,7 +926,7 @@ "html": "

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

" }, { - "html": "

If options.minValue is greater than options.maxValue, then throw a TypeError.

" + "html": "

If options.minValue is greater than options.maxValue, then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -957,19 +960,19 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If inputs is empty, then throw a TypeError.

" + "html": "

If inputs is empty, then throw a TypeError.

" }, { "html": "

Let first be inputs[0].

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let desc be a new MLOperandDescriptor.

" @@ -978,10 +981,10 @@ "html": "

Set desc.dataType to first’s dataType.

" }, { - "html": "

Set desc.dimensions to a clone of first’s shape.

" + "html": "

Set desc.dimensions to a clone of first’s shape.

" }, { - "html": "

Set desc.dimensions[axis] to first’s shape[axis].

" + "html": "

Set desc.dimensions[axis] to first’s shape[axis].

" }, { "html": "For each index in the range 1 to inputs’s size, exclusive:", @@ -991,27 +994,27 @@ "html": "

Let input be inputs[index].

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

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

If dim is not equal to axis and if input’s shape[dim] is not equal to first’s shape[dim], then throw a TypeError.

" + "html": "

If dim is not equal to axis and if input’s shape[dim] is not equal to first’s shape[dim], then throw a TypeError.

" }, { "html": "If dim is equal to axis:", "rationale": "let", "steps": [ { - "html": "

Let size be the sum of desc.dimensions[axis] and input’s shape[dim].

" + "html": "

Let size be the sum of desc.dimensions[axis] and input’s shape[dim].

" }, { - "html": "

If size is not a valid dimension, then throw a TypeError.

" + "html": "

If size is not a valid dimension, then throw a TypeError.

" }, { "html": "

Set desc.dimensions[axis] to size.

" @@ -1086,56 +1089,56 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

If options.padding does not exist, set it to the list « 0, 0, 0, 0 ».

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If any element in options.strides is equal to 0, then throw a TypeError.

" + "html": "

If any element in options.strides is equal to 0, then throw a TypeError.

" }, { "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If any element in options.dilations is equal to 0, then throw a TypeError.

" + "html": "

If any element in options.dilations is equal to 0, then throw a TypeError.

" }, { - "html": "

If options.groups is 0, then throw a TypeError.

" + "html": "

If options.groups is 0, then throw a TypeError.

" }, { "html": "Calculate the output shape:", "rationale": "let", "steps": [ { - "html": "

Let inputShape be input’s shape.

" + "html": "

Let inputShape be input’s shape.

" }, { "html": "Switch on options.inputLayout:", @@ -1187,7 +1190,7 @@ ] }, { - "html": "

Let filterShape be filter’s shape.

" + "html": "

Let filterShape be filter’s shape.

" }, { "html": "Switch on options.filterLayout:", @@ -1277,20 +1280,20 @@ ] }, { - "html": "

If inputChannels % options.groups is not 0, then throw a TypeError.

" + "html": "

If inputChannels % options.groups is not 0, then throw a TypeError.

" }, { - "html": "

Otherwise, if inputChannels / options.groups is not equal to filterInputChannels, then throw a TypeError.

" + "html": "

Otherwise, if inputChannels / options.groups is not equal to filterInputChannels, then throw a TypeError.

" }, { "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

If its shape is not equal to « outputChannels », then throw a TypeError.

" + "html": "

If its shape is not equal to « outputChannels », then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" } ] }, @@ -1317,7 +1320,7 @@ ] }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let desc be a new MLOperandDescriptor.

" @@ -1397,59 +1400,59 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

If options.padding does not exist, set it to the list « 0, 0, 0, 0 ».

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If any element in options.strides is equal to 0, then throw a TypeError.

" + "html": "

If any element in options.strides is equal to 0, then throw a TypeError.

" }, { "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If any element in options.dilations is equal to 0, then throw a TypeError.

" + "html": "

If any element in options.dilations is equal to 0, then throw a TypeError.

" }, { "html": "

If options.outputPadding does not exist, set it to the list « 0, 0 ».

" }, { - "html": "

Otherwise, if options.outputPadding's size is not 2, then throw a TypeError.

" + "html": "

Otherwise, if options.outputPadding's size is not 2, then throw a TypeError.

" }, { "html": "If options.outputSizes exists:", "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" } ] }, @@ -1458,19 +1461,19 @@ "rationale": "if", "steps": [ { - "html": "

If options.outputPadding[0] is greater than or equal to options.strides[0], or options.outputPadding[1] is greater than or equal to options.strides[1], then throw a TypeError.

" + "html": "

If options.outputPadding[0] is greater than or equal to options.strides[0], or options.outputPadding[1] is greater than or equal to options.strides[1], then throw a TypeError.

" } ] }, { - "html": "

If options.groups is 0, then throw a TypeError.

" + "html": "

If options.groups is 0, then throw a TypeError.

" }, { "html": "Calculate the output shape:", "rationale": "let", "steps": [ { - "html": "

Let inputShape be input’s shape.

" + "html": "

Let inputShape be input’s shape.

" }, { "html": "Switch on options.inputLayout:", @@ -1522,7 +1525,7 @@ ] }, { - "html": "

Let filterShape be filter’s shape.

" + "html": "

Let filterShape be filter’s shape.

" }, { "html": "Switch on options.filterLayout:", @@ -1593,7 +1596,7 @@ ] }, { - "html": "

If inputChannels is not equal to filterInputChannels, then throw a TypeError.

" + "html": "

If inputChannels is not equal to filterInputChannels, then throw a TypeError.

" }, { "html": "

Let outputChannels be filterOutputChannels * options.groups.

" @@ -1603,10 +1606,10 @@ "rationale": "if", "steps": [ { - "html": "

If its shape is not equal to « outputChannels », then throw a TypeError.

" + "html": "

If its shape is not equal to « outputChannels », then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" } ] }, @@ -1636,7 +1639,7 @@ ] }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let desc be a new MLOperandDescriptor.

" @@ -1687,13 +1690,13 @@ "html": "

Assert: op is one of \"add\", \"sub\", \"mul\", \"div\", \"max\", \"min\", \"pow\".

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let descriptor be a new MLOperandDescriptor.

" @@ -1702,11 +1705,11 @@ "html": "

Set descriptor.dataType to a’s dataType.

" }, { - "html": "Set descriptor.dimensions to the result of bidirectionally broadcasting the shapes a’s shape and b’s shape.", + "html": "Set descriptor.dimensions to the result of bidirectionally broadcasting the shapes a’s shape and b’s shape.", "rationale": "if", "steps": [ { - "html": "

If that returns failure, then throw a TypeError.

" + "html": "

If that returns failure, then throw a TypeError.

" } ] }, @@ -1747,7 +1750,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1767,7 +1770,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1787,7 +1790,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1807,7 +1810,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1827,7 +1830,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1847,7 +1850,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1867,7 +1870,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1885,20 +1888,20 @@ "html": "

Assert: op is one of \"equal\", \"greater\", \"greaterOrEqual\", \"lesser\", \"lesserOrEqual\", \"logicalNot\".

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "If op is \"logicalNot\":", "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If a’s dataType is not \"uint8\", then throw a TypeError.

" + "html": "

If a’s dataType is not \"uint8\", then throw a TypeError.

" }, { - "html": "

Let outputShape be a clone of a’s shape.

" + "html": "

Let outputShape be a clone of a’s shape.

" } ] }, @@ -1907,13 +1910,13 @@ "rationale": "if", "steps": [ { - "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

Let outputShape be the result of bidirectionally broadcasting the shapes a’s shape and b’s shape. If that returns failure, then throw a TypeError.

" + "html": "

Let outputShape be the result of bidirectionally broadcasting the shapes a’s shape and b’s shape. If that returns failure, then throw a TypeError.

" } ] }, @@ -1963,7 +1966,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -1983,7 +1986,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2003,7 +2006,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2023,7 +2026,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2043,7 +2046,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2063,7 +2066,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2081,13 +2084,13 @@ "html": "

Assert: op is one of \"abs\", \"ceil\", \"cos\", \"erf\", \"exp\", \"floor\", \"identity\", \"log\", \"neg\", \"reciprocal\", \"sin\", \"sqrt\", \"tan\".

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "Make graph connections:", @@ -2126,7 +2129,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2146,7 +2149,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2166,7 +2169,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2186,7 +2189,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2206,7 +2209,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2226,7 +2229,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2246,7 +2249,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2266,7 +2269,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2286,7 +2289,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2306,7 +2309,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2326,7 +2329,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2346,7 +2349,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2366,7 +2369,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -2381,13 +2384,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "

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

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

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let outputDescriptor be a new MLOperandDescriptor.

" @@ -2436,11 +2439,11 @@ "html": "

Set outputDescriptor.dataType to input’s dataType.

" }, { - "html": "Set outputDescriptor.dimensions to the result of unidirectionally broadcasting the shapes input’s shape and newShape.", + "html": "Set outputDescriptor.dimensions to the result of unidirectionally broadcasting the shapes input’s shape and newShape.", "rationale": "if", "steps": [ { - "html": "

If that returns failure, then throw a TypeError.

" + "html": "

If that returns failure, then throw a TypeError.

" } ] }, @@ -2476,25 +2479,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If indices’s dataType is not \"int32\", \"uint32\" or \"int64\", then throw a TypeError.

" + "html": "

If indices’s dataType is not \"int32\", \"uint32\" or \"int64\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

Let shapeIndices be indices’s shape.

" + "html": "

Let shapeIndices be indices’s shape.

" }, { "html": "

Let axis be options.axis.

" }, { - "html": "

If axis is greater than or equal to rankInput, then throw a TypeError.

" + "html": "

If axis is greater than or equal to rankInput, then throw a TypeError.

" }, { "html": "

Let dimCount be zero.

" @@ -2600,13 +2603,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -2640,19 +2643,19 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" }, { - "html": "

If a’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If a’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If a’s rank is not 2 or b’s rank is not 2, then throw a TypeError.

" + "html": "

If a’s rank is not 2 or b’s rank is not 2, then throw a TypeError.

" }, { "html": "

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

" @@ -2661,10 +2664,10 @@ "html": "

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

" }, { - "html": "

Let shapeA be a clone of a’s shape.

" + "html": "

Let shapeA be a clone of a’s shape.

" }, { - "html": "

Let shapeB be a clone of b’s shape.

" + "html": "

Let shapeB be a clone of b’s shape.

" }, { "html": "

If options.aTranspose is true, then reverse the order of the items in shapeA.

" @@ -2673,17 +2676,17 @@ "html": "

If options.bTranspose is true, then reverse the order of the items in shapeB.

" }, { - "html": "

If shapeA[1] is not equal to shapeB[0], then throw a TypeError.

" + "html": "

If shapeA[1] is not equal to shapeB[0], then throw a TypeError.

" }, { "html": "If options.c exists:", "rationale": "if", "steps": [ { - "html": "

If it is not unidirectionally broadcastable to the shape « shapeA[0], shapeB[1] », then throw a TypeError.

" + "html": "

If it is not unidirectionally broadcastable to the shape « shapeA[0], shapeB[1] », then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" } ] }, @@ -2731,50 +2734,50 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If the dataType of either weight or recurrentWeight is not equal to input’s dataType, then throw a TypeError.

" + "html": "

If the dataType of either weight or recurrentWeight is not equal to input’s dataType, then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

Let batchSize be input’s shape[1].

" + "html": "

Let batchSize be input’s shape[1].

" }, { - "html": "

Let inputSize be input’s shape[2].

" + "html": "

Let inputSize be input’s shape[2].

" }, { "html": "

Let numDirections be 2 if options.direction is \"both\", or 1 otherwise.

" }, { - "html": "

If weight’s shape is not equal to « numDirections, 3 * hiddenSize, inputSize », then throw a TypeError.

" + "html": "

If weight’s shape is not equal to « numDirections, 3 * hiddenSize, inputSize », then throw a TypeError.

" }, { - "html": "

If recurrentWeight’s shape is not equal to « numDirections, 3 * hiddenSize, hiddenSize », then throw a TypeError.

" + "html": "

If recurrentWeight’s shape is not equal to « numDirections, 3 * hiddenSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenSize * 6 is not a valid dimension, then throw a TypeError.

" + "html": "

If hiddenSize * 6 is not a valid dimension, then throw a TypeError.

" }, { "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" } ] }, @@ -2807,7 +2810,7 @@ "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -2921,47 +2924,47 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

Let batchSize be input’s shape[0].

" + "html": "

Let batchSize be input’s shape[0].

" }, { - "html": "

Let inputSize be input’s shape[1].

" + "html": "

Let inputSize be input’s shape[1].

" }, { - "html": "

If the dataType of any of weight, recurrentWeight, or hiddenState is not equal to input’s dataType, then throw a TypeError.

" + "html": "

If the dataType of any of weight, recurrentWeight, or hiddenState is not equal to input’s dataType, then throw a TypeError.

" }, { - "html": "

If weight’s shape is not equal to « 3 * hiddenSize, inputSize », then throw a TypeError.

" + "html": "

If weight’s shape is not equal to « 3 * hiddenSize, inputSize », then throw a TypeError.

" }, { - "html": "

If recurrentWeight’s shape is not equal to « 3 * hiddenSize, hiddenSize », then throw a TypeError.

" + "html": "

If recurrentWeight’s shape is not equal to « 3 * hiddenSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If hiddenState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenSize * 6 is not a valid dimension, then throw a TypeError.

" + "html": "

If hiddenSize * 6 is not a valid dimension, then throw a TypeError.

" }, { "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" } ] }, @@ -2982,7 +2985,7 @@ "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -3048,13 +3051,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "

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

" @@ -3094,13 +3097,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -3134,16 +3137,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

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

" @@ -3156,10 +3159,10 @@ "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « input’s shape[axis] », then throw a TypeError.

" + "html": "

If its shape is not equal to « input’s shape[axis] », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « input’s shape[axis] », then throw a TypeError.

" + "html": "

If its shape is not equal to « input’s shape[axis] », then throw a TypeError.

" } ] }, @@ -3213,13 +3216,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "

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

" @@ -3235,10 +3238,10 @@ "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

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

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" } ] }, @@ -3262,17 +3265,17 @@ "html": "

Let axis be options.axes[index].

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

Let size be input’s shape[axis].

" + "html": "

Let size be input’s shape[axis].

" }, { "html": "If options.scale exists:", "rationale": "if", "steps": [ { - "html": "

If its shape[index] is not equal to size, then throw a TypeError.

" + "html": "

If its shape[index] is not equal to size, then throw a TypeError.

" } ] }, @@ -3281,7 +3284,7 @@ "rationale": "if", "steps": [ { - "html": "

If its shape[index] is not equal to size, then throw a TypeError.

" + "html": "

If its shape[index] is not equal to size, then throw a TypeError.

" } ] } @@ -3325,13 +3328,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "

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

" @@ -3368,13 +3371,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "

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

" @@ -3414,53 +3417,53 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If validating operand with this and any of input, weight, recurrentWeight, options.bias (if it exists), options.recurrentBias (if it exists), options.peepholeWeight (if it exists), options.initialHiddenState (if it exists), and options.initialCellState (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, weight, recurrentWeight, options.bias (if it exists), options.recurrentBias (if it exists), options.peepholeWeight (if it exists), options.initialHiddenState (if it exists), and options.initialCellState (if it exists) returns false, then throw a TypeError.

" }, { "html": "

Let numDirections be 2 if options.direction is \"both\", or 1 otherwise.

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If the dataType of either weight or recurrentWeight is not equal to input’s dataType, then throw a TypeError.

" + "html": "

If the dataType of either weight or recurrentWeight is not equal to input’s dataType, then throw a TypeError.

" }, { - "html": "

Let batchSize be input’s shape[1].

" + "html": "

Let batchSize be input’s shape[1].

" }, { - "html": "

Let inputSize be input’s shape[2].

" + "html": "

Let inputSize be input’s shape[2].

" }, { - "html": "

If the dataType of either weight or recurrentWeight is not equal to input’s dataType, then throw a TypeError.

" + "html": "

If the dataType of either weight or recurrentWeight is not equal to input’s dataType, then throw a TypeError.

" }, { - "html": "

If weight’s shape is not equal to « numDirections, 4 * hiddenSize, inputSize », then throw a TypeError.

" + "html": "

If weight’s shape is not equal to « numDirections, 4 * hiddenSize, inputSize », then throw a TypeError.

" }, { - "html": "

If recurrentWeight’s shape is not equal to « numDirections, 4 * hiddenSize, hiddenSize », then throw a TypeError.

" + "html": "

If recurrentWeight’s shape is not equal to « numDirections, 4 * hiddenSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenSize * 8 is not a valid dimension, then throw a TypeError.

" + "html": "

If hiddenSize * 8 is not a valid dimension, then throw a TypeError.

" }, { "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « numDirections, 4 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 4 * hiddenSize », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « numDirections, 4 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 4 * hiddenSize », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, 3 * hiddenSize », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « numDirections, batchSize, hiddenSize », then throw a TypeError.

" } ] }, @@ -3517,7 +3520,7 @@ "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -3640,50 +3643,50 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If validating operand with this and any of input, weight, recurrentWeight, hiddenState, cellState, options.bias (if it exists), options.recurrentBias (if it exists), and options.peepholeWeight (if it exists) returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of input, weight, recurrentWeight, hiddenState, cellState, options.bias (if it exists), options.recurrentBias (if it exists), and options.peepholeWeight (if it exists) returns false, then throw a TypeError.

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If the dataType of any of weight, recurrentWeight, hiddenState or cellState is not equal to input’s dataType, then throw a TypeError.

" + "html": "

If the dataType of any of weight, recurrentWeight, hiddenState or cellState is not equal to input’s dataType, then throw a TypeError.

" }, { - "html": "

Let batchSize be input’s shape[0].

" + "html": "

Let batchSize be input’s shape[0].

" }, { - "html": "

Let inputSize be input’s shape[1].

" + "html": "

Let inputSize be input’s shape[1].

" }, { - "html": "

If weight’s shape is not equal to « 4 * hiddenSize, inputSize », then throw a TypeError.

" + "html": "

If weight’s shape is not equal to « 4 * hiddenSize, inputSize », then throw a TypeError.

" }, { - "html": "

If recurrentWeight’s shape is not equal to « 4 * hiddenSize, hiddenSize », then throw a TypeError.

" + "html": "

If recurrentWeight’s shape is not equal to « 4 * hiddenSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If hiddenState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If cellState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" + "html": "

If cellState’s shape is not equal to « batchSize, hiddenSize », then throw a TypeError.

" }, { - "html": "

If hiddenSize * 8 is not a valid dimension, then throw a TypeError.

" + "html": "

If hiddenSize * 8 is not a valid dimension, then throw a TypeError.

" }, { "html": "If options.bias exists:", "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « 4 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 4 * hiddenSize », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « 4 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 4 * hiddenSize », then throw a TypeError.

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

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

" + "html": "

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

" }, { - "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" + "html": "

If its shape is not equal to « 3 * hiddenSize », then throw a TypeError.

" } ] }, @@ -3716,7 +3719,7 @@ "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { "html": "

Let activations be a clone of options.activations.

" @@ -3791,19 +3794,19 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let shapeA be a clone of a’s shape.

" + "html": "

Let shapeA be a clone of a’s shape.

" }, { "html": "

Let rankA be a’s rank.

" }, { - "html": "

Let shapeB be a clone of b’s shape.

" + "html": "

Let shapeB be a clone of b’s shape.

" }, { "html": "

Let rankB be b’s rank.

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let colsA be shapeA[rankA - 1].

" @@ -3818,7 +3821,7 @@ "html": "

Let rowsB be shapeB[rankB - 2].

" }, { - "html": "

If colsA is not equal to rowsB, then throw a TypeError.

" + "html": "

If colsA is not equal to rowsB, then throw a TypeError.

" }, { "html": "

Let batchShapeA be a clone of shapeA with the spatial dimensions (last 2 items) removed.

" @@ -3827,7 +3830,7 @@ "html": "

Let batchShapeB be a clone of shapeB with the spatial dimensions (last 2 items) removed.

" }, { - "html": "

Let outputShape be the result of bidirectionally broadcasting the shapes batchShapeA and batchShapeB. If that returns failure, then throw a TypeError.

" + "html": "

Let outputShape be the result of bidirectionally broadcasting the shapes batchShapeA and batchShapeB. If that returns failure, then throw a TypeError.

" }, { "html": "

Append « rowsA, colsB » to outputShape.

" @@ -3843,16 +3846,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of a and b returns false, then throw a TypeError.

" }, { - "html": "

If a’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If a’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let desc be a new MLOperandDescriptor.

" @@ -3861,7 +3864,7 @@ "html": "

Set desc.dimensions to the result of calculating matmul output sizes given a and b.

" }, { - "html": "

If that throws an error, re-throw the error.

" + "html": "

If that throws an error, re-throw the error.

" }, { "html": "

Set desc.dataType to a’s dataType.

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

Let shape be a copy of input’s shape.

" + "html": "

Let shape be a copy of input’s shape.

" }, { "html": "For each index in the range 0 to shape’s rank, exclusive:", @@ -3923,16 +3926,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

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

" @@ -3941,7 +3944,7 @@ "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

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

" @@ -4123,19 +4126,19 @@ "html": "

Assert: op is one of \"averagePool2d\", \"l2Pool2d\", \"maxPool2d\".

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

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

" @@ -4144,26 +4147,26 @@ "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "If options.outputSizes exists:", "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" } ] }, @@ -4171,19 +4174,19 @@ "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Set desc.dimensions to outputShape.

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

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4245,7 +4248,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4265,7 +4268,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4280,16 +4283,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\", \"float16\", \"int32\", or \"int8\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\", \"float16\", \"int32\", or \"int8\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let descriptor be a new MLOperandDescriptor.

" @@ -4298,11 +4301,11 @@ "html": "

Set descriptor.dataType to input’s dataType.

" }, { - "html": "Set descriptor.dimensions to the result of unidirectionally broadcasting the shapes slope’s shape and input’s shape.", + "html": "Set descriptor.dimensions to the result of unidirectionally broadcasting the shapes slope’s shape and input’s shape.", "rationale": "if", "steps": [ { - "html": "

If that returns failure, then throw a TypeError.

" + "html": "

If that returns failure, then throw a TypeError.

" } ] }, @@ -4396,16 +4399,16 @@ "html": "

Assert: op is one of \"reduceL1\", \"reduceL2\", \"reduceLogSum\", \"reduceLogSumExp\", \"reduceMax\", \"reduceMean\", \"reduceMin\", \"reduceProduct\", \"reduceSum\", \"reduceSumSquare\".

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let desc be a new MLOperandDescriptor.

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

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4473,7 +4476,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4493,7 +4496,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4513,7 +4516,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4533,7 +4536,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4553,7 +4556,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4573,7 +4576,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4593,7 +4596,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4613,7 +4616,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4633,7 +4636,7 @@ "rationale": "if", "steps": [ { - "html": "

If that throws an error, then re-throw the error.

" + "html": "

If that throws an error, then re-throw the error.

" } ] }, @@ -4648,13 +4651,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\", \"float16\", \"int32\", or \"int8\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\", \"float16\", \"int32\", or \"int8\", then throw a TypeError.

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

If options.sizes exists, then let size be options.sizes[index].

" }, { - "html": "

Otherwise, let size be floor(input’s shape[options.axes[index]] * options.scales[index]).

" + "html": "

Otherwise, let size be floor(input’s shape[options.axes[index]] * options.scales[index]).

" }, { "html": "

If size is not a valid dimension, then return failure.

" @@ -4744,22 +4747,22 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

Let desc be the result of calculating resample output sizes given input and options. If that returns failure, then throw a TypeError.

" + "html": "

Let desc be the result of calculating resample output sizes given input and options. If that returns failure, then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -4793,25 +4796,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

Let outputShape be an empty array of unsigned long.

" + "html": "

Let outputShape be an empty array of unsigned long.

" }, { "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If product of all values in newShape is not equal to inputElementCount, then throw a TypeError.

" + "html": "

If product of all values in newShape is not equal to inputElementCount, then throw a TypeError.

" }, { "html": "

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

" @@ -4851,13 +4854,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -4891,29 +4894,29 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

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

If sizes[index] is 0, then throw a TypeError.

" + "html": "

If sizes[index] is 0, then throw a TypeError.

" }, { - "html": "

If starts[index] is greater than or equal to input’s shape[index], then throw a TypeError.

" + "html": "

If starts[index] is greater than or equal to input’s shape[index], then throw a TypeError.

" }, { - "html": "

If starts[index] + sizes[index] is greater than input’s shape[index], then throw a TypeError.

" + "html": "

If starts[index] + sizes[index] is greater than input’s shape[index], then throw a TypeError.

" } ] }, @@ -4949,16 +4952,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "Make graph connections:", @@ -4992,13 +4995,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -5032,13 +5035,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -5072,23 +5075,23 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Let axis be options.axis.

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "If splits is an unsigned long:", + "html": "If splits is an unsigned long:", "rationale": "if", "steps": [ { - "html": "

If input’s shape[axis] % splits is not 0, then throw a TypeError.

" + "html": "

If input’s shape[axis] % splits is not 0, then throw a TypeError.

" }, { "html": "

Otherwise, let splitCount be splits.

" @@ -5096,14 +5099,14 @@ ] }, { - "html": "If splits is a sequence<unsigned long>:", + "html": "If splits is a sequence<unsigned long>:", "rationale": "if", "steps": [ { - "html": "

If any of its elements is equal to 0, then throw a TypeError.

" + "html": "

If any of its elements is equal to 0, then throw a TypeError.

" }, { - "html": "

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

" + "html": "

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

" }, { "html": "

Otherwise, let splitCount be splits’s size.

" @@ -5128,13 +5131,13 @@ "html": "

Let operand be the result of copying an MLOperand given input.

" }, { - "html": "

If splits is an unsigned long, then let newDimension be operand’s shape[axis] / splits.

" + "html": "

If splits is an unsigned long, then let newDimension be operand’s shape[axis] / splits.

" }, { "html": "

Otherwise, let newDimension be splits[index].

" }, { - "html": "

Set operand’s shape[axis] to newDimension.

" + "html": "

Set operand’s shape[axis] to newDimension.

" }, { "html": "

Set operand.[[operator]] to operator.

" @@ -5163,13 +5166,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" + "html": "

If input’s dataType is not \"float32\" or \"float16\", then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -5203,26 +5206,26 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If options.permutation does not exist, let options.permutation be the reversed sequence of all indices for input’s shape.

" + "html": "

If options.permutation does not exist, let options.permutation be the reversed sequence of all indices for input’s shape.

" }, { "html": "Otherwise if options.permutation exists:", "rationale": "if", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If it contains duplicate values, then throw a TypeError.

" + "html": "

If it contains duplicate values, then throw a TypeError.

" } ] }, @@ -5258,13 +5261,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

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

" + "html": "

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

" }, { - "html": "

If input’s rank is less than 2, then throw a TypeError.

" + "html": "

If input’s rank is less than 2, then throw a TypeError.

" }, { "html": "Make graph connections:", @@ -5298,16 +5301,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

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

" + "html": "

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

" }, { - "html": "

If validating operand with this and any of condition, trueValue, and falseValue returns false, then throw a TypeError.

" + "html": "

If validating operand with this and any of condition, trueValue, and falseValue returns false, then throw a TypeError.

" }, { - "html": "

If condition’s dataType is not equal to \"uint8\", then throw a TypeError.

" + "html": "

If condition’s dataType is not equal to \"uint8\", then throw a TypeError.

" }, { - "html": "

If trueValue’s dataType is not equal to falseValue’s dataType, then throw a TypeError.

" + "html": "

If trueValue’s dataType is not equal to falseValue’s dataType, then throw a TypeError.

" }, { "html": "

Let descriptor be a new MLOperandDescriptor.

" @@ -5316,16 +5319,16 @@ "html": "

Set descriptor.dataType to trueValue’s dataType.

" }, { - "html": "Set descriptor.dimensions to the result of bidirectionally broadcasting the shapes trueValue’s shape and falseValue’s shape.", + "html": "Set descriptor.dimensions to the result of bidirectionally broadcasting the shapes trueValue’s shape and falseValue’s shape.", "rationale": "if", "steps": [ { - "html": "

If that returns failure, then throw a TypeError.

" + "html": "

If that returns failure, then throw a TypeError.

" } ] }, { - "html": "

If condition is not bidirectionally broadcastable to descriptor.dimensions, then throw a TypeError.

" + "html": "

If condition is not bidirectionally broadcastable to descriptor.dimensions, then throw a TypeError.

" }, { "html": "Make graph connections:", diff --git a/tr/dfns/credential-management-1.json b/tr/dfns/credential-management-1.json index 1cc2df788e34..f8346983767b 100644 --- a/tr/dfns/credential-management-1.json +++ b/tr/dfns/credential-management-1.json @@ -288,6 +288,48 @@ }, "definedIn": "table" }, + { + "id": "credential-type-registry-get-permissions-policy", + "href": "https://www.w3.org/TR/credential-management-1/#credential-type-registry-get-permissions-policy", + "linkingText": [ + "Get Permissions Policy" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "credential type registry" + ], + "access": "private", + "informative": false, + "heading": { + "id": "sctn-cred-type-registry", + "href": "https://www.w3.org/TR/credential-management-1/#sctn-cred-type-registry", + "title": "Credential Type Registry", + "number": "2.1.2" + }, + "definedIn": "table" + }, + { + "id": "credential-type-registry-create-permissions-policy", + "href": "https://www.w3.org/TR/credential-management-1/#credential-type-registry-create-permissions-policy", + "linkingText": [ + "Create Permissions Policy" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "credential type registry" + ], + "access": "private", + "informative": false, + "heading": { + "id": "sctn-cred-type-registry", + "href": "https://www.w3.org/TR/credential-management-1/#sctn-cred-type-registry", + "title": "Credential Type Registry", + "number": "2.1.2" + }, + "definedIn": "table" + }, { "id": "credential", "href": "https://www.w3.org/TR/credential-management-1/#credential", diff --git a/tr/dfns/webnn.json b/tr/dfns/webnn.json index 4bb8474ac793..2c23dcd16c12 100644 --- a/tr/dfns/webnn.json +++ b/tr/dfns/webnn.json @@ -2141,6 +2141,27 @@ }, "definedIn": "dt" }, + { + "id": "dom-mlargminmaxoptions-outputdatatype", + "href": "https://www.w3.org/TR/webnn/#dom-mlargminmaxoptions-outputdatatype", + "linkingText": [ + "outputDataType" + ], + "localLinkingText": [], + "type": "dict-member", + "for": [ + "MLArgMinMaxOptions" + ], + "access": "public", + "informative": false, + "heading": { + "id": "api-mlgraphbuilder-argminmax", + "href": "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-argminmax", + "title": "argMin/argMax operations", + "number": "7.7.5" + }, + "definedIn": "dt" + }, { "id": "dom-mlgraphbuilder-argmin-input-axis-options-input", "href": "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-input", diff --git a/tr/idl/webnn.idl b/tr/idl/webnn.idl index 73a926d2cfd8..4b87139d64a6 100644 --- a/tr/idl/webnn.idl +++ b/tr/idl/webnn.idl @@ -99,6 +99,7 @@ interface MLGraphBuilder { dictionary MLArgMinMaxOptions { boolean keepDimensions = false; + MLOperandDataType outputDataType = "int32"; }; partial interface MLGraphBuilder { diff --git a/tr/ids/credential-management-1.json b/tr/ids/credential-management-1.json index ddcbd6c29da8..45393a7d31a8 100644 --- a/tr/ids/credential-management-1.json +++ b/tr/ids/credential-management-1.json @@ -88,11 +88,18 @@ "https://www.w3.org/TR/credential-management-1/#credential-type-registry-credential-type", "https://www.w3.org/TR/credential-management-1/#credential-type-registry-options-member-identifier", "https://www.w3.org/TR/credential-management-1/#credential-type-registry-appropriate-interface-object", + "https://www.w3.org/TR/credential-management-1/#credential-type-registry-get-permissions-policy", + "https://www.w3.org/TR/credential-management-1/#credential-type-registry-create-permissions-policy", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-digitalcredential", "https://www.w3.org/TR/credential-management-1/#ref-for-federatedcredential%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-identitycredential", + "https://www.w3.org/TR/credential-management-1/#ref-for-identity-credentials-get", "https://www.w3.org/TR/credential-management-1/#ref-for-otpcredential", + "https://www.w3.org/TR/credential-management-1/#ref-for-otp-credentials-feature", "https://www.w3.org/TR/credential-management-1/#ref-for-passwordcredential%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-publickeycredential", + "https://www.w3.org/TR/credential-management-1/#ref-for-publickey-credentials-get-feature", + "https://www.w3.org/TR/credential-management-1/#ref-for-publickey-credentials-create-feature", "https://www.w3.org/TR/credential-management-1/#sctn-registry-requirements", "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A2", @@ -104,10 +111,20 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-appropriate-interface-object", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-identifier%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A3", + "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-get-permissions-policy", + "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-permission", + "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-request-a-credential", "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A4", + "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-permissions-policy", + "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-create-permissions-policy", + "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-permission%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-create-a-credential", + "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-permissions-policy%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-dictionary-member%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-identifier%E2%91%A2", - "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A7", "https://www.w3.org/TR/credential-management-1/#the-credential-interface", "https://www.w3.org/TR/credential-management-1/#ref-for-Exposed", "https://www.w3.org/TR/credential-management-1/#ref-for-SecureContext", @@ -159,7 +176,7 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#credential-credential-type", - "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A6", + "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A8", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#dom-credential-discovery-slot", @@ -299,7 +316,7 @@ "https://www.w3.org/TR/credential-management-1/#dom-credentialdata-id", "https://www.w3.org/TR/credential-management-1/#dom-credentialscontainer-get", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialscontainer-get%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-request-a-credential", + "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-request-a-credential%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialscontainer-get-options-options%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialscontainer-get%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#dom-credentialscontainer-get-options-options", @@ -313,7 +330,7 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#dom-credentialscontainer-create", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialscontainer-create%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-create-a-credential", + "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-create-a-credential%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialscontainer-create-options-options%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialscontainer-create%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#dom-credentialscontainer-create-options-options", @@ -360,7 +377,7 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-concept-settings-object-global%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-options-member-identifier%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A2", - "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A7", + "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-options-member-identifier%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-dictdef-credentialrequestoptions%E2%91%A8", "https://www.w3.org/TR/credential-management-1/#credentialrequestoptions-matchable-a-priori", @@ -484,7 +501,6 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-exceptiondef-typeerror%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-new-promise", "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-active-credential-types", "https://www.w3.org/TR/credential-management-1/#ref-for-list-contain", @@ -498,30 +514,14 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-active-credential-types%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-settings-object-origin%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-same-origin-with-its-ancestors%E2%91%A3", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-identity", - "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-relevant-global%E2%91%A2", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A2", + "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-get-permissions-policy%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-allowed-to-use", - "https://www.w3.org/TR/credential-management-1/#ref-for-identity-credentials-get", - "https://www.w3.org/TR/credential-management-1/#ref-for-policy-controlled-feature", "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A3", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-publickey", - "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-relevant-global%E2%91%A3", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A3", - "https://www.w3.org/TR/credential-management-1/#ref-for-allowed-to-use%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-publickey-credentials-get-feature", - "https://www.w3.org/TR/credential-management-1/#ref-for-policy-controlled-feature%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A4", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A3", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A4", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-password", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-federatedcredential-federated", - "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A8", - "https://www.w3.org/TR/credential-management-1/#ref-for-policy-controlled-feature%E2%91%A1", + "https://www.w3.org/TR/credential-management-1/#ref-for-a-new-promise", "https://www.w3.org/TR/credential-management-1/#ref-for-in-parallel%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-collect-credentials-from-the-credential-store", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-exception", @@ -554,9 +554,9 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-mediation%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialmediationrequirement-conditional%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-perform-steps-once-promise-is-settled", - "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-list-remove", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-active-credential-types%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#algorithm-collect-known", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-settings-object-origin%E2%91%A4", @@ -565,7 +565,7 @@ "https://www.w3.org/TR/credential-management-1/#abstract-opdef-collect-credentials-from-the-credential-store", "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A6", + "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A7", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-collectfromcredentialstore-slot%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-exception%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A8", @@ -577,23 +577,23 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A8", "https://www.w3.org/TR/credential-management-1/#ref-for-current-settings-object%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-secure-context%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-relevant-global%E2%91%A4", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A4", + "https://www.w3.org/TR/credential-management-1/#ref-for-concept-relevant-global%E2%91%A2", + "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-fully-active%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A5", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A4", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A4", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A3", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#ref-for-current-settings-object%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-same-origin-with-its-ancestors%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-a-new-promise%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-active-credential-types%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-list-contain%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A6", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A6", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A5", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A6", - "https://www.w3.org/TR/credential-management-1/#ref-for-set-append%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A7", + "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A4", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-set-append%E2%91%A1", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A8", "https://www.w3.org/TR/credential-management-1/#ref-for-active-credential-types%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-in-parallel%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A0%E2%93%AA", @@ -606,7 +606,7 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-resolve%E2%91%A8", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-perform-steps-once-promise-is-settled%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-list-remove%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A8", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-active-credential-types%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#algorithm-create", "https://www.w3.org/TR/credential-management-1/#abstract-opdef-create-a-credential", @@ -618,45 +618,37 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-current-settings-object%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#ref-for-secure-context%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-settings-object-global%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-relevant-global%E2%91%A5", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-concept-relevant-global%E2%91%A3", + "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-fully-active%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A7", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A6", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A7", + "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A6", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-current-settings-object%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-same-origin-with-its-ancestors%E2%91%A6", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialcreationoptions-publickey", - "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-relevant-global%E2%91%A6", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A6", - "https://www.w3.org/TR/credential-management-1/#ref-for-allowed-to-use%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-publickey-credentials-create-feature", - "https://www.w3.org/TR/credential-management-1/#ref-for-policy-controlled-feature%E2%91%A2", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A8", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A7", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A8", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-password%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-federatedcredential-federated%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-credential-type%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/credential-management-1/#ref-for-policy-controlled-feature%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-ordered-set%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A7", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A7", + "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A8", + "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A7", + "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#ref-for-list-size%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-credential-type-registry-create-permissions-policy%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-allowed-to-use%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A8", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A6", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A7", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-signal%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-abortsignal-aborted%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-signal%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-abortsignal-abort-reason%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-a-new-promise%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-active-credential-types%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-list-contain%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A8", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A7", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A8", "https://www.w3.org/TR/credential-management-1/#ref-for-set-append%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-active-credential-types%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-settings-object-origin%E2%91%A5", @@ -682,12 +674,12 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-idl-promise%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-settings-object-origin%E2%91%A6", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-relevant-global%E2%91%A7", - "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A8", + "https://www.w3.org/TR/credential-management-1/#ref-for-concept-relevant-global%E2%91%A4", + "https://www.w3.org/TR/credential-management-1/#ref-for-concept-document-window%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-fully-active%E2%91%A2", - "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-a-promise-rejected-with%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A8", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-a-new-promise%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-in-parallel%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-origin-prevent-silent-access-flag%E2%91%A3", @@ -706,7 +698,7 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialscontainer-get%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-password", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-password%E2%91%A1", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-password", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-navigator-credentials%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialscontainer-store%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-the-form-element", @@ -770,7 +762,7 @@ "https://www.w3.org/TR/credential-management-1/#dom-credentialrequestoptions-password", "https://www.w3.org/TR/credential-management-1/#dom-passwordcredential-password", "https://www.w3.org/TR/credential-management-1/#ref-for-idl-USVString%E2%91%A7", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-passwordcredential%E2%91%A7", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#dom-credential-type-password", @@ -830,9 +822,9 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-password%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A2", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-password%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-credential-store-retrieve-a-list-of-credentials", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A0%E2%91%A3", @@ -852,7 +844,7 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-exceptiondef-typeerror%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-exception%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialcreationoptions-password", - "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A3", + "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialcreationoptions-password%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-htmlformelement%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-create-a-passwordcredential-from-an-htmlformelement%E2%91%A0", @@ -868,8 +860,8 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-passwordcredential%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-same-origin-with-its-ancestors%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-passwordcredential%E2%91%A0%E2%91%A6", @@ -987,7 +979,7 @@ "https://www.w3.org/TR/credential-management-1/#dom-federatedcredential-protocol", "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMString%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-federatedcredential-provider%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-federatedcredential%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#dom-federatedcredential-federated", @@ -1043,9 +1035,9 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-federated", - "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A4", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A1", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-federated%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-credential-store-retrieve-a-list-of-credentials%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A1%E2%93%AA", @@ -1054,12 +1046,12 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-same-origin%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-federated%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-federatedcredentialrequestoptions-providers%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A5", + "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-list-contain%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-federatedcredential-provider%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialrequestoptions-federated%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-federatedcredentialrequestoptions-protocols", - "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A6", + "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-list-contain%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-federatedcredential-protocol%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#create-federatedcredential", @@ -1070,7 +1062,7 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-federatedcredential%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-exception%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialcreationoptions-federated", - "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A7", + "https://www.w3.org/TR/credential-management-1/#ref-for-map-exists%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credentialcreationoptions-federated%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-dom-federatedcredentialinit-origin", "https://www.w3.org/TR/credential-management-1/#ref-for-abstract-opdef-create-a-federatedcredential-from-federatedcredentialinit%E2%91%A0", @@ -1081,8 +1073,8 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-federatedcredential%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#ref-for-same-origin-with-its-ancestors%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/credential-management-1/#ref-for-notallowederror%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/credential-management-1/#ref-for-idl-DOMException%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-federatedcredential%E2%91%A0%E2%91%A1", @@ -1160,8 +1152,8 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-matchable-a-priori%E2%91%A1", - "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A8", "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/credential-management-1/#ref-for-credentialrequestoptions-relevant-credential-interface-objects%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/credential-management-1/#security-considerations", "https://www.w3.org/TR/credential-management-1/#security-credential-access", "https://www.w3.org/TR/credential-management-1/#ref-for-something", @@ -1242,7 +1234,7 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/credential-management-1/#ref-for-concept-credential-store%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#example-b9aa85d8", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A1%E2%91%A0", @@ -1273,7 +1265,7 @@ "https://www.w3.org/TR/credential-management-1/#ref-for-credential-credential-type%E2%91%A6", "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/credential-management-1/#ref-for-dfn-interface-object%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/credential-management-1/#ref-for-dom-credential-type-slot%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#ref-for-credential%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/credential-management-1/#ref-for-credentialscontainer%E2%91%A5", "https://www.w3.org/TR/credential-management-1/#browser-extensions", @@ -1284,13 +1276,13 @@ "https://www.w3.org/TR/credential-management-1/#index", "https://www.w3.org/TR/credential-management-1/#index-defined-here", "https://www.w3.org/TR/credential-management-1/#index-defined-elsewhere", + "https://www.w3.org/TR/credential-management-1/#e5336b22", "https://www.w3.org/TR/credential-management-1/#cca3cdb2", "https://www.w3.org/TR/credential-management-1/#28e64574", "https://www.w3.org/TR/credential-management-1/#535dd335", "https://www.w3.org/TR/credential-management-1/#25538777", "https://www.w3.org/TR/credential-management-1/#60a270ef", "https://www.w3.org/TR/credential-management-1/#bb70ff96", - "https://www.w3.org/TR/credential-management-1/#f4647c65", "https://www.w3.org/TR/credential-management-1/#9e7a10fb", "https://www.w3.org/TR/credential-management-1/#08a12aad", "https://www.w3.org/TR/credential-management-1/#857d5516", @@ -1326,6 +1318,7 @@ "https://www.w3.org/TR/credential-management-1/#43ac8374", "https://www.w3.org/TR/credential-management-1/#a944ac4c", "https://www.w3.org/TR/credential-management-1/#1bba3db7", + "https://www.w3.org/TR/credential-management-1/#a41102eb", "https://www.w3.org/TR/credential-management-1/#3e24d694", "https://www.w3.org/TR/credential-management-1/#9a517a7d", "https://www.w3.org/TR/credential-management-1/#e99bd18e", @@ -1346,16 +1339,15 @@ "https://www.w3.org/TR/credential-management-1/#99c988d6", "https://www.w3.org/TR/credential-management-1/#15e48c39", "https://www.w3.org/TR/credential-management-1/#0204d188", - "https://www.w3.org/TR/credential-management-1/#4ed2f1ff", + "https://www.w3.org/TR/credential-management-1/#d964c917", "https://www.w3.org/TR/credential-management-1/#e8353b84", "https://www.w3.org/TR/credential-management-1/#5dbcc6ec", "https://www.w3.org/TR/credential-management-1/#f5d4a41e", "https://www.w3.org/TR/credential-management-1/#26cd4086", + "https://www.w3.org/TR/credential-management-1/#4842aa56", "https://www.w3.org/TR/credential-management-1/#3955f290", "https://www.w3.org/TR/credential-management-1/#fedc36f2", "https://www.w3.org/TR/credential-management-1/#6ee1791f", - "https://www.w3.org/TR/credential-management-1/#e8126328", - "https://www.w3.org/TR/credential-management-1/#9b39aa25", "https://www.w3.org/TR/credential-management-1/#8e19bb11", "https://www.w3.org/TR/credential-management-1/#4fe2b69f", "https://www.w3.org/TR/credential-management-1/#dca2de17", @@ -1389,12 +1381,13 @@ "https://www.w3.org/TR/credential-management-1/#references", "https://www.w3.org/TR/credential-management-1/#normative", "https://www.w3.org/TR/credential-management-1/#biblio-csp", + "https://www.w3.org/TR/credential-management-1/#biblio-digital-identities", "https://www.w3.org/TR/credential-management-1/#biblio-dom", "https://www.w3.org/TR/credential-management-1/#biblio-fedcm", "https://www.w3.org/TR/credential-management-1/#biblio-fetch", "https://www.w3.org/TR/credential-management-1/#biblio-html", "https://www.w3.org/TR/credential-management-1/#biblio-infra", - "https://www.w3.org/TR/credential-management-1/#biblio-permissions-policy-1", + "https://www.w3.org/TR/credential-management-1/#biblio-permissions", "https://www.w3.org/TR/credential-management-1/#biblio-promises-guide", "https://www.w3.org/TR/credential-management-1/#biblio-psl", "https://www.w3.org/TR/credential-management-1/#biblio-secure-contexts", @@ -1404,6 +1397,7 @@ "https://www.w3.org/TR/credential-management-1/#biblio-xhr", "https://www.w3.org/TR/credential-management-1/#informative", "https://www.w3.org/TR/credential-management-1/#biblio-browserid", + "https://www.w3.org/TR/credential-management-1/#biblio-digital-credentials", "https://www.w3.org/TR/credential-management-1/#biblio-sri", "https://www.w3.org/TR/credential-management-1/#biblio-web-login", "https://www.w3.org/TR/credential-management-1/#biblio-webauthn", diff --git a/tr/ids/media-capabilities.json b/tr/ids/media-capabilities.json index 0796b37a1b14..5275d3a037c7 100644 --- a/tr/ids/media-capabilities.json +++ b/tr/ids/media-capabilities.json @@ -220,6 +220,7 @@ "https://www.w3.org/TR/media-capabilities/#ref-for-dom-audioconfiguration-contenttype%E2%91%A1", "https://www.w3.org/TR/media-capabilities/#ref-for-map-exists%E2%91%A8", "https://www.w3.org/TR/media-capabilities/#ref-for-dom-mediacapabilitiesinfo-supported", + "https://www.w3.org/TR/media-capabilities/#ref-for-dom-audioconfiguration-spatialrendering%E2%91%A0", "https://www.w3.org/TR/media-capabilities/#ref-for-dictdef-mediadecodingconfiguration%E2%91%A7", "https://www.w3.org/TR/media-capabilities/#ref-for-dom-mediadecodingtype-media-source%E2%91%A8", "https://www.w3.org/TR/media-capabilities/#ref-for-dom-mediadecodingtype-file%E2%91%A8", diff --git a/tr/ids/vc-data-model-2.0.json b/tr/ids/vc-data-model-2.0.json index db9a58468ac1..20a8b6808c01 100644 --- a/tr/ids/vc-data-model-2.0.json +++ b/tr/ids/vc-data-model-2.0.json @@ -535,17 +535,19 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-4", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-5", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-6", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-7", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-8", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-11", "https://www.w3.org/TR/vc-data-model-2.0/#h-note-11", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-7", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-9", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-42", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-presentation-13", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-8", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-9", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-43", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-10", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-14", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-11", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-43", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-12", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-14", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-13", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-44", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-15", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-subjects-27", @@ -703,7 +705,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-35", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-36", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-59", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-12", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-14", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-60", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-61", "https://www.w3.org/TR/vc-data-model-2.0/#example-usage-of-the-status-property", @@ -975,7 +977,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-140", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-55", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-78", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-13", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-15", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-141", "https://www.w3.org/TR/vc-data-model-2.0/#example-a-verifiable-credential-with-a-custom-extension", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-142", @@ -1036,7 +1038,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#defn-refreshService", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-60", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-155", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-14", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-16", "https://www.w3.org/TR/vc-data-model-2.0/#example-usage-of-the-refreshservice-property-by-an-issuer", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-52", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-156", @@ -1074,8 +1076,8 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-presentation-14", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-holders-45", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-48", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-15", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-16", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-17", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-18", "https://www.w3.org/TR/vc-data-model-2.0/#example-usage-of-the-termsofuse-property-by-an-issuer", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-57", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-id-1", @@ -1110,9 +1112,9 @@ "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-55", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-issuers-61", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-85", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-17", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-19", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-property-67", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-18", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-20", "https://www.w3.org/TR/vc-data-model-2.0/#issue-container-generatedID-23", "https://www.w3.org/TR/vc-data-model-2.0/#h-note-23", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-credential-86", @@ -2041,7 +2043,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#a-8-status", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-346", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-155", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-19", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-21", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-347", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-156", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-157", @@ -2051,7 +2053,7 @@ "https://www.w3.org/TR/vc-data-model-2.0/#a-9-schema", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-349", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-158", - "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-20", + "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-type-22", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifiable-credential-350", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-159", "https://www.w3.org/TR/vc-data-model-2.0/#ref-for-dfn-verifier-160", diff --git a/tr/ids/webnn.json b/tr/ids/webnn.json index 46e69c1e1cb1..d50f1dfa8cad 100644 --- a/tr/ids/webnn.json +++ b/tr/ids/webnn.json @@ -527,7 +527,7 @@ "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A1", "https://www.w3.org/TR/webnn/#valid-dimension", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-long", "https://www.w3.org/TR/webnn/#issue-f000a729", "https://www.w3.org/TR/webnn/#mloperanddescriptor-check-dimensions", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A8", @@ -547,7 +547,7 @@ "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-datatype", "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%A1", + "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-idl-bigint", "https://www.w3.org/TR/webnn/#ref-for-idl-unrestricted-double", @@ -623,7 +623,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnumber%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-cast", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-double", "https://www.w3.org/TR/webnn/#ref-for-idl-long-long", "https://www.w3.org/TR/webnn/#issue-63bb2306", @@ -640,7 +640,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-shape%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%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-idl-unsigned-long%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mloperand-shape", "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", @@ -899,13 +899,15 @@ "https://www.w3.org/TR/webnn/#dictdef-mlargminmaxoptions", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-keepdimensions", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype", "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%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-input", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-axis", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-options", @@ -914,7 +916,7 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-input%E2%91%A0", "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%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-axis%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-argmin-input-axis-options-options%E2%91%A0", @@ -922,6 +924,9 @@ "https://www.w3.org/TR/webnn/#dom-mlargminmaxoptions-keepdimensions", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1", + "https://www.w3.org/TR/webnn/#dom-mlargminmaxoptions-outputdatatype", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-axis", @@ -929,11 +934,11 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-argmin-input-axis-options-options", "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%A5", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A0", "https://www.w3.org/TR/webnn/#mlgraphbuilder-argminmax-op", "https://www.w3.org/TR/webnn/#ref-for-string%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlargminmaxoptions%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A0", @@ -945,14 +950,18 @@ "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-reduction-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-keepdimensions%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-reduction-output-sizes", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-keepdimensions%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlargminmaxoptions-outputdatatype%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A2", @@ -962,12 +971,12 @@ "https://www.w3.org/TR/webnn/#ref-for-operator-output", "https://www.w3.org/TR/webnn/#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%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#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%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-batchnorm", "https://www.w3.org/TR/webnn/#dictdef-mlbatchnormalizationoptions", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A7", @@ -975,7 +984,7 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-bias", "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%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis", "https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-epsilon", @@ -1000,7 +1009,7 @@ "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", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw", "https://www.w3.org/TR/webnn/#dom-mlbatchnormalizationoptions-epsilon", @@ -1021,7 +1030,7 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-batchnormalization", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A6", - "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%A7", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1", @@ -1030,36 +1039,36 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4", "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%A5", - "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%A0%E2%91%A8", + "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%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16", - "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%93%AA", + "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%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-axis%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-the-range", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1", - "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%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-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-mloperand-datatype%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4", + "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%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3", - "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-mloperand-datatype%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5", "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-shape%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6", + "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%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-dom-mlbatchnormalizationoptions-epsilon%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlbatchnormalizationoptions-epsilon%E2%91%A1", @@ -1068,24 +1077,24 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%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-exceptiondef-typeerror%E2%91%A1%E2%91%A5", - "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%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-shape%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8", + "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%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-dom-mlbatchnormalizationoptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0", - "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-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%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-mloperand-shape%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A0", + "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%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-operators%E2%91%A8", "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%A2%E2%91%A5", @@ -1106,14 +1115,14 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast", "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-cast-input-type-input", - "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-type", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast-input-type-type", - "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-cast-input-type-input%E2%91%A0", @@ -1123,7 +1132,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32", "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-dom-mloperanddatatype-int64%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint64%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8", @@ -1132,7 +1141,7 @@ "https://www.w3.org/TR/webnn/#ref-for-implementation-defined%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint64%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A0", @@ -1144,13 +1153,13 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-cast", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%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-dfn-throw%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%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%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%93%AA", + "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%A0", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3", @@ -1182,13 +1191,13 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-clamp", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A8", - "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-invalidstateerror%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%93%AA", - "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%A0", + "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%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-minvalue%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-minvalue%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A2", @@ -1199,8 +1208,8 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-minvalue%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-maxvalue%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%A1", + "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%A2", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlclampoptions-minvalue%E2%91%A3", @@ -1216,63 +1225,63 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-inputs", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-concat-inputs-axis-axis", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-inputs", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-concat-inputs-axis-axis", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%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-concat", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%93%AA", - "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%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-item", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-list-is-empty%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-list-is-empty%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%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-exceptiondef-typeerror%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-clone", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A2", "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%A0", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A6", - "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%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-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-valid-dimension%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%A2%E2%91%A8", + "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%A5", + "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0", + "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%93%AA", "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-create-an-mloperand%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A2", @@ -1289,18 +1298,18 @@ "https://www.w3.org/TR/webnn/#dictdef-mlconv2doptions", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-padding", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-dilations", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-inputlayout", @@ -1322,7 +1331,7 @@ "https://www.w3.org/TR/webnn/#dom-mlconv2doptions-strides", "https://www.w3.org/TR/webnn/#dom-mlconv2doptions-dilations", "https://www.w3.org/TR/webnn/#dom-mlconv2doptions-groups", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlconv2doptions-inputlayout", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A1", @@ -1362,85 +1371,85 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-conv2d", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A0", - "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%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A4", "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%A0", - "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%93%AA", + "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%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-dom-mloperanddatatype-float32%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%93%AA", + "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%A4", "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%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4", "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%A7", - "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%A4", + "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%A3%E2%91%A5", "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%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A5", "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%A8", - "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%A3%E2%91%A5", - "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%A4%E2%93%AA", "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-mlconv2doptions-strides%E2%91%A2", + "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%A3%E2%91%A7", "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%A3", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A6", "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%93%AA", - "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%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-dilations%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%A3%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-groups%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-dilations%E2%91%A2", "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%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A5", + "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%A4%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A6", "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%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-filterlayout%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2dfilteroperandlayout-hwio%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2dfilteroperandlayout-ohwi%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2dfilteroperandlayout-ihwo%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2dfilteroperandlayout-oihw%E2%91%A1", "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%A4%E2%91%A3", - "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-mlconv2doptions-groups%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-exceptiondef-typeerror%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%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-mloperand-shape%E2%91%A0%E2%91%A7", + "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%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-bias%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-mloperand-shape%E2%91%A0%E2%91%A8", "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%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A0", + "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%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-conv2d-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-padding%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconv2doptions-strides%E2%91%A3", @@ -1450,8 +1459,8 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A1", - "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%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-exceptiondef-typeerror%E2%91%A4%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", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A2", @@ -1473,26 +1482,26 @@ "https://www.w3.org/TR/webnn/#dictdef-mlconvtranspose2doptions", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-padding", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-dilations", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding", "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%A2", - "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-idl-unsigned-long%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes", "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%91%A1", + "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-dom-mlconvtranspose2doptions-groups", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-inputlayout", @@ -1518,7 +1527,7 @@ "https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-outputsizes", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-groups", - "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-idl-unsigned-long%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlconvtranspose2doptions-inputlayout", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A5", @@ -1555,99 +1564,99 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-convtranspose2d", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A3%E2%91%A7", "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%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%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/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A4", + "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%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A0", "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%A7", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A2", "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%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A1", "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%A8", "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-strides%E2%91%A2", "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%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A1", - "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%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A2", + "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%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A3", "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%A1%E2%93%AA", "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-dilations%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%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-dilations%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-dilations%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A5", "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%A1%E2%91%A0", "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-outputpadding%E2%91%A3", "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%A6%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A6", "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%A1%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%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A1", + "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-mlconvtranspose2doptions-outputpadding%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputpadding%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-strides%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A1", - "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-mlconvtranspose2doptions-groups%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/#ref-for-exceptiondef-typeerror%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A0%E2%91%A8", + "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%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%93%AA", "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%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A3", - "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-dom-mlconvtranspose2doptions-filterlayout%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2dfilteroperandlayout-iohw%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2dfilteroperandlayout-hwoi%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2dfilteroperandlayout-ohwi%E2%91%A0", - "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%A6%E2%93%AA", + "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%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-groups%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A2", - "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%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A1", "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%A6%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A6", + "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-mlconvtranspose2doptions-outputsizes%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlconvtranspose2doptions-outputsizes%E2%91%A3", @@ -1661,8 +1670,8 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nhwc%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%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-exceptiondef-typeerror%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A3", "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%A1%E2%91%A8", @@ -1734,26 +1743,26 @@ "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%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%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A3", - "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-dfn-throw%E2%91%A7%E2%93%AA", "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-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-dfn-throw%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A5", "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%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A0%E2%91%A3", "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%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%A0", - "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-shape%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A6", "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%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A4", @@ -1763,32 +1772,32 @@ "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/#ref-for-mlgraphbuilder-element-wise-binary-op%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%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-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%A7%E2%91%A3", "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-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%A7%E2%91%A5", "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/#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%A7%E2%91%A7", "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-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%A8%E2%93%AA", "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-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%A8%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/#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%A8%E2%91%A3", "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/#api-mlgraphbuilder-logical", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A0%E2%91%A3", @@ -1845,32 +1854,32 @@ "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A3", - "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%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A8", "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%A8%E2%91%A6", - "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-datatype%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A8%E2%91%A7", "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-datatype%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%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-exceptiondef-typeerror%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%93%AA", "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%A8%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A4", "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-exceptiondef-typeerror%E2%91%A7%E2%93%AA", - "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%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-mloperand-datatype%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A4", "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-exceptiondef-typeerror%E2%91%A7%E2%91%A0", + "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%A5", + "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%93%AA%E2%91%A1", + "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%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A5", @@ -1884,28 +1893,28 @@ "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/#ref-for-mlgraphbuilder-element-wise-logical-op%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%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-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%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%A0%E2%93%AA%E2%91%A5", "https://www.w3.org/TR/webnn/#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%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%A0%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#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%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%A0%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#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%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%A0%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-logicalnot", "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%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%A0%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-unary", "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%A3%E2%91%A5", @@ -1970,17 +1979,17 @@ "https://www.w3.org/TR/webnn/#ref-for-assert%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-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A4", - "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-invalidstateerror%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A7", - "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%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-list-contain", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A5", "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%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-list-contain", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%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-exceptiondef-typeerror%E2%91%A7%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-operators%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A0%E2%91%A0", @@ -1993,80 +2002,80 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%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-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/#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-dom-mloperanddatatype-float32%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A5", - "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%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/#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-dom-mloperanddatatype-float32%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A6", - "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%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/#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-dom-mloperanddatatype-float32%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A7", - "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%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/#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-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A8", - "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%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/#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-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%93%AA", - "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%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/#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%A1%E2%91%A8", "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-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#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-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%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-dfn-throw%E2%91%A0%E2%91%A2%E2%91%A1", + "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/#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-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%E2%91%A4", - "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%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/#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-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A2", - "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%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/#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-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A3", - "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%A2%E2%91%A7", + "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/#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-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A4", - "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%A3%E2%93%AA", + "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/#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-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%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%A3%E2%91%A1", + "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/#api-mlgraphbuilder-elu", "https://www.w3.org/TR/webnn/#dictdef-mleluoptions", "https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A2", @@ -2089,18 +2098,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-elu", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A5", - "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%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%93%AA", - "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%A3", + "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%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A3%E2%91%A4", - "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%A3%E2%91%A5", + "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-mleluoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mleluoptions-alpha%E2%91%A1", @@ -2118,32 +2127,32 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-expand-input-newshape-input", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A2", "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%A3", + "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-dom-mlgraphbuilder-expand-input-newshape-newshape", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-expand-input-newshape-input", "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-expand-input-newshape-newshape", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A3", "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-expand", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A6", - "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/#ref-for-invalidstateerror%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A1", - "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-exceptiondef-typeerror%E2%91%A7%E2%91%A5", + "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-exceptiondef-typeerror%E2%91%A7%E2%91%A6", "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", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A2%E2%91%A8", "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-unidirectionally-broadcasting-the-shapes", - "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%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%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/#ref-for-exceptiondef-typeerror%E2%91%A7%E2%91%A7", "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%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A0%E2%91%A8", @@ -2153,7 +2162,7 @@ "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-gather", "https://www.w3.org/TR/webnn/#dictdef-mlgatheroptions", "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%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgatheroptions-axis", "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%A7%E2%91%A2", @@ -2166,7 +2175,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gather-input-indices-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgatheroptions%E2%91%A0", "https://www.w3.org/TR/webnn/#dom-mlgatheroptions-axis", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A6", + "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-mloperand-rank%E2%91%A0%E2%91%A5", "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%A5", @@ -2174,7 +2183,7 @@ "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-mloperanddatatype-int32%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A2", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather-input-indices-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgatheroptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A0%E2%91%A7%E2%91%A7", @@ -2187,25 +2196,25 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gather", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%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/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A4", - "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%A7%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%A7%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A5", - "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%A7%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlgatheroptions-axis%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlgatheroptions-axis%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-iteration-break", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A5", @@ -2233,18 +2242,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gelu", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A0%E2%91%A8", - "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%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A6", - "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%A0", + "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%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-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%A1", + "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%A2", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A3", "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%A4", @@ -2295,26 +2304,26 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gemm", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%93%AA", - "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-invalidstateerror%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A5%E2%91%A8", - "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%A2", + "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%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-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%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A0", - "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-datatype%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A1", + "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%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-alpha%E2%91%A1", @@ -2324,22 +2333,22 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgemmoptions-beta%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A6", "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%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A1", "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%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A6", + "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%A8%E2%91%A7", "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%A5", "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%A5%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A8", "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%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A3%E2%91%A8", + "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%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A0%E2%91%A7", @@ -2395,10 +2404,10 @@ "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-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-recurrentweight", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A7", + "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-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-steps", "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%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-hiddensize", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgruoptions", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-options", @@ -2434,9 +2443,9 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-layout%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-steps", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-hiddensize", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru-input-weight-recurrentweight-steps-hiddensize-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgruoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A0%E2%91%A6", @@ -2445,7 +2454,7 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-gru", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%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-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A6", @@ -2456,36 +2465,36 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A1%E2%91%A8", "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%A2%E2%93%AA", - "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%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A2", "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%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A2", "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%93%AA%E2%91%A3", "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%A6%E2%93%AA", + "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-mloperand-shape%E2%91%A2%E2%91%A3", + "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-mlgruoptions-direction%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkdirection-both%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A4", - "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%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A5", "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%93%AA%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A6", "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%93%AA%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A3", + "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%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-recurrentbias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A4", @@ -2493,34 +2502,34 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A4", - "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%93%AA%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A6", "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%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A7", + "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%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%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%E2%91%A6", - "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%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A2%E2%91%A7", "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%A0", + "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%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-initialhiddenstate%E2%91%A1", "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-datatype%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A4%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-exceptiondef-typeerror%E2%91%A0%E2%91%A0%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%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%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-exceptiondef-typeerror%E2%91%A0%E2%91%A0%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%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-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%A0%E2%91%A3", + "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%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgruoptions-activations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-sigmoid%E2%91%A0", @@ -2585,7 +2594,7 @@ "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-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-hiddenstate", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-hiddensize", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlgrucelloptions", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-options", @@ -2614,14 +2623,14 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-hiddenstate", "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-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-hiddensize", - "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%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell-input-weight-recurrentweight-hiddenstate-hiddensize-options-options", "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%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-grucell", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A1", - "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%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A7", @@ -2630,23 +2639,20 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias%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-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%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%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A3", "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%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A3", "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%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A2", @@ -2655,9 +2661,12 @@ "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%A6", "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-valid-dimension%E2%91%A5", + "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%A7", "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-valid-dimension%E2%91%A5", + "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%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A6", @@ -2665,25 +2674,25 @@ "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-datatype%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A5", - "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%A2", - "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%A8%E2%93%AA", "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-mloperand-shape%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-recurrentbias%E2%91%A2", "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-datatype%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A5", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A5", + "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%A8%E2%91%A2", + "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-mlgrucelloptions-activations%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A2", - "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-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A3", + "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-list-clone%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgrucelloptions-activations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-sigmoid%E2%91%A2", @@ -2737,18 +2746,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardsigmoid", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%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%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A6%E2%91%A8", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A7", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A5", - "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-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A6", + "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-mlhardsigmoidoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlhardsigmoidoptions-alpha%E2%91%A1", @@ -2774,18 +2783,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-hardswish", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A3", - "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-dfn-throw%E2%91%A0%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A0", - "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%93%AA", + "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%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-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%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A5", "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%A1%E2%91%A1", @@ -2815,13 +2824,13 @@ "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlinstancenormalizationoptions-bias", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinputoperandlayout-nchw%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlinstancenormalizationoptions-epsilon", "https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlinstancenormalizationoptions-layout", @@ -2834,7 +2843,7 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-instancenormalization", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%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/#ref-for-invalidstateerror%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A0", @@ -2843,16 +2852,16 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-bias%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A1", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A1", - "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-mloperand-rank%E2%91%A1%E2%91%A4", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%93%AA%E2%91%A3", + "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-dom-mlinstancenormalizationoptions-epsilon%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlinstancenormalizationoptions-epsilon%E2%91%A1", @@ -2863,22 +2872,22 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A6", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A3%E2%91%A8", - "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%A1%E2%93%AA%E2%91%A4", "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%A4%E2%93%AA", + "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%A1%E2%93%AA%E2%91%A5", + "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-mlinstancenormalizationoptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A6%E2%91%A8", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A0", - "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%A1%E2%93%AA%E2%91%A6", "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-mloperand-shape%E2%91%A4%E2%91%A1", + "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%A1%E2%93%AA%E2%91%A7", + "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-copy-an-mloperand%E2%91%A6", "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%A1%E2%91%A2", @@ -2901,7 +2910,7 @@ "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%A8", "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%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-dom-mllayernormalizationoptions-axes", "https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-epsilon", @@ -2928,7 +2937,7 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-layernormalization", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A5", - "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/#ref-for-invalidstateerror%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A1", @@ -2937,13 +2946,13 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%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-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%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%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-dom-mllayernormalizationoptions-axes%E2%91%A1", @@ -2963,43 +2972,43 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A3", + "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-mloperand-rank%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A3", - "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-dfn-throw%E2%91%A1%E2%91%A0%E2%91%A4", + "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-list-iterate%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mllayernormalizationoptions-axes%E2%91%A6", "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%A1%E2%91%A0%E2%91%A4", - "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-mloperand-shape%E2%91%A4%E2%91%A2", - "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%A4%E2%91%A5", - "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%A1%E2%91%A0%E2%91%A5", "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-dom-mllayernormalizationoptions-bias%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-mloperand-shape%E2%91%A4%E2%91%A3", + "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%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A4", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A6", + "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%A4%E2%91%A6", + "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%91%A0%E2%91%A7", + "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-copy-an-mloperand%E2%91%A7", "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%A1%E2%91%A3", @@ -3033,18 +3042,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-leakyrelu", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A6", - "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/#ref-for-invalidstateerror%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A6", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A7", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%93%AA", - "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-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A0", + "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-dom-mlleakyreluoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlleakyreluoptions-alpha%E2%91%A1", @@ -3080,18 +3089,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-linear", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A7", - "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%A1%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A7%E2%91%A8", - "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%A4%E2%93%AA", + "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%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-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%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllinearoptions-alpha%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllinearoptions-alpha%E2%91%A1", @@ -3140,10 +3149,10 @@ "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-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-recurrentweight", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A4", + "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-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-steps", "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%A5", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-hiddensize", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmoptions", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-options", @@ -3182,9 +3191,9 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A1%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-layout%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-steps", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-hiddensize", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm-input-weight-recurrentweight-steps-hiddensize-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A1", @@ -3193,7 +3202,7 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstm", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A1%E2%91%A8", - "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-invalidstateerror%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A4", @@ -3208,40 +3217,40 @@ "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-mllstmoptions-initialcellstate%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%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-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A1", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-direction%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkdirection-both%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A2", - "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%A1%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A5", + "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%A1%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A2", + "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%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A2", "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%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A4", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%93%AA", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A0", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A7", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A8", @@ -3249,52 +3258,52 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A6", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A0", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A1", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-recurrentbias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A8%E2%91%A8", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A1", "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%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A2", + "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%A5%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-peepholeweight%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA%E2%91%A0", - "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%A5%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A2", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A5", + "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%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialhiddenstate%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA%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-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A6", - "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%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A4", + "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%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-initialcellstate%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA%E2%91%A4", - "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%A5%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A4", "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%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-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-activations%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%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%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmoptions-activations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-sigmoid%E2%91%A4", @@ -3373,7 +3382,7 @@ "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-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%A2", - "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-idl-unsigned-long%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-hiddensize", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmcelloptions", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-options", @@ -3405,7 +3414,7 @@ "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-mloperand%E2%91%A1%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-hiddensize", - "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-idl-unsigned-long%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell-input-weight-recurrentweight-hiddenstate-cellstate-hiddensize-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mllstmcelloptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A4", @@ -3413,7 +3422,7 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-lstmcell", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%93%AA", - "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%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A5", @@ -3424,25 +3433,22 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-peepholeweight%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A7", - "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%A6%E2%91%A1", + "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%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-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%A6%E2%91%A2", - "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%A1%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%93%AA", + "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%A1%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%93%AA", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A5%E2%91%A7", "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%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A6", @@ -3452,9 +3458,12 @@ "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A0", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A1", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%93%AA", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-bias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A0", @@ -3462,34 +3471,34 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%91%A1", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-recurrentbias%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A2", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A3", + "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%A4%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-peepholeweight%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%91%A5", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A4", - "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%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A4", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A7%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%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A7%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-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mllstmcelloptions-activations%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlrecurrentnetworkactivation-sigmoid%E2%91%A6", @@ -3543,46 +3552,46 @@ "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-mloperand%E2%91%A2%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%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-mloperand-rank%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A5", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A7", "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-exceptiondef-typeerror%E2%91%A0%E2%91%A7%E2%91%A8", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-list-remove", "https://www.w3.org/TR/webnn/#ref-for-list-clone%E2%91%A0%E2%91%A4", "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%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-append", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-matmul", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A0", - "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-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%93%AA", + "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-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A3", "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-dimensions%E2%91%A1%E2%91%A4", "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%A5%E2%91%A8", + "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-dom-mloperanddescriptor-datatype%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A0", @@ -3609,11 +3618,11 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-input", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-beginningpadding", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-endingpadding", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpadoptions", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-options", @@ -3628,44 +3637,44 @@ "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-pad-input-beginningpadding-endingpadding-options-beginningpadding", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-endingpadding", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad-input-beginningpadding-endingpadding-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlpadoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#mlgraphbuilder-calculate-padding-output-sizes", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-pad", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A1", - "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-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A4", + "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%A1%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-padding-output-sizes", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%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-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpadoptions-value%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-cast%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpadoptions-value%E2%91%A1", @@ -3685,19 +3694,19 @@ "https://www.w3.org/TR/webnn/#dictdef-mlpool2doptions", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A5", - "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-idl-unsigned-long%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-windowdimensions", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A5", + "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-padding", "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%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides", "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%A1%E2%91%A8", - "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-idl-unsigned-long%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations", "https://www.w3.org/TR/webnn/#ref-for-enumdef-mlinputoperandlayout%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-layout", @@ -3705,7 +3714,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-roundingtype", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A8", + "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-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%A8", @@ -3771,25 +3780,25 @@ "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A2", - "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-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A5", - "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-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-list-contain%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A0%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-list-contain%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A2", "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-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%93%AA", + "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%A1%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-windowdimensions%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A1", "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%A7%E2%91%A6", @@ -3799,42 +3808,42 @@ "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-padding%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%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-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A2", "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%A7%E2%91%A8", "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%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-strides%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A2", - "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%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A3", + "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%A7%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-outputsizes%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A4", - "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%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A5", + "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%A7%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A6", "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%A8%E2%91%A0", "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%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A6", - "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%A7%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-dilations%E2%91%A3", + "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-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-descriptor-slot%E2%91%A8", "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", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-roundingtype%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-windowdimensions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlpool2doptions-padding%E2%91%A3", @@ -3844,8 +3853,8 @@ "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%93%AA", "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-create-an-mloperand%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A6", @@ -3857,18 +3866,18 @@ "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-pooling-op", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A0", - "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-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%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#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-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A1", - "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-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%A8%E2%91%A1", "https://www.w3.org/TR/webnn/#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%A8%E2%91%A1", "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-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A3", "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", @@ -3889,33 +3898,33 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-prelu", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A3", - "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%A8%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-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%A0%E2%91%A1%E2%91%A6", "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-unidirectionally-broadcasting-the-shapes%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A3", "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%A0%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A5", @@ -3928,7 +3937,7 @@ "https://www.w3.org/TR/webnn/#dictdef-mlreduceoptions", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A0", - "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-idl-unsigned-long%E2%91%A3%E2%91%A8", "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%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A0", @@ -4026,24 +4035,24 @@ "https://www.w3.org/TR/webnn/#ref-for-assert%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A1%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-list-contain%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-list-contain%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-reduction-output-sizes%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-axes%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A3", "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%A0%E2%91%A1%E2%91%A8", @@ -4060,64 +4069,64 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#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-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/webnn/#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-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/webnn/#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-dom-mloperanddatatype-float32%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%93%AA%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#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%A2%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#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-dom-mloperanddatatype-float32%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#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%A2%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#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-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#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-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#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-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint32%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlreduceoptions-keepdimensions%E2%91%A4", @@ -4133,20 +4142,20 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-relu", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int32%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int8%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A8", "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-operators%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A2%E2%91%A8", @@ -4164,11 +4173,11 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-scales", "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%A1", - "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-idl-unsigned-long%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A7", "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%A4%E2%91%A1", + "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-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%A4%E2%91%A0", @@ -4212,7 +4221,7 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-sizes%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-axes%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mlresample2doptions-scales%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A3", @@ -4221,27 +4230,27 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-resample2d", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%93%AA", - "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%A2%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-check-resample-options", + "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%A2%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-resample-output-sizes", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-check-resample-options", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-calculate-resample-output-sizes", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A2%E2%91%A8", @@ -4256,34 +4265,34 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape-input-newshape-input", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape-input-newshape-newshape", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape-input-newshape-input", "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-reshape-input-newshape-newshape", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%93%AA", - "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-idl-unsigned-long%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-reshape", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A3", - "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-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A4", + "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-list-size%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-valid-dimension%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%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%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-create-an-mloperand%E2%91%A1%E2%91%A6", @@ -4304,18 +4313,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-sigmoid", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A1", "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%A3%E2%91%A1", @@ -4329,53 +4338,53 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice-input-starts-sizes-input", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A0", "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%A5", + "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-dom-mlgraphbuilder-slice-input-starts-sizes-starts", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-slice-input-starts-sizes-sizes", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-input", "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-slice-input-starts-sizes-starts", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice-input-starts-sizes-sizes", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A3", - "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%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-slice", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-list-item%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A2%E2%91%A8", "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%A2%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-the-range%E2%91%A0%E2%91%A0", "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%A2%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webnn/#issue-b8ab142b", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#issue-b8ab142b", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%E2%91%A0%E2%91%A2", "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%A3%E2%91%A2", @@ -4387,31 +4396,31 @@ "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%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax-input-axis-input", - "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%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-softmax-input-axis-axis", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softmax-input-axis-input", "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-softmax-input-axis-axis", - "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%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/#dom-mlgraphbuilder-softmax", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%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/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A7", "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-operators%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A3", @@ -4429,18 +4438,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softplus", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%93%AA", "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-operators%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A4", @@ -4458,18 +4467,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-softsign", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%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-operators%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A5", @@ -4478,7 +4487,7 @@ "https://www.w3.org/TR/webnn/#api-mlgraphbuilder-split", "https://www.w3.org/TR/webnn/#dictdef-mlsplitoptions", "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%A5%E2%91%A1", + "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-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-idl-sequence%E2%91%A3%E2%91%A4", @@ -4487,71 +4496,71 @@ "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-split-input-splits-options-input", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A2%E2%91%A7", - "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-idl-unsigned-long%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A5", "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%A3", + "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-dom-mlgraphbuilder-split-input-splits-options-splits", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitoptions", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-split-input-splits-options-options", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-input", "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-split-input-splits-options-splits", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A4", "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-idl-unsigned-long%E2%91%A5%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A7", - "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%A6", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split-input-splits-options-options", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitoptions%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A3%E2%91%A8", "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-idl-unsigned-long%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%93%AA", + "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-list-size%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mlsplitoptions%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlsplitoptions-axis", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-split", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dom-mlsplitoptions-axis%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webnn/#ref-for-dom-mlsplitoptions-axis%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A4%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#issue-578f9ca8", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webnn/#issue-578f9ca8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-list%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-list-iterate%E2%91%A0%E2%91%A3", "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%A6", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A6", "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%A5%E2%91%A1", @@ -4568,18 +4577,18 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-tanh", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A8", "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-operators%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A7", @@ -4589,7 +4598,7 @@ "https://www.w3.org/TR/webnn/#dictdef-mltransposeoptions", "https://www.w3.org/TR/webnn/#ref-for-idl-sequence%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A3", "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%91%A7", @@ -4610,29 +4619,29 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-transpose", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%93%AA", "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%A8%E2%91%A7", "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%A8%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-dom-mltransposeoptions-permutation%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-map-exists%E2%91%A8%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-list-size%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-mloperand-rank%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%93%AA", - "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%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A0", + "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%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A5%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A2", "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-operators%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperand-operator-slot%E2%91%A3%E2%91%A8", @@ -4643,7 +4652,7 @@ "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dom-mltriangularoptions-upper", "https://www.w3.org/TR/webnn/#ref-for-EnforceRange%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-idl-long", + "https://www.w3.org/TR/webnn/#ref-for-idl-long%E2%91%A0", "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%A8%E2%91%A1", @@ -4656,7 +4665,7 @@ "https://www.w3.org/TR/webnn/#dom-mltriangularoptions-upper", "https://www.w3.org/TR/webnn/#ref-for-idl-boolean%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#dom-mltriangularoptions-diagonal", - "https://www.w3.org/TR/webnn/#ref-for-idl-long%E2%91%A0", + "https://www.w3.org/TR/webnn/#ref-for-idl-long%E2%91%A1", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular-input-options-input", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A2%E2%91%A8%E2%91%A3", "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular-input-options-options", @@ -4665,16 +4674,16 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-triangular", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A2", - "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%A2%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A3", + "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%A2%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-copy-an-mloperand%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%A4%E2%93%AA", @@ -4703,34 +4712,34 @@ "https://www.w3.org/TR/webnn/#dom-mlgraphbuilder-where", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-hasbuilt-slot%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-invalidstateerror%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-DOMException%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-mlgraphbuilder-validate-operand%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-this%E2%91%A0%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint8%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-dictdef-mloperanddescriptor%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-datatype%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-mloperand-datatype%E2%91%A0%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A2%E2%91%A1", "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%A8%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webnn/#ref-for-bidirectionally-broadcastable", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddescriptor-dimensions%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-mloperand-shape%E2%91%A8%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A4%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%A2%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-dfn-throw%E2%91%A2%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webnn/#ref-for-exceptiondef-typeerror%E2%91%A1%E2%91%A5%E2%93%AA", "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%A0%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-operators%E2%91%A4%E2%93%AA", @@ -4773,15 +4782,15 @@ "https://www.w3.org/TR/webnn/#algorithms-casting", "https://www.w3.org/TR/webnn/#ref-for-typedefdef-mlnumber%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-idl-double%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-mloperand%E2%91%A3%E2%93%AA%E2%91%A3", "https://www.w3.org/TR/webnn/#cast", - "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/webnn/#ref-for-converttofloat", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/webnn/#ref-for-converttofloat%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A6", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A4", "https://www.w3.org/TR/webnn/#ref-for-converttoint", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint64%E2%91%A2", "https://www.w3.org/TR/webnn/#ref-for-converttoint%E2%91%A0", @@ -4811,15 +4820,15 @@ "https://www.w3.org/TR/webnn/#ref-for-dom-mlgraphbuilder-reshape%E2%91%A2", "https://www.w3.org/TR/webnn/#appendices", "https://www.w3.org/TR/webnn/#appendices-mloperanddatatype-arraybufferview-compatibility", - "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webnn/#ref-for-enumdef-mloperanddatatype%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/webnn/#ref-for-ArrayBufferView%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float32%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/webnn/#ref-for-idl-Float32Array", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-float16%E2%91%A4%E2%93%AA", "https://www.w3.org/TR/webnn/#ref-for-idl-Float16Array", - "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A7", + "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-int64%E2%91%A5", "https://www.w3.org/TR/webnn/#ref-for-idl-BigInt64Array", "https://www.w3.org/TR/webnn/#ref-for-dom-mloperanddatatype-uint64%E2%91%A3", "https://www.w3.org/TR/webnn/#ref-for-idl-BigUint64Array", diff --git a/tr/index.json b/tr/index.json index 0ce1e6ed3c20..37bc13b391f8 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-07-24T01:47:07.886Z", + "date": "2024-07-25T01:33:47.543Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -695,7 +695,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "24 July 2024", + "date": "25 July 2024", "links": "links/av1-spec.json" }, { @@ -1863,11 +1863,11 @@ ], "crawled": "https://www.w3.org/TR/credential-management-1/", "crawlCacheInfo": { - "lastModified": "Thu, 13 Jun 2024 05:33:09 GMT" + "lastModified": "Wed, 24 Jul 2024 16:35:20 GMT" }, "generator": "bikeshed", - "date": "13 June 2024", - "revision": "75bcf508d5b726e3181f895afaf417d3c15ce546", + "date": "24 July 2024", + "revision": "ee91210eeafd66cc5fe67fc80b68b6cbc64b6e86", "algorithms": "algorithms/credential-management-1.json", "links": "links/credential-management-1.json", "refs": "refs/credential-management-1.json", @@ -11473,11 +11473,11 @@ ], "crawled": "https://www.w3.org/TR/media-capabilities/", "crawlCacheInfo": { - "lastModified": "Thu, 18 Jul 2024 10:58:29 GMT" + "lastModified": "Wed, 24 Jul 2024 10:37:30 GMT" }, "generator": "bikeshed", - "date": "18 July 2024", - "revision": "1d52c00b190ffca9b5106b08781f48a672483a11", + "date": "24 July 2024", + "revision": "a5b96e1fd4fee163c478097a3b8b0858850f2ebd", "algorithms": "algorithms/media-capabilities.json", "links": "links/media-capabilities.json", "refs": "refs/media-capabilities.json", @@ -13615,11 +13615,11 @@ ], "crawled": "https://www.w3.org/TR/permissions-policy-1/", "crawlCacheInfo": { - "lastModified": "Tue, 23 Jul 2024 17:04:54 GMT" + "lastModified": "Wed, 24 Jul 2024 15:32:12 GMT" }, "generator": "bikeshed", - "date": "23 July 2024", - "revision": "d10e9e7a781bcb7824c402a2a28fafd1c1c28fdd", + "date": "24 July 2024", + "revision": "f15a4548691ea69a87227c0f67571da2cc0e08c1", "algorithms": "algorithms/permissions-policy-1.json", "links": "links/permissions-policy-1.json", "refs": "refs/permissions-policy-1.json", @@ -17427,11 +17427,11 @@ ], "crawled": "https://www.w3.org/TR/vc-data-model-2.0/", "crawlCacheInfo": { - "lastModified": "Sun, 21 Jul 2024 19:58:11 GMT" + "lastModified": "Wed, 24 Jul 2024 20:56:45 GMT" }, "generator": "respec", - "date": "21 July 2024", - "revision": "59ed20b1886d34976fa9e729c0b70556cd298e39", + "date": "24 July 2024", + "revision": "93a0b98cb40a851f3916afba8fd444f1e395f9a4", "algorithms": "algorithms/vc-data-model-2.0.json", "links": "links/vc-data-model-2.0.json", "refs": "refs/vc-data-model-2.0.json", @@ -19454,11 +19454,11 @@ ], "crawled": "https://www.w3.org/TR/webnn/", "crawlCacheInfo": { - "lastModified": "Tue, 23 Jul 2024 01:04:34 GMT" + "lastModified": "Wed, 24 Jul 2024 02:12:13 GMT" }, "generator": "bikeshed", - "date": "23 July 2024", - "revision": "dcc423d82d4bb22276e251882a565ee702e91bb8", + "date": "24 July 2024", + "revision": "71dd440410f2547869480bea5df93cef098f16c1", "algorithms": "algorithms/webnn.json", "links": "links/webnn.json", "refs": "refs/webnn.json", diff --git a/tr/links/credential-management-1.json b/tr/links/credential-management-1.json index c812ea33cea8..6eed7c179aa1 100644 --- a/tr/links/credential-management-1.json +++ b/tr/links/credential-management-1.json @@ -41,27 +41,18 @@ "https://publicsuffix.org/": {}, "https://w3c.github.io/webappsec/usecases/credentialmanagement/": {}, "https://webidl.spec.whatwg.org/": {}, + "https://wicg.github.io/digital-credentials/": {}, + "https://wicg.github.io/digital-identities/": {}, "https://wicg.github.io/web-otp/": {}, "https://wicg.io/": {}, "https://www.w3.org/2001/tag/doc/promises-guide": {}, "https://www.w3.org/2011/webappsec/": {}, - "https://www.w3.org/2023/Process-20231103/": { - "anchors": [ - "recs-and-notes" - ] - }, - "https://www.w3.org/Consortium/Patent-Policy/": { - "anchors": [ - "def-essential", - "sec-Disclosure" - ] - }, "https://www.w3.org/Mail/Request": {}, "https://www.w3.org/TR/": {}, "https://www.w3.org/TR/CSP3/": {}, "https://www.w3.org/TR/SRI/": {}, "https://www.w3.org/TR/XMLHttpRequest/": {}, - "https://www.w3.org/TR/permissions-policy-1/": {}, + "https://www.w3.org/TR/permissions/": {}, "https://www.w3.org/TR/secure-contexts/": {}, "https://www.w3.org/TR/webauthn-1/": {}, "https://www.w3.org/TR/webauthn-3/": {}, @@ -69,6 +60,17 @@ "https://www.w3.org/community/fed-id/": {}, "https://www.w3.org/groups/wg/webappsec": {}, "https://www.w3.org/groups/wg/webappsec/ipr": {}, + "https://www.w3.org/policies/patent-policy/": { + "anchors": [ + "def-essential", + "sec-Disclosure" + ] + }, + "https://www.w3.org/policies/process/20231103/": { + "anchors": [ + "recs-and-notes" + ] + }, "https://xhr.spec.whatwg.org/": {} }, "autolinks": { @@ -83,7 +85,6 @@ "https://fedidcg.github.io/FedCM/": { "anchors": [ "identitycredential", - "dom-credentialrequestoptions-identity", "identity-credentials-get" ] }, @@ -114,6 +115,11 @@ "top-level-browsing-context" ] }, + "https://html.spec.whatwg.org/multipage/dom.html": { + "anchors": [ + "concept-document-permissions-policy" + ] + }, "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html": { "anchors": [ "form-owner", @@ -187,9 +193,9 @@ "map-iterate", "list-contain", "set-append", - "map-exists", "list-size", "list-remove", + "map-exists", "ascii-case-insensitive" ] }, @@ -227,19 +233,29 @@ "idl-sequence" ] }, + "https://wicg.github.io/digital-credentials": { + "anchors": [ + "dom-digitalcredential" + ] + }, "https://wicg.github.io/web-otp": { "anchors": [ "otpcredential" ] }, + "https://wicg.github.io/web-otp/": { + "anchors": [ + "otp-credentials-feature" + ] + }, "https://www.w3.org/2001/tag/doc/promises-guide": { "anchors": [ "should-promise-call" ] }, - "https://www.w3.org/TR/permissions-policy-1/": { + "https://www.w3.org/TR/permissions/": { "anchors": [ - "policy-controlled-feature" + "dfn-permission" ] }, "https://www.w3.org/TR/secure-contexts/": { @@ -250,9 +266,7 @@ "https://www.w3.org/TR/webauthn-3/": { "anchors": [ "publickeycredential", - "dom-credentialrequestoptions-publickey", "publickey-credentials-get-feature", - "dom-credentialcreationoptions-publickey", "publickey-credentials-create-feature", "dom-publickeycredential-create-slot", "dom-publickeycredential-discoverfromexternalsource-slot" diff --git a/tr/links/webnn.json b/tr/links/webnn.json index a2556a112cbb..70b5a8c2dda1 100644 --- a/tr/links/webnn.json +++ b/tr/links/webnn.json @@ -234,6 +234,7 @@ "idl-sequence", "EnforceRange", "idl-unsigned-long", + "idl-long", "idl-bigint", "idl-unrestricted-double", "idl-double", @@ -245,7 +246,6 @@ "dfn-get-buffer-source-copy", "idl-ArrayBuffer", "idl-float", - "idl-long", "idl-Float32Array", "idl-Float16Array", "idl-BigInt64Array", diff --git a/tr/refs/credential-management-1.json b/tr/refs/credential-management-1.json index 112ba7b65633..e4223de8af07 100644 --- a/tr/refs/credential-management-1.json +++ b/tr/refs/credential-management-1.json @@ -9,6 +9,10 @@ "name": "CSP", "url": "https://www.w3.org/TR/CSP3/" }, + { + "name": "DIGITAL-IDENTITIES", + "url": "https://wicg.github.io/digital-identities/" + }, { "name": "DOM", "url": "https://dom.spec.whatwg.org/" @@ -30,8 +34,8 @@ "url": "https://infra.spec.whatwg.org/" }, { - "name": "PERMISSIONS-POLICY-1", - "url": "https://www.w3.org/TR/permissions-policy-1/" + "name": "PERMISSIONS", + "url": "https://www.w3.org/TR/permissions/" }, { "name": "PROMISES-GUIDE", @@ -67,6 +71,10 @@ "name": "BROWSERID", "url": "https://github.com/mozilla/id-specs/blob/prod/browserid/index.md" }, + { + "name": "DIGITAL-CREDENTIALS", + "url": "https://wicg.github.io/digital-credentials/" + }, { "name": "SRI", "url": "https://www.w3.org/TR/SRI/"