@webref/idl 3.41.1 → 3.41.2

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/longtasks.idl CHANGED
@@ -17,3 +17,12 @@ interface TaskAttributionTiming : PerformanceEntry {
17
17
  readonly attribute DOMString containerName;
18
18
  [Default] object toJSON();
19
19
  };
20
+
21
+ [Exposed=Window]
22
+ interface PerformanceLongAnimationFrameTiming : PerformanceEntry {
23
+ readonly attribute DOMHighResTimeStamp renderStart;
24
+ readonly attribute DOMHighResTimeStamp styleAndLayoutStart;
25
+ readonly attribute DOMHighResTimeStamp blockingDuration;
26
+
27
+ [Default] object toJSON();
28
+ };
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.41.1",
4
+ "version": "3.41.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -20,8 +20,8 @@ interface StorageBucketManager {
20
20
 
21
21
  dictionary StorageBucketOptions {
22
22
  boolean persisted = false;
23
- unsigned long long? quota = null;
24
- DOMHighResTimeStamp? expires = null;
23
+ unsigned long long? quota;
24
+ DOMHighResTimeStamp? expires;
25
25
  };
26
26
 
27
27
  [Exposed=(Window,Worker),