Skip to content

Commit 804410a

Browse files
chore(deps): Bump wpt from 761c204 to e57e507 (#3580)
Bumps [wpt](https://github.com/web-platform-tests/wpt) from `761c204` to `e57e507`. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/web-platform-tests/wpt/commit/e57e5079cc9c599afb2c2356d648ba9d8dbff5e0"><code>e57e507</code></a> [WebDriver BiDi] Ensure the pre-configured event loop is specified</li> <li><a href="https://github.com/web-platform-tests/wpt/commit/b0650d96222f46d4e0bc551119599b6f9b910421"><code>b0650d9</code></a> Make serve consistently use double quotes</li> <li><a href="https://github.com/web-platform-tests/wpt/commit/5aac4e92babeef16a9c41aa65aaee4f6cef39c30"><code>5aac4e9</code></a> Consistently refer to HTTP/2 as HTTP/2 (and not HTTP/2.0)</li> <li><a href="https://github.com/web-platform-tests/wpt/commit/b21d003953385b65f93f0082a96df7b8f31a50d0"><code>b21d003</code></a> webnn: add two tests with 1D input tensors for batchNormalization op</li> <li><a href="https://github.com/web-platform-tests/wpt/commit/a84fba7c65a3b40c3d85645f51c3498e82e73cff"><code>a84fba7</code></a> Allow &lt;template patchfor&gt; inside declarative shadow DOM</li> <li><a href="https://github.com/web-platform-tests/wpt/commit/ec4cb4697863943b4f2cc5ff21a4cb779e683750"><code>ec4cb46</code></a> [gap-decorations] Base interpolation for *-rule-color</li> <li><a href="https://github.com/web-platform-tests/wpt/commit/ca5abb7ede1b250e250b75007fd6c2eb119dcc85"><code>ca5abb7</code></a> Remove nsHTMLButtonControlFrame.</li> <li><a href="https://github.com/web-platform-tests/wpt/commit/fc9fc6f88c455ba033704c26c65e20718c68782a"><code>fc9fc6f</code></a> WebKit export: [Calc] Clamp the result of progress() between 0 and 1 (<a href="https://redirect.github.com/web-platform-tests/wpt/issues/53774">#53774</a>)</li> <li><a href="https://github.com/web-platform-tests/wpt/commit/573cd4145f83cf440b97b96ceba071e2f6e244ab"><code>573cd41</code></a> WebKit export: [CSS Tree Counting Functions] Invalidation (<a href="https://redirect.github.com/web-platform-tests/wpt/issues/53773">#53773</a>)</li> <li><a href="https://github.com/web-platform-tests/wpt/commit/c1457924ba71481eac909d896483c6bc660ab598"><code>c145792</code></a> Add missing webxr idlharness tests</li> <li>Additional commits viewable in <a href="https://github.com/web-platform-tests/wpt/compare/761c2041b1da3064b474d161d6248c197268f15d...e57e5079cc9c599afb2c2356d648ba9d8dbff5e0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Maksim Sadym <[email protected]>
1 parent 0751fa9 commit 804410a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

tests/network/test_network.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,10 @@ async def test_network_preflight(websocket, context_id, html, url_example,
557557
}
558558
})
559559

560-
[_, preflight_request, post_request] = await read_messages(3, sort=True)
560+
[_, event_1, event_2] = await read_messages(3, sort=True)
561+
preflight_request = event_1 if event_1["params"]["initiator"][
562+
"type"] == "preflight" else event_2
563+
post_request = event_1 if preflight_request != event_1 else event_2
561564

562565
assert preflight_request == AnyExtending({
563566
'method': 'network.beforeRequestSent',

wpt

Submodule wpt updated 150 files
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[browsing_context_print.py]
2+
[test_when_browsingcontext_recreated]
3+
expected: FAIL

0 commit comments

Comments
 (0)