Bug 613365 - If location bar is focused, hovering a link overlays a blue area on top of the current URL. It should not change the location bar. r=dao, a=dolske

This commit is contained in:
Drew Willcoxon 2010-11-20 14:40:56 -08:00
Родитель 238d5b7ae9
Коммит 1fe7cbab52
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -646,8 +646,9 @@
this._cancelOverLinkDelayTimer();
// Hide the over-link immediately if necessary.
if (!aURL && (XULBrowserWindow.hideOverLinkImmediately ||
this._hideOverLinkImmediately)) {
if ((!aURL && (XULBrowserWindow.hideOverLinkImmediately ||
this._hideOverLinkImmediately)) ||
this.focused) {
this._setOverLinkState(null);
return;
}