зеркало из https://github.com/mozilla/pjs.git
Bug 296628. Don't crash when traversal is at the root and we try to go up. r+sr=bzbarsky,a=asa
This commit is contained in:
Родитель
5e57c3c681
Коммит
d3490e4dc7
|
@ -592,8 +592,8 @@ nsFocusIterator::Next()
|
|||
} else {
|
||||
parent = result;
|
||||
result = GetParentFrame(parent);
|
||||
if (IsRootFrame(result)) {
|
||||
result = 0;
|
||||
if (!result || IsRootFrame(result)) {
|
||||
result = nsnull;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче