tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 3e0bdddc195dafbe4f9896b0378dc3ed1bf6643a
parent 4397d58a075acbd23aa19f4aba9a33ae6ffc5254
Author: Ari Chivukula <arichiv@chromium.org>
Date:   Mon, 10 Nov 2025 22:20:51 +0000

Bug 1999160 [wpt PR 55954] - [Critical-CH] Fix flakey WPTs, a=testonly

Automatic update from web-platform-tests
[Critical-CH] Fix flakey WPTs

These seem to be failing with some frequency due to the connections not
being restarted. I'm hoping that by cleaning up better after ourselves
this will be resolved, but it's possible there's some deeper issue in
the networking stack I'll need to track down.

Fixed: 457156701
Change-Id: Icd860f013dc3ae3a9c97b774fbd9a8dbb59529f8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7134005
Commit-Queue: Ari Chivukula <arichiv@chromium.org>
Reviewed-by: Mike Taylor <miketaylr@chromium.org>
Auto-Submit: Ari Chivukula <arichiv@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1542378}

--

wpt-commits: a9bb8680d84e67d75bff1dcbe497f4e319c3682b
wpt-pr: 55954

Diffstat:
Mtesting/web-platform/tests/client-hints/critical-ch/resources/util.js | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/testing/web-platform/tests/client-hints/critical-ch/resources/util.js b/testing/web-platform/tests/client-hints/critical-ch/resources/util.js @@ -13,4 +13,5 @@ make_message_test = (url, message) => assert_not_equals(popup_window, null, "Popup windows not allowed?"); window.addEventListener('message', message_listener(t, message)); popup_window.location = url; + t.add_cleanup(popup_window.close); }