зеркало из https://github.com/mozilla/gecko-dev.git
Bug 666751 - Add a null-check in case the item's frame is not a descendent of the text-overflow block. r=roc
This commit is contained in:
Родитель
48070239f8
Коммит
02e05ea2e7
|
@ -179,7 +179,7 @@ IsFrameDescendantOfAny(nsIFrame* aChild,
|
|||
const TextOverflow::FrameHashtable& aSetOfFrames,
|
||||
nsIFrame* aCommonAncestor)
|
||||
{
|
||||
for (nsIFrame* f = aChild; f != aCommonAncestor;
|
||||
for (nsIFrame* f = aChild; f && f != aCommonAncestor;
|
||||
f = nsLayoutUtils::GetCrossDocParentFrame(f)) {
|
||||
if (aSetOfFrames.GetEntry(f)) {
|
||||
return true;
|
||||
|
|
Загрузка…
Ссылка в новой задаче