Bug 300539: browser.urlbar.autoFill isn't supported in the Open Location dialog

This commit is contained in:
gavin%gavinsharp.com 2005-08-27 03:39:08 +00:00
Родитель 5ea46db741
Коммит 0a9bc5c9d0
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -63,6 +63,12 @@ function onLoad()
dialog.openWhereList.selectedItem = dialog.openTopWindow;
if (pref) {
try {
var useAutoFill = pref.getBoolPref("browser.urlbar.autoFill");
if (useAutoFill)
dialog.input.setAttribute("completedefaultindex", "true");
} catch (ex) {}
try {
var value = pref.getIntPref("general.open_location.last_window_choice");
var element = dialog.openWhereList.getElementsByAttribute("value", value)[0];