Update web-platform-tests to revision 89aa3f42131cce5a77268ddaeb2fab8a2e29c2a6

This commit is contained in:
WPT Sync Bot 2019-11-17 10:33:25 +00:00
parent 39963266ae
commit ea00d34098
392 changed files with 5974 additions and 7614 deletions

View file

@ -1,2 +1,3 @@
suggested_reviewers:
- foolip
- stephenmcgruer

View file

@ -39,7 +39,6 @@ dictionary WebAppManifest {
USVString theme_color;
USVString background_color;
USVString scope;
ServiceWorkerRegistrationObject serviceworker;
sequence<ExternalApplicationResource> related_applications;
boolean prefer_related_applications = "false";
sequence<ShortcutItem> shortcuts;
@ -70,13 +69,6 @@ dictionary ShortcutItem {
sequence<ImageResource> icons;
};
dictionary ServiceWorkerRegistrationObject {
required USVString src;
USVString scope;
WorkerType type = "classic";
ServiceWorkerUpdateViaCache update_via_cache = "imports";
};
dictionary ExternalApplicationResource {
required USVString platform;
USVString url;

View file

@ -70,7 +70,7 @@ dictionary RequestInit {
any window; // can only be set to null
};
enum RequestDestination { "", "audio", "audioworklet", "document", "embed", "font", "frame", "iframe", "image", "manifest", "object", "paintworklet", "report", "script", "sharedworker", "style", "track", "video", "worker", "xslt" };
enum RequestDestination { "", "audio", "audioworklet", "document", "embed", "font", "image", "manifest", "object", "paintworklet", "report", "script", "sharedworker", "style", "track", "video", "worker", "xslt" };
enum RequestMode { "navigate", "same-origin", "no-cors", "cors" };
enum RequestCredentials { "omit", "same-origin", "include" };
enum RequestCache { "default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached" };

View file

@ -1,7 +1,7 @@
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// Source: Web Speech API (https://w3c.github.io/speech-api/)
// Source: Web Speech API (https://wicg.github.io/speech-api/)
[Exposed=Window]
interface SpeechRecognition : EventTarget {

View file

@ -117,6 +117,7 @@ dictionary CollectedClientData {
required DOMString type;
required DOMString challenge;
required DOMString origin;
boolean crossOrigin;
TokenBinding tokenBinding;
};

View file

@ -42,8 +42,6 @@ enum RTCBundlePolicy {
};
enum RTCRtcpMuxPolicy {
// At risk due to lack of implementers' interest.
"negotiate",
"require"
};
@ -295,7 +293,6 @@ enum RTCRtpTransceiverDirection {
interface RTCRtpSender {
readonly attribute MediaStreamTrack? track;
readonly attribute RTCDtlsTransport? transport;
readonly attribute RTCDtlsTransport? rtcpTransport;
static RTCRtpCapabilities? getCapabilities(DOMString kind);
Promise<void> setParameters(RTCRtpSendParameters parameters);
RTCRtpSendParameters getParameters();
@ -328,20 +325,12 @@ dictionary RTCRtpCodingParameters {
dictionary RTCRtpDecodingParameters : RTCRtpCodingParameters {};
dictionary RTCRtpEncodingParameters : RTCRtpCodingParameters {
octet codecPayloadType;
RTCDtxStatus dtx;
boolean active = true;
unsigned long ptime;
unsigned long maxBitrate;
double maxFramerate;
double scaleResolutionDownBy;
};
enum RTCDtxStatus {
"disabled",
"enabled"
};
enum RTCDegradationPreference {
"maintain-framerate",
"maintain-resolution",
@ -387,7 +376,6 @@ dictionary RTCRtpHeaderExtensionCapability {
interface RTCRtpReceiver {
readonly attribute MediaStreamTrack track;
readonly attribute RTCDtlsTransport? transport;
readonly attribute RTCDtlsTransport? rtcpTransport;
static RTCRtpCapabilities? getCapabilities(DOMString kind);
RTCRtpReceiveParameters getParameters();
sequence<RTCRtpContributingSource> getContributingSources();

View file

@ -205,11 +205,11 @@ interface XRWebGLLayer {
};
partial dictionary WebGLContextAttributes {
boolean xrCompatible = null;
boolean xrCompatible = false;
};
partial interface mixin WebGLRenderingContextBase {
Promise<void> makeXRCompatible();
[NewObject] Promise<void> makeXRCompatible();
};
[SecureContext, Exposed=Window]