tor-browser

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

commit 5c65944662b0e06cb69d48f597d2f1bd6fdf33a9
parent 6649de2017e755aa67120407b66d0e44bd5a8987
Author: Andreas Farre <farre@mozilla.com>
Date:   Fri, 31 Oct 2025 14:58:45 +0000

Bug 1997592 - Disable Navigation API in test_rate_limit_location_change.html. r=smaug

We want to avoid an edge case issue in Navigation API by doing this.
This will be fixed for real in bug 1997591.

Differential Revision: https://phabricator.services.mozilla.com/D270857

Diffstat:
Mdocshell/test/navigation/test_rate_limit_location_change.html | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docshell/test/navigation/test_rate_limit_location_change.html b/docshell/test/navigation/test_rate_limit_location_change.html @@ -18,7 +18,8 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=1314912 async function setup() { await SpecialPowers.pushPrefEnv({set: [ ["dom.navigation.navigationRateLimit.count", RATE_LIMIT_COUNT], - ["dom.navigation.navigationRateLimit.timespan", RATE_LIMIT_TIME_SPAN]]}); + ["dom.navigation.navigationRateLimit.timespan", RATE_LIMIT_TIME_SPAN], + ["dom.navigation.webidl.enabled", false]]}); } let inc = 0;