Bug 233229 Location Bar uses http when auto-completing https URLs

Patch by ajschult, r+sr=neil
This commit is contained in:
cst%andrew.cmu.edu 2005-12-11 18:22:01 +00:00
Родитель 3dbd3c6074
Коммит 512d4e9dfe
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -700,7 +700,9 @@
if (val) {
this.setTextValue(val);
this.mNeedToFinish = false;
} else if (this.mTransientValue || !this.forceComplete ||
} else if (this.mTransientValue ||
!(this.forceComplete || this.mDefaultMatchFilled) ||
!(this.forceComplete || aForceComplete)) ||
!(this.mNeedToComplete || aForceComplete)) {
this.mNeedToFinish = false;
} else if (this.isWaiting) {