@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 +9 -0
- package/package.json +1 -1
- package/storage-buckets.idl +2 -2
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
package/storage-buckets.idl
CHANGED
|
@@ -20,8 +20,8 @@ interface StorageBucketManager {
|
|
|
20
20
|
|
|
21
21
|
dictionary StorageBucketOptions {
|
|
22
22
|
boolean persisted = false;
|
|
23
|
-
unsigned long long? quota
|
|
24
|
-
DOMHighResTimeStamp? expires
|
|
23
|
+
unsigned long long? quota;
|
|
24
|
+
DOMHighResTimeStamp? expires;
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
[Exposed=(Window,Worker),
|