diff options
Diffstat (limited to 'test/wpt/tests/interfaces/webrtc-priority.idl')
-rw-r--r-- | test/wpt/tests/interfaces/webrtc-priority.idl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/wpt/tests/interfaces/webrtc-priority.idl b/test/wpt/tests/interfaces/webrtc-priority.idl new file mode 100644 index 0000000..a76952b --- /dev/null +++ b/test/wpt/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"; +}; |