Pier Angelo Vendrame pushed to branch tor-browser-115.4.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
f9c4691b by Pier Angelo Vendrame at 2023-11-13T14:33:44+01:00
fixup! Firefox preference overrides.
Bug 42153: Drop dom.enable_resource_timing = false
- - - - -
1 changed file:
- browser/app/profile/001-base-profile.js
Changes:
=====================================
browser/app/profile/001-base-profile.js
=====================================
@@ -344,7 +344,6 @@ pref("browser.link.open_newwindow.restriction", 0); // Bug 9881: Open popups in
pref("dom.disable_window_move_resize", true);
// Set video VP9 to 0 for everyone (bug 22548)
pref("media.benchmark.vp9.threshold", 0);
-pref("dom.enable_resource_timing", false); // Bug 13024: To hell with this API
pref("privacy.resistFingerprinting.block_mozAddonManager", true); // Bug 26114
pref("dom.webaudio.enabled", false); // Bug 13017: Disable Web Audio API
pref("dom.webmidi.enabled", false); // Bug 41398: Disable Web MIDI API
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/f9c4691…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/f9c4691…
You're receiving this email because of your account on gitlab.torproject.org.
richard deleted branch main at The Tor Project / Applications / Tor Browser
--
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch mullvad-browser-115.4.0esr-13.0-1 at The Tor Project / Applications / Mullvad Browser
Commits:
23d4e4c4 by hackademix at 2023-11-08T13:45:19+01:00
Bug 42194: Fix blank net error page on failed DNS resolution with active proxy.
- - - - -
1 changed file:
- toolkit/actors/NetErrorChild.sys.mjs
Changes:
=====================================
toolkit/actors/NetErrorChild.sys.mjs
=====================================
@@ -133,12 +133,15 @@ export class NetErrorChild extends RemotePageChild {
shortDesc.appendChild(span);
},
};
-
- Services.uriFixup.checkHost(
- info.fixedURI,
- onLookupCompleteListener,
- this.document.nodePrincipal.originAttributes
- );
+ try {
+ Services.uriFixup.checkHost(
+ info.fixedURI,
+ onLookupCompleteListener,
+ this.document.nodePrincipal.originAttributes
+ );
+ } catch (e) {
+ // DNS resolution may fail synchronously if forbidden by proxy
+ }
}
// Get the header from the http response of the failed channel. This function
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/23d…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/23d…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch base-browser-115.4.0esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
6f9292eb by hackademix at 2023-11-08T13:44:18+01:00
Bug 42194: Fix blank net error page on failed DNS resolution with active proxy.
- - - - -
1 changed file:
- toolkit/actors/NetErrorChild.sys.mjs
Changes:
=====================================
toolkit/actors/NetErrorChild.sys.mjs
=====================================
@@ -133,12 +133,15 @@ export class NetErrorChild extends RemotePageChild {
shortDesc.appendChild(span);
},
};
-
- Services.uriFixup.checkHost(
- info.fixedURI,
- onLookupCompleteListener,
- this.document.nodePrincipal.originAttributes
- );
+ try {
+ Services.uriFixup.checkHost(
+ info.fixedURI,
+ onLookupCompleteListener,
+ this.document.nodePrincipal.originAttributes
+ );
+ } catch (e) {
+ // DNS resolution may fail synchronously if forbidden by proxy
+ }
}
// Get the header from the http response of the failed channel. This function
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6f9292e…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6f9292e…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch tor-browser-115.4.0esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
20f764ba by hackademix at 2023-11-08T13:41:58+01:00
Bug 42194: Fix blank net error page on failed DNS resolution with active proxy.
- - - - -
1 changed file:
- toolkit/actors/NetErrorChild.sys.mjs
Changes:
=====================================
toolkit/actors/NetErrorChild.sys.mjs
=====================================
@@ -140,12 +140,15 @@ export class NetErrorChild extends RemotePageChild {
shortDesc.appendChild(span);
},
};
-
- Services.uriFixup.checkHost(
- info.fixedURI,
- onLookupCompleteListener,
- this.document.nodePrincipal.originAttributes
- );
+ try {
+ Services.uriFixup.checkHost(
+ info.fixedURI,
+ onLookupCompleteListener,
+ this.document.nodePrincipal.originAttributes
+ );
+ } catch (e) {
+ // DNS resolution may fail synchronously if forbidden by proxy
+ }
}
// Get the header from the http response of the failed channel. This function
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/20f764b…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/20f764b…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch mullvad-browser-115.4.0esr-13.5-1 at The Tor Project / Applications / Mullvad Browser
Commits:
5cb306c9 by hackademix at 2023-11-07T17:22:34+01:00
Bug 42194: Fix blank net error page on failed DNS resolution with active proxy.
- - - - -
1 changed file:
- toolkit/actors/NetErrorChild.sys.mjs
Changes:
=====================================
toolkit/actors/NetErrorChild.sys.mjs
=====================================
@@ -133,12 +133,15 @@ export class NetErrorChild extends RemotePageChild {
shortDesc.appendChild(span);
},
};
-
- Services.uriFixup.checkHost(
- info.fixedURI,
- onLookupCompleteListener,
- this.document.nodePrincipal.originAttributes
- );
+ try {
+ Services.uriFixup.checkHost(
+ info.fixedURI,
+ onLookupCompleteListener,
+ this.document.nodePrincipal.originAttributes
+ );
+ } catch (e) {
+ // DNS resolution may fail synchronously if forbidden by proxy
+ }
}
// Get the header from the http response of the failed channel. This function
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/5cb…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/5cb…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch base-browser-115.4.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
c06034d3 by hackademix at 2023-11-07T17:19:49+01:00
Bug 42194: Fix blank net error page on failed DNS resolution with active proxy.
- - - - -
1 changed file:
- toolkit/actors/NetErrorChild.sys.mjs
Changes:
=====================================
toolkit/actors/NetErrorChild.sys.mjs
=====================================
@@ -133,12 +133,15 @@ export class NetErrorChild extends RemotePageChild {
shortDesc.appendChild(span);
},
};
-
- Services.uriFixup.checkHost(
- info.fixedURI,
- onLookupCompleteListener,
- this.document.nodePrincipal.originAttributes
- );
+ try {
+ Services.uriFixup.checkHost(
+ info.fixedURI,
+ onLookupCompleteListener,
+ this.document.nodePrincipal.originAttributes
+ );
+ } catch (e) {
+ // DNS resolution may fail synchronously if forbidden by proxy
+ }
}
// Get the header from the http response of the failed channel. This function
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c06034d…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c06034d…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch tor-browser-115.4.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
aa90395e by hackademix at 2023-11-07T12:56:55+01:00
Bug 42194: Fix blank net error page on failed DNS resolution with active proxy.
- - - - -
1 changed file:
- toolkit/actors/NetErrorChild.sys.mjs
Changes:
=====================================
toolkit/actors/NetErrorChild.sys.mjs
=====================================
@@ -140,12 +140,15 @@ export class NetErrorChild extends RemotePageChild {
shortDesc.appendChild(span);
},
};
-
- Services.uriFixup.checkHost(
- info.fixedURI,
- onLookupCompleteListener,
- this.document.nodePrincipal.originAttributes
- );
+ try {
+ Services.uriFixup.checkHost(
+ info.fixedURI,
+ onLookupCompleteListener,
+ this.document.nodePrincipal.originAttributes
+ );
+ } catch (e) {
+ // DNS resolution may fail synchronously if forbidden by proxy
+ }
}
// Get the header from the http response of the failed channel. This function
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/aa90395…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/aa90395…
You're receiving this email because of your account on gitlab.torproject.org.
asciiwolf deleted branch AsciiWolf-metainfo-fix at The Tor Project / Applications / torbrowser-launcher
--
You're receiving this email because of your account on gitlab.torproject.org.