@webref/idl 3.47.0 → 3.47.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DOM-Parsing.idl +0 -4
- package/css-properties-values-api.idl +4 -4
- package/geolocation.idl +2 -0
- package/html.idl +4 -0
- package/package.json +1 -1
- package/webcodecs.idl +2 -0
- package/webgl1.idl +1 -0
- package/webnn.idl +4 -8
package/DOM-Parsing.idl
CHANGED
|
@@ -16,8 +16,8 @@ partial namespace CSS {
|
|
|
16
16
|
|
|
17
17
|
[Exposed=Window]
|
|
18
18
|
interface CSSPropertyRule : CSSRule {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
readonly attribute CSSOMString name;
|
|
20
|
+
readonly attribute CSSOMString syntax;
|
|
21
|
+
readonly attribute boolean inherits;
|
|
22
|
+
readonly attribute CSSOMString? initialValue;
|
|
23
23
|
};
|
package/geolocation.idl
CHANGED
|
@@ -42,6 +42,7 @@ dictionary PositionOptions {
|
|
|
42
42
|
interface GeolocationPosition {
|
|
43
43
|
readonly attribute GeolocationCoordinates coords;
|
|
44
44
|
readonly attribute EpochTimeStamp timestamp;
|
|
45
|
+
[Default] object toJSON();
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
[Exposed=Window, SecureContext]
|
|
@@ -53,6 +54,7 @@ interface GeolocationCoordinates {
|
|
|
53
54
|
readonly attribute double? altitudeAccuracy;
|
|
54
55
|
readonly attribute double? heading;
|
|
55
56
|
readonly attribute double? speed;
|
|
57
|
+
[Default] object toJSON();
|
|
56
58
|
};
|
|
57
59
|
|
|
58
60
|
[Exposed=Window]
|
package/html.idl
CHANGED
|
@@ -2328,6 +2328,10 @@ enum DOMParserSupportedType {
|
|
|
2328
2328
|
"image/svg+xml"
|
|
2329
2329
|
};
|
|
2330
2330
|
|
|
2331
|
+
partial interface Range {
|
|
2332
|
+
[CEReactions, NewObject] DocumentFragment createContextualFragment(HTMLString string);
|
|
2333
|
+
};
|
|
2334
|
+
|
|
2331
2335
|
[Exposed=Window]
|
|
2332
2336
|
interface Navigator {
|
|
2333
2337
|
// objects implementing this interface also implement the interfaces given below
|
package/package.json
CHANGED
package/webcodecs.idl
CHANGED
package/webgl1.idl
CHANGED
package/webnn.idl
CHANGED
|
@@ -515,17 +515,13 @@ partial interface MLGraphBuilder {
|
|
|
515
515
|
};
|
|
516
516
|
|
|
517
517
|
partial interface MLGraphBuilder {
|
|
518
|
-
MLOperand softmax(MLOperand input);
|
|
519
|
-
MLActivation softmax();
|
|
520
|
-
};
|
|
521
|
-
|
|
522
|
-
dictionary MLSoftplusOptions {
|
|
523
|
-
float steepness = 1;
|
|
518
|
+
MLOperand softmax(MLOperand input, unsigned long axis);
|
|
519
|
+
MLActivation softmax(unsigned long axis);
|
|
524
520
|
};
|
|
525
521
|
|
|
526
522
|
partial interface MLGraphBuilder {
|
|
527
|
-
MLOperand softplus(MLOperand input
|
|
528
|
-
MLActivation softplus(
|
|
523
|
+
MLOperand softplus(MLOperand input);
|
|
524
|
+
MLActivation softplus();
|
|
529
525
|
};
|
|
530
526
|
|
|
531
527
|
partial interface MLGraphBuilder {
|