Bug 1040335 - Enable Unified Autocomplete. r=ttaubert

This commit is contained in:
Marco Bonardo 2014-07-24 17:45:48 +02:00
Родитель 30a44a8a3e
Коммит 48bb5408f8
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -313,8 +313,14 @@ pref("browser.urlbar.doubleClickSelectsAll", true);
#else
pref("browser.urlbar.doubleClickSelectsAll", false);
#endif
// Control autoFill behavior
pref("browser.urlbar.autoFill", true);
pref("browser.urlbar.autoFill.typed", true);
// Use the new unifiedComplete component
pref("browser.urlbar.unifiedcomplete", true);
// 0: Match anywhere (e.g., middle of words)
// 1: Match on word boundaries and then try matching anywhere
// 2: Match only on word boundaries (e.g., after / or .)