mirror of
https://github.com/servo/servo.git
synced 2025-08-07 22:45:34 +01:00
Update web-platform-tests to revision c2b30ef30749b6a8f2cc832761dfe011e63d5e94
This commit is contained in:
parent
987e376ca7
commit
eda9b9b73a
142 changed files with 3513 additions and 851 deletions
|
@ -3,6 +3,33 @@
|
|||
// (https://github.com/tidoust/reffy-reports)
|
||||
// Source: CSS Layout API Level 1 (https://drafts.css-houdini.org/css-layout-api-1/)
|
||||
|
||||
partial namespace CSS {
|
||||
[SameObject] readonly attribute Worklet layoutWorklet;
|
||||
};
|
||||
|
||||
[Global=(Worklet,LayoutWorklet),Exposed=LayoutWorklet]
|
||||
interface LayoutWorkletGlobalScope : WorkletGlobalScope {
|
||||
void registerLayout(DOMString name, VoidFunction layoutCtor);
|
||||
};
|
||||
|
||||
[Exposed=LayoutWorklet]
|
||||
dictionary LayoutOptions {
|
||||
ChildDisplayType childDisplay = "block";
|
||||
LayoutSizingMode sizing = "block-like";
|
||||
};
|
||||
|
||||
[Exposed=LayoutWorklet]
|
||||
enum ChildDisplayType {
|
||||
"block",
|
||||
"normal",
|
||||
};
|
||||
|
||||
[Exposed=LayoutWorklet]
|
||||
enum LayoutSizingMode {
|
||||
"block-like",
|
||||
"manual",
|
||||
};
|
||||
|
||||
[Exposed=LayoutWorklet]
|
||||
interface LayoutChild {
|
||||
readonly attribute StylePropertyMapReadOnly styleMap;
|
||||
|
@ -106,33 +133,6 @@ interface LayoutEdges {
|
|||
readonly attribute LayoutEdgeSizes all;
|
||||
};
|
||||
|
||||
partial namespace CSS {
|
||||
[SameObject] readonly attribute Worklet layoutWorklet;
|
||||
};
|
||||
|
||||
[Global=(Worklet,LayoutWorklet),Exposed=LayoutWorklet]
|
||||
interface LayoutWorkletGlobalScope : WorkletGlobalScope {
|
||||
void registerLayout(DOMString name, VoidFunction layoutCtor);
|
||||
};
|
||||
|
||||
[Exposed=LayoutWorklet]
|
||||
dictionary LayoutOptions {
|
||||
ChildDisplayType childDisplay = "block";
|
||||
LayoutSizingMode sizing = "block-like";
|
||||
};
|
||||
|
||||
[Exposed=LayoutWorklet]
|
||||
enum ChildDisplayType {
|
||||
"block",
|
||||
"normal",
|
||||
};
|
||||
|
||||
[Exposed=LayoutWorklet]
|
||||
enum LayoutSizingMode {
|
||||
"block-like",
|
||||
"manual",
|
||||
};
|
||||
|
||||
[Exposed=LayoutWorklet]
|
||||
interface IntrinsicSizesRequest {
|
||||
};
|
||||
|
|
|
@ -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: DSCP Control API (https://w3c.github.io/webrtc-dscp-exp/)
|
||||
// Source: WebRTC DSCP Control API (https://w3c.github.io/webrtc-dscp-exp/)
|
||||
|
||||
partial dictionary RTCRtpEncodingParameters {
|
||||
RTCPriorityType networkPriority; // Note: No default
|
||||
|
|
|
@ -520,6 +520,7 @@ enum RTCSctpTransportState {
|
|||
readonly attribute RTCPriorityType priority;
|
||||
readonly attribute RTCDataChannelState readyState;
|
||||
readonly attribute unsigned long bufferedAmount;
|
||||
[EnforceRange]
|
||||
attribute unsigned long bufferedAmountLowThreshold;
|
||||
attribute EventHandler onopen;
|
||||
attribute EventHandler onbufferedamountlow;
|
||||
|
@ -536,7 +537,9 @@ enum RTCSctpTransportState {
|
|||
|
||||
dictionary RTCDataChannelInit {
|
||||
boolean ordered = true;
|
||||
[EnforceRange]
|
||||
unsigned short maxPacketLifeTime;
|
||||
[EnforceRange]
|
||||
unsigned short maxRetransmits;
|
||||
USVString protocol = "";
|
||||
boolean negotiated = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue