@webref/idl 3.33.3 → 3.33.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fenced-frame.idl +1 -0
- package/package.json +1 -1
- package/trust-token-api.idl +2 -5
- package/turtledove.idl +1 -1
- package/webgpu.idl +8 -22
- package/webxrlayers.idl +9 -0
package/fenced-frame.idl
CHANGED
|
@@ -10,6 +10,7 @@ interface HTMLFencedFrameElement : HTMLElement {
|
|
|
10
10
|
[CEReactions] attribute FencedFrameConfig? config;
|
|
11
11
|
[CEReactions] attribute DOMString width;
|
|
12
12
|
[CEReactions] attribute DOMString height;
|
|
13
|
+
[CEReactions] attribute DOMString allow;
|
|
13
14
|
};
|
|
14
15
|
|
|
15
16
|
enum OpaqueProperty {"opaque"};
|
package/package.json
CHANGED
package/trust-token-api.idl
CHANGED
|
@@ -5,14 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
enum RefreshPolicy { "none", "refresh" };
|
|
7
7
|
|
|
8
|
-
enum TokenType { "private-state-token" };
|
|
9
|
-
|
|
10
8
|
enum TokenVersion { "1" };
|
|
11
9
|
|
|
12
10
|
enum OperationType { "token-request", "send-redemption-record", "token-redemption" };
|
|
13
11
|
|
|
14
12
|
dictionary PrivateToken {
|
|
15
|
-
required TokenType type;
|
|
16
13
|
required TokenVersion version;
|
|
17
14
|
required OperationType operation;
|
|
18
15
|
RefreshPolicy refreshPolicy = "none";
|
|
@@ -24,6 +21,6 @@ partial dictionary RequestInit {
|
|
|
24
21
|
};
|
|
25
22
|
|
|
26
23
|
partial interface Document {
|
|
27
|
-
Promise<boolean> hasPrivateTokens(USVString issuer
|
|
28
|
-
Promise<boolean> hasRedemptionRecord(USVString issuer
|
|
24
|
+
Promise<boolean> hasPrivateTokens(USVString issuer);
|
|
25
|
+
Promise<boolean> hasRedemptionRecord(USVString issuer);
|
|
29
26
|
};
|
package/turtledove.idl
CHANGED
|
@@ -25,7 +25,7 @@ dictionary AuctionAdInterestGroup {
|
|
|
25
25
|
DOMString executionMode = "compatibility";
|
|
26
26
|
USVString biddingLogicURL;
|
|
27
27
|
USVString biddingWasmHelperURL;
|
|
28
|
-
USVString
|
|
28
|
+
USVString updateURL;
|
|
29
29
|
USVString trustedBiddingSignalsURL;
|
|
30
30
|
sequence<USVString> trustedBiddingSignalsKeys;
|
|
31
31
|
any userBiddingSignals;
|
package/webgpu.idl
CHANGED
|
@@ -974,22 +974,15 @@ GPUComputePassEncoder includes GPUCommandsMixin;
|
|
|
974
974
|
GPUComputePassEncoder includes GPUDebugCommandsMixin;
|
|
975
975
|
GPUComputePassEncoder includes GPUBindingCommandsMixin;
|
|
976
976
|
|
|
977
|
-
|
|
978
|
-
"beginning",
|
|
979
|
-
"end",
|
|
980
|
-
};
|
|
981
|
-
|
|
982
|
-
dictionary GPUComputePassTimestampWrite {
|
|
977
|
+
dictionary GPUComputePassTimestampWrites {
|
|
983
978
|
required GPUQuerySet querySet;
|
|
984
|
-
|
|
985
|
-
|
|
979
|
+
GPUSize32 beginningOfPassWriteIndex;
|
|
980
|
+
GPUSize32 endOfPassWriteIndex;
|
|
986
981
|
};
|
|
987
982
|
|
|
988
|
-
typedef sequence<GPUComputePassTimestampWrite> GPUComputePassTimestampWrites;
|
|
989
|
-
|
|
990
983
|
dictionary GPUComputePassDescriptor
|
|
991
984
|
: GPUObjectDescriptorBase {
|
|
992
|
-
GPUComputePassTimestampWrites timestampWrites
|
|
985
|
+
GPUComputePassTimestampWrites timestampWrites;
|
|
993
986
|
};
|
|
994
987
|
|
|
995
988
|
[Exposed=(Window, DedicatedWorker), SecureContext]
|
|
@@ -1016,25 +1009,18 @@ GPURenderPassEncoder includes GPUDebugCommandsMixin;
|
|
|
1016
1009
|
GPURenderPassEncoder includes GPUBindingCommandsMixin;
|
|
1017
1010
|
GPURenderPassEncoder includes GPURenderCommandsMixin;
|
|
1018
1011
|
|
|
1019
|
-
|
|
1020
|
-
"beginning",
|
|
1021
|
-
"end",
|
|
1022
|
-
};
|
|
1023
|
-
|
|
1024
|
-
dictionary GPURenderPassTimestampWrite {
|
|
1012
|
+
dictionary GPURenderPassTimestampWrites {
|
|
1025
1013
|
required GPUQuerySet querySet;
|
|
1026
|
-
|
|
1027
|
-
|
|
1014
|
+
GPUSize32 beginningOfPassWriteIndex;
|
|
1015
|
+
GPUSize32 endOfPassWriteIndex;
|
|
1028
1016
|
};
|
|
1029
1017
|
|
|
1030
|
-
typedef sequence<GPURenderPassTimestampWrite> GPURenderPassTimestampWrites;
|
|
1031
|
-
|
|
1032
1018
|
dictionary GPURenderPassDescriptor
|
|
1033
1019
|
: GPUObjectDescriptorBase {
|
|
1034
1020
|
required sequence<GPURenderPassColorAttachment?> colorAttachments;
|
|
1035
1021
|
GPURenderPassDepthStencilAttachment depthStencilAttachment;
|
|
1036
1022
|
GPUQuerySet occlusionQuerySet;
|
|
1037
|
-
GPURenderPassTimestampWrites timestampWrites
|
|
1023
|
+
GPURenderPassTimestampWrites timestampWrites;
|
|
1038
1024
|
GPUSize64 maxDrawCount = 50000000;
|
|
1039
1025
|
};
|
|
1040
1026
|
|
package/webxrlayers.idl
CHANGED
|
@@ -11,6 +11,12 @@ enum XRLayerLayout {
|
|
|
11
11
|
"stereo-top-bottom"
|
|
12
12
|
};
|
|
13
13
|
|
|
14
|
+
enum XRLayerQuality {
|
|
15
|
+
"default",
|
|
16
|
+
"text-optimized",
|
|
17
|
+
"graphics-optimized"
|
|
18
|
+
};
|
|
19
|
+
|
|
14
20
|
[Exposed=Window] interface XRCompositionLayer : XRLayer {
|
|
15
21
|
readonly attribute XRLayerLayout layout;
|
|
16
22
|
|
|
@@ -18,6 +24,7 @@ enum XRLayerLayout {
|
|
|
18
24
|
attribute boolean forceMonoPresentation;
|
|
19
25
|
attribute float opacity;
|
|
20
26
|
readonly attribute unsigned long mipLevels;
|
|
27
|
+
attribute XRLayerQuality quality;
|
|
21
28
|
|
|
22
29
|
readonly attribute boolean needsRedraw;
|
|
23
30
|
|
|
@@ -106,6 +113,7 @@ dictionary XRProjectionLayerInit {
|
|
|
106
113
|
GLenum colorFormat = 0x1908; // RGBA
|
|
107
114
|
GLenum depthFormat = 0x1902; // DEPTH_COMPONENT
|
|
108
115
|
double scaleFactor = 1.0;
|
|
116
|
+
boolean clearOnAccess = true;
|
|
109
117
|
};
|
|
110
118
|
|
|
111
119
|
dictionary XRLayerInit {
|
|
@@ -117,6 +125,7 @@ dictionary XRLayerInit {
|
|
|
117
125
|
required unsigned long viewPixelHeight;
|
|
118
126
|
XRLayerLayout layout = "mono";
|
|
119
127
|
boolean isStatic = false;
|
|
128
|
+
boolean clearOnAccess = true;
|
|
120
129
|
};
|
|
121
130
|
|
|
122
131
|
dictionary XRQuadLayerInit : XRLayerInit {
|