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:
Mats Palmgren 2011-06-24 21:12:52 +02:00
Родитель 48070239f8
Коммит 02e05ea2e7
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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;