mirror of
https://github.com/servo/servo.git
synced 2025-08-14 09:55:35 +01:00
Update web-platform-tests to revision 89aa3f42131cce5a77268ddaeb2fab8a2e29c2a6
This commit is contained in:
parent
39963266ae
commit
ea00d34098
392 changed files with 5974 additions and 7614 deletions
|
@ -1,2 +1,3 @@
|
|||
suggested_reviewers:
|
||||
- foolip
|
||||
- stephenmcgruer
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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" };
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -117,6 +117,7 @@ dictionary CollectedClientData {
|
|||
required DOMString type;
|
||||
required DOMString challenge;
|
||||
required DOMString origin;
|
||||
boolean crossOrigin;
|
||||
TokenBinding tokenBinding;
|
||||
};
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue