Update web-platform-tests to revision 1268bd5901289acc95b1a576f108bdf382d82e44

This commit is contained in:
WPT Sync Bot 2019-12-19 08:23:25 +00:00
parent f183d66217
commit 292a12e545
261 changed files with 5513 additions and 966 deletions

View file

@ -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 {

View file

@ -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;
};

View file

@ -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 {