Skip to content

Commit

Permalink
Merge branch 'main' into fast-timer-connect
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzlopak committed Sep 7, 2024
2 parents 75ddb34 + a6dac31 commit 1fd5f93
Show file tree
Hide file tree
Showing 10 changed files with 593 additions and 77 deletions.
267 changes: 244 additions & 23 deletions lib/dispatcher/client-h1.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ async_test(t => {
'fetchLater()', t,
getDeferredFetchPolicyInIframeHelperUrl(
`${baseUrl}${HTTPS_NOTSAMESITE_ORIGIN}`),
expect_feature_unavailable_default, /*feature_name=*/ 'deferred-fetch');
}, `${description} disallows cross-origin navigation in an iframe.`);
expect_feature_available_default, /*feature_name=*/ 'deferred-fetch');
}, `${description} allows cross-origin navigation in an iframe.`);
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ async_test(t => {
test_feature_availability(
'fetchLater()', t,
getDeferredFetchPolicyInIframeHelperUrl(HTTPS_NOTSAMESITE_ORIGIN),
expect_feature_unavailable_default);
}, `${description} disallows fetchLater() in the cross-origin iframe.`);
expect_feature_available_default);
}, `${description} allows fetchLater() in the cross-origin iframe.`);

async_test(t => {
test_feature_availability(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ async_test(t => {
test_feature_availability(
'fetchLater()', t,
getDeferredFetchPolicyInIframeHelperUrl(HTTPS_NOTSAMESITE_ORIGIN),
expect_feature_unavailable_default);
}, `${description} disallows fetchLater() in the cross-origin iframe.`);
expect_feature_available_default);
}, `${description} allows fetchLater() in the cross-origin iframe.`);

This file was deleted.

This file was deleted.

9 changes: 0 additions & 9 deletions test/fixtures/wpt/interfaces/fenced-frame.idl
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,9 @@ interface HTMLFencedFrameElement : HTMLElement {

enum OpaqueProperty {"opaque"};

typedef (unsigned long or OpaqueProperty) FencedFrameConfigSize;
typedef USVString FencedFrameConfigURL;

[Exposed=Window, Serializable]
interface FencedFrameConfig {
constructor(USVString url);

readonly attribute FencedFrameConfigSize? containerWidth;
readonly attribute FencedFrameConfigSize? containerHeight;
readonly attribute FencedFrameConfigSize? contentWidth;
readonly attribute FencedFrameConfigSize? contentHeight;

undefined setSharedStorageContext(DOMString contextString);
};

Expand Down
7 changes: 3 additions & 4 deletions test/fixtures/wpt/interfaces/turtledove.idl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dictionary AuctionAd {
USVString buyerReportingId;
USVString buyerAndSellerReportingId;
sequence<USVString> allowedReportingOrigins;
DOMString adRenderId;
};

dictionary AuctionAdInterestGroupSize {
Expand Down Expand Up @@ -239,10 +240,8 @@ partial interface HTMLIFrameElement {
[CEReactions] attribute boolean adAuctionHeaders;
};

dictionary PreviousWin {
required long long timeDelta;
required DOMString adJSON;
};
typedef (long long or AuctionAd) PreviousWinElement;
typedef sequence<PreviousWinElement> PreviousWin;

dictionary BiddingBrowserSignals {
required DOMString topWindowHostname;
Expand Down
1 change: 1 addition & 0 deletions test/fixtures/wpt/interfaces/webgpu.idl
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ dictionary GPUTextureViewDescriptor
: GPUObjectDescriptorBase {
GPUTextureFormat format;
GPUTextureViewDimension dimension;
GPUTextureUsageFlags usage = 0;
GPUTextureAspect aspect = "all";
GPUIntegerCoordinate baseMipLevel = 0;
GPUIntegerCoordinate mipLevelCount;
Expand Down
Loading

0 comments on commit 1fd5f93

Please sign in to comment.