Issue #2732 - Part 1: Rename mContainsBlockContents to mConsiderWholeSubtree

It is more descriptive of what it actually does.
This commit is contained in:
Moonchild 2025-04-24 14:38:33 +02:00 committed by roytam1
commit 2ef82632d4
2 changed files with 12 additions and 8 deletions

View file

@ -91,7 +91,11 @@ protected:
nsImageFrame* mImageFrame; // the frame that owns us
nsCOMPtr<nsIContent> mMap;
AutoTArray<Area*, 8> mAreas; // almost always has some entries
bool mContainsBlockContents;
// This is set when we search for all area children and tells us whether we
// should consider the whole subtree or just direct children when we get
// content notifications about changes inside the map subtree.
bool mConsiderWholeSubtree;
};
#endif /* nsImageMap_h */