File tree Expand file tree Collapse file tree 4 files changed +343
-13
lines changed
test/fixtures/wpt/interfaces Expand file tree Collapse file tree 4 files changed +343
-13
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,9 @@ interface HTMLFencedFrameElement : HTMLElement {
16
16
17
17
enum OpaqueProperty {"opaque"};
18
18
19
- typedef (unsigned long or OpaqueProperty) FencedFrameConfigSize;
20
- typedef USVString FencedFrameConfigURL;
21
-
22
19
[Exposed=Window, Serializable]
23
20
interface FencedFrameConfig {
24
21
constructor(USVString url);
25
-
26
- readonly attribute FencedFrameConfigSize? containerWidth;
27
- readonly attribute FencedFrameConfigSize? containerHeight;
28
- readonly attribute FencedFrameConfigSize? contentWidth;
29
- readonly attribute FencedFrameConfigSize? contentHeight;
30
-
31
22
undefined setSharedStorageContext(DOMString contextString);
32
23
};
33
24
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ dictionary AuctionAd {
16
16
USVString buyerReportingId;
17
17
USVString buyerAndSellerReportingId;
18
18
sequence<USVString> allowedReportingOrigins;
19
+ DOMString adRenderId;
19
20
};
20
21
21
22
dictionary AuctionAdInterestGroupSize {
@@ -239,10 +240,8 @@ partial interface HTMLIFrameElement {
239
240
[CEReactions] attribute boolean adAuctionHeaders;
240
241
};
241
242
242
- dictionary PreviousWin {
243
- required long long timeDelta;
244
- required DOMString adJSON;
245
- };
243
+ typedef (long long or AuctionAd) PreviousWinElement;
244
+ typedef sequence<PreviousWinElement> PreviousWin;
246
245
247
246
dictionary BiddingBrowserSignals {
248
247
required DOMString topWindowHostname;
Original file line number Diff line number Diff line change @@ -255,6 +255,7 @@ dictionary GPUTextureViewDescriptor
255
255
: GPUObjectDescriptorBase {
256
256
GPUTextureFormat format;
257
257
GPUTextureViewDimension dimension;
258
+ GPUTextureUsageFlags usage = 0;
258
259
GPUTextureAspect aspect = "all";
259
260
GPUIntegerCoordinate baseMipLevel = 0;
260
261
GPUIntegerCoordinate mipLevelCount;
You can’t perform that action at this time.
0 commit comments