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 {
1616
1717enum OpaqueProperty {"opaque"};
1818
19- typedef (unsigned long or OpaqueProperty) FencedFrameConfigSize;
20- typedef USVString FencedFrameConfigURL;
21-
2219[Exposed=Window, Serializable]
2320interface FencedFrameConfig {
2421 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-
3122 undefined setSharedStorageContext(DOMString contextString);
3223};
3324
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ dictionary AuctionAd {
1616 USVString buyerReportingId;
1717 USVString buyerAndSellerReportingId;
1818 sequence<USVString> allowedReportingOrigins;
19+ DOMString adRenderId;
1920};
2021
2122dictionary AuctionAdInterestGroupSize {
@@ -239,10 +240,8 @@ partial interface HTMLIFrameElement {
239240 [CEReactions] attribute boolean adAuctionHeaders;
240241};
241242
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;
246245
247246dictionary BiddingBrowserSignals {
248247 required DOMString topWindowHostname;
Original file line number Diff line number Diff line change @@ -255,6 +255,7 @@ dictionary GPUTextureViewDescriptor
255255 : GPUObjectDescriptorBase {
256256 GPUTextureFormat format;
257257 GPUTextureViewDimension dimension;
258+ GPUTextureUsageFlags usage = 0;
258259 GPUTextureAspect aspect = "all";
259260 GPUIntegerCoordinate baseMipLevel = 0;
260261 GPUIntegerCoordinate mipLevelCount;
You can’t perform that action at this time.
0 commit comments