mirror of
https://github.com/servo/servo.git
synced 2025-08-14 01:45:33 +01:00
Update web-platform-tests to revision f915dfd69790e7ca09f9bef4eb08cd30163cb3e3
This commit is contained in:
parent
2ac916b5a1
commit
fde011e73d
70 changed files with 1490 additions and 483 deletions
|
@ -52,7 +52,6 @@ dictionary MediaTrackSupportedConstraints {
|
|||
boolean frameRate = true;
|
||||
boolean facingMode = true;
|
||||
boolean resizeMode = true;
|
||||
boolean volume = true;
|
||||
boolean sampleRate = true;
|
||||
boolean sampleSize = true;
|
||||
boolean echoCancellation = true;
|
||||
|
@ -71,7 +70,6 @@ dictionary MediaTrackCapabilities {
|
|||
DoubleRange frameRate;
|
||||
sequence<DOMString> facingMode;
|
||||
sequence<DOMString> resizeMode;
|
||||
DoubleRange volume;
|
||||
ULongRange sampleRate;
|
||||
ULongRange sampleSize;
|
||||
sequence<boolean> echoCancellation;
|
||||
|
@ -94,7 +92,6 @@ dictionary MediaTrackConstraintSet {
|
|||
ConstrainDouble frameRate;
|
||||
ConstrainDOMString facingMode;
|
||||
ConstrainDOMString resizeMode;
|
||||
ConstrainDouble volume;
|
||||
ConstrainULong sampleRate;
|
||||
ConstrainULong sampleSize;
|
||||
ConstrainBoolean echoCancellation;
|
||||
|
@ -113,7 +110,6 @@ dictionary MediaTrackSettings {
|
|||
double frameRate;
|
||||
DOMString facingMode;
|
||||
DOMString resizeMode;
|
||||
double volume;
|
||||
long sampleRate;
|
||||
long sampleSize;
|
||||
boolean echoCancellation;
|
||||
|
|
|
@ -16,5 +16,5 @@ interface WakeLock {
|
|||
};
|
||||
|
||||
dictionary WakeLockRequestOptions {
|
||||
AbortSignal? signal = null;
|
||||
AbortSignal signal;
|
||||
};
|
||||
|
|
|
@ -568,7 +568,8 @@ interface AudioParamMap {
|
|||
|
||||
[Exposed=Window,
|
||||
SecureContext,
|
||||
Constructor (BaseAudioContext context, DOMString name, optional AudioWorkletNodeOptions options)]
|
||||
Constructor (BaseAudioContext context, DOMString name,
|
||||
optional AudioWorkletNodeOptions options)]
|
||||
interface AudioWorkletNode : AudioNode {
|
||||
readonly attribute AudioParamMap parameters;
|
||||
readonly attribute MessagePort port;
|
||||
|
|
|
@ -382,7 +382,7 @@ dictionary RTCRtpContributingSource {
|
|||
required DOMHighResTimeStamp timestamp;
|
||||
required unsigned long source;
|
||||
double audioLevel;
|
||||
unsigned long rtpTimestamp;
|
||||
required unsigned long rtpTimestamp;
|
||||
};
|
||||
|
||||
dictionary RTCRtpSynchronizationSource : RTCRtpContributingSource {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue