Skip to content
Snippets Groups Projects
Verified Commit b485e748 authored by Arthur Edelstein's avatar Arthur Edelstein Committed by Pier Angelo Vendrame
Browse files

Bug 26353: Prevent speculative connect that violated FPI.

Connections were observed in the catch-all circuit when
the user entered an https or http URL in the URL bar, or
typed a search term.
parent bdfccba2
No related branches found
No related tags found
No related merge requests found
......@@ -76,6 +76,9 @@ export class RemoteWebNavigation {
}
_speculativeConnect(uri, loadURIOptions) {
return;
/* eslint-disable-next-line no-unreachable */
try {
// Let's start a network connection before the content process asks.
// Note that we might have already set up the speculative connection in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment