summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/interfaces/webrtc-priority.idl
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/interfaces/webrtc-priority.idl')
-rw-r--r--testing/web-platform/tests/interfaces/webrtc-priority.idl24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/interfaces/webrtc-priority.idl b/testing/web-platform/tests/interfaces/webrtc-priority.idl
new file mode 100644
index 0000000000..a76952b9b0
--- /dev/null
+++ b/testing/web-platform/tests/interfaces/webrtc-priority.idl
@@ -0,0 +1,24 @@
+// GENERATED CONTENT - DO NOT EDIT
+// Content was automatically extracted by Reffy into webref
+// (https://github.com/w3c/webref)
+// Source: WebRTC Priority Control API (https://w3c.github.io/webrtc-priority/)
+
+enum RTCPriorityType {
+ "very-low",
+ "low",
+ "medium",
+ "high"
+};
+
+partial dictionary RTCRtpEncodingParameters {
+ RTCPriorityType priority = "low";
+ RTCPriorityType networkPriority;
+};
+
+partial interface RTCDataChannel {
+ readonly attribute RTCPriorityType priority;
+};
+
+partial dictionary RTCDataChannelInit {
+ RTCPriorityType priority = "low";
+};