mirror of
https://github.com/servo/servo.git
synced 2025-08-17 19:35:33 +01:00
Update web-platform-tests to revision 1268bd5901289acc95b1a576f108bdf382d82e44
This commit is contained in:
parent
f183d66217
commit
292a12e545
261 changed files with 5513 additions and 966 deletions
|
@ -25,8 +25,9 @@ dictionary MediaKeySystemConfiguration {
|
|||
};
|
||||
|
||||
dictionary MediaKeySystemMediaCapability {
|
||||
DOMString contentType = "";
|
||||
DOMString robustness = "";
|
||||
DOMString contentType = "";
|
||||
DOMString? encryptionScheme = null;
|
||||
DOMString robustness = "";
|
||||
};
|
||||
|
||||
[Exposed=Window, SecureContext] interface MediaKeySystemAccess {
|
||||
|
@ -37,7 +38,8 @@ dictionary MediaKeySystemMediaCapability {
|
|||
|
||||
enum MediaKeySessionType {
|
||||
"temporary",
|
||||
"persistent-license"
|
||||
"persistent-license",
|
||||
"persistent-usage-record"
|
||||
};
|
||||
|
||||
[Exposed=Window, SecureContext] interface MediaKeys {
|
||||
|
|
|
@ -12,4 +12,7 @@ interface VideoPlaybackQuality {
|
|||
readonly attribute DOMHighResTimeStamp creationTime;
|
||||
readonly attribute unsigned long droppedVideoFrames;
|
||||
readonly attribute unsigned long totalVideoFrames;
|
||||
|
||||
// Deprecated!
|
||||
readonly attribute unsigned long corruptedVideoFrames;
|
||||
};
|
||||
|
|
|
@ -559,12 +559,12 @@ interface RTCDTMFSender : EventTarget {
|
|||
|
||||
[Exposed=Window]
|
||||
interface RTCDTMFToneChangeEvent : Event {
|
||||
constructor(DOMString type, RTCDTMFToneChangeEventInit eventInitDict);
|
||||
constructor(DOMString type, optional RTCDTMFToneChangeEventInit eventInitDict = {});
|
||||
readonly attribute DOMString tone;
|
||||
};
|
||||
|
||||
dictionary RTCDTMFToneChangeEventInit : EventInit {
|
||||
required DOMString tone;
|
||||
DOMString tone = "";
|
||||
};
|
||||
|
||||
partial interface RTCPeerConnection {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue