@webref/idl 3.74.1 → 3.75.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/container-timing.idl +21 -0
- package/css-mixins.idl +1 -1
- package/html.idl +2 -0
- package/package.json +1 -1
- package/resource-timing.idl +5 -4
- package/webrtc-encoded-transform.idl +6 -6
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: Container Timing API (https://wicg.github.io/container-timing/)
|
|
5
|
+
|
|
6
|
+
[Exposed=Window]
|
|
7
|
+
interface PerformanceContainerTiming : PerformanceEntry {
|
|
8
|
+
readonly attribute DOMString identifier;
|
|
9
|
+
readonly attribute DOMRectReadOnly intersectionRect;
|
|
10
|
+
readonly attribute unsigned long long size;
|
|
11
|
+
readonly attribute DOMHighResTimeStamp firstRenderTime;
|
|
12
|
+
readonly attribute Element? lastPaintedElement;
|
|
13
|
+
readonly attribute Element? rootElement;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
PerformanceContainerTiming includes PaintTimingMixin;
|
|
17
|
+
|
|
18
|
+
partial interface Element {
|
|
19
|
+
[CEReactions] attribute DOMString containertiming;
|
|
20
|
+
[CEReactions] attribute DOMString? containertimingIgnore;
|
|
21
|
+
};
|
package/css-mixins.idl
CHANGED
package/html.idl
CHANGED
|
@@ -531,6 +531,7 @@ interface HTMLVideoElement : HTMLMediaElement {
|
|
|
531
531
|
readonly attribute unsigned long videoHeight;
|
|
532
532
|
[CEReactions, ReflectURL] attribute USVString poster;
|
|
533
533
|
[CEReactions, Reflect] attribute boolean playsInline;
|
|
534
|
+
|
|
534
535
|
};
|
|
535
536
|
|
|
536
537
|
[Exposed=Window,
|
|
@@ -613,6 +614,7 @@ interface HTMLMediaElement : HTMLElement {
|
|
|
613
614
|
attribute double volume;
|
|
614
615
|
attribute boolean muted;
|
|
615
616
|
[CEReactions, Reflect="muted"] attribute boolean defaultMuted;
|
|
617
|
+
[CEReactions] attribute DOMString loading;
|
|
616
618
|
|
|
617
619
|
// tracks
|
|
618
620
|
[SameObject] readonly attribute AudioTrackList audioTracks;
|
package/package.json
CHANGED
package/resource-timing.idl
CHANGED
|
@@ -41,7 +41,8 @@ enum RenderBlockingStatusType {
|
|
|
41
41
|
"non-blocking"
|
|
42
42
|
};
|
|
43
43
|
|
|
44
|
-
partial interface Performance {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
44
|
+
partial interface Performance {
|
|
45
|
+
undefined clearResourceTimings ();
|
|
46
|
+
undefined setResourceTimingBufferSize (unsigned long maxSize);
|
|
47
|
+
attribute EventHandler onresourcetimingbufferfull;
|
|
48
|
+
};
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
4
|
// Source: WebRTC Encoded Transform (https://w3c.github.io/webrtc-encoded-transform/)
|
|
5
5
|
|
|
6
|
-
typedef (
|
|
7
|
-
typedef (
|
|
6
|
+
typedef (RTCSFrameSenderTransform or RTCRtpScriptTransform) RTCRtpSenderTransform;
|
|
7
|
+
typedef (RTCSFrameReceiverTransform or RTCRtpScriptTransform) RTCRtpReceiverTransform;
|
|
8
8
|
|
|
9
9
|
// New methods for RTCRtpSender and RTCRtpReceiver
|
|
10
10
|
partial interface RTCRtpSender {
|
|
@@ -42,16 +42,16 @@ interface mixin SFrameDecrypterManager {
|
|
|
42
42
|
};
|
|
43
43
|
|
|
44
44
|
[Exposed=Window]
|
|
45
|
-
interface
|
|
45
|
+
interface RTCSFrameSenderTransform {
|
|
46
46
|
constructor(optional SFrameTransformOptions options = {});
|
|
47
47
|
};
|
|
48
|
-
|
|
48
|
+
RTCSFrameSenderTransform includes SFrameEncrypterManager;
|
|
49
49
|
|
|
50
50
|
[Exposed=Window]
|
|
51
|
-
interface
|
|
51
|
+
interface RTCSFrameReceiverTransform : EventTarget {
|
|
52
52
|
constructor(optional SFrameTransformOptions options = {});
|
|
53
53
|
};
|
|
54
|
-
|
|
54
|
+
RTCSFrameReceiverTransform includes SFrameDecrypterManager;
|
|
55
55
|
|
|
56
56
|
[Exposed=(Window,DedicatedWorker)]
|
|
57
57
|
interface SFrameEncrypterStream : EventTarget {
|