Bug 848798 - currentElement browser.js null usage assertion. r=mbrubeck

This commit is contained in:
Brian R. Bondy 2013-03-07 16:52:04 -05:00
Родитель 3e4508ca00
Коммит e08a173385
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1892,7 +1892,7 @@ var ContentAreaObserver = {
let [scrollbox, scrollInterface] = ScrollUtils.getScrollboxFromElement(currentElement);
if (scrollbox && scrollInterface && currentElement && currentElement != scrollbox) {
// retrieve the direct child of the scrollbox
while (currentElement.parentNode != scrollbox)
while (currentElement && currentElement.parentNode != scrollbox)
currentElement = currentElement.parentNode;
setTimeout(function() { scrollInterface.ensureElementIsVisible(currentElement) }, 0);