@webref/idl 3.60.3 → 3.61.0

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/SVG.idl CHANGED
@@ -418,10 +418,6 @@ interface SVGAnimatedPreserveAspectRatio {
418
418
  [SameObject] readonly attribute SVGPreserveAspectRatio animVal;
419
419
  };
420
420
 
421
- [Exposed=Window]
422
- interface SVGPathElement : SVGGeometryElement {
423
- };
424
-
425
421
  [Exposed=Window]
426
422
  interface SVGRectElement : SVGGeometryElement {
427
423
  [SameObject] readonly attribute SVGAnimatedLength x;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.60.3",
4
+ "version": "3.61.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/ppa.idl CHANGED
@@ -10,13 +10,12 @@ partial interface Navigator {
10
10
  enum PrivateAttributionProtocol { "dap-12-histogram", "tee-00" };
11
11
 
12
12
  dictionary PrivateAttributionAggregationService {
13
- required USVString url;
14
13
  required DOMString protocol;
15
14
  };
16
15
 
17
16
  [SecureContext, Exposed=Window]
18
17
  interface PrivateAttributionAggregationServices {
19
- readonly setlike<PrivateAttributionAggregationService>;
18
+ readonly maplike<USVString, PrivateAttributionAggregationService>;
20
19
  };
21
20
 
22
21
  [SecureContext, Exposed=Window]
package/svg-paths.idl ADDED
@@ -0,0 +1,31 @@
1
+ // GENERATED CONTENT - DO NOT EDIT
2
+ // Content was automatically extracted by Reffy into webref
3
+ // (https://github.com/w3c/webref)
4
+ // Source: SVG Paths (https://svgwg.org/specs/paths/)
5
+
6
+ [LegacyNoInterfaceObject, Exposed=Window]
7
+ interface SVGPathSegment {
8
+ attribute DOMString type;
9
+ attribute FrozenArray<float> values;
10
+ };
11
+
12
+ dictionary SVGPathDataSettings {
13
+ boolean normalize = false;
14
+ };
15
+
16
+ interface mixin SVGPathData {
17
+ sequence<SVGPathSegment> getPathData(optional SVGPathDataSettings settings = {});
18
+ undefined setPathData(sequence<SVGPathSegment> pathData);
19
+ };
20
+
21
+ [Exposed=Window]
22
+ interface SVGPathElement : SVGGeometryElement {
23
+
24
+ readonly attribute SVGAnimatedNumber pathLength;
25
+
26
+ float getTotalLength();
27
+ DOMPoint getPointAtLength(float distance);
28
+ SVGPathSegment? getPathSegmentAtLength(float distance);
29
+ };
30
+
31
+ SVGPathElement includes SVGPathData;