b=36220 Added check for a frame type of "areaFrame"

This commit is contained in:
troy%netscape.com 2000-04-19 03:27:31 +00:00
Родитель 990b45ec4d
Коммит aa529094b7
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -440,7 +440,8 @@ GetNearestContainingBlock(nsIFrame* aFrame, nsMargin& aContentArea)
PRBool isBlock;
aFrame->GetFrameType(&frameType);
isBlock = frameType == nsLayoutAtoms::blockFrame;
isBlock = (frameType == nsLayoutAtoms::blockFrame) ||
(frameType == nsLayoutAtoms::areaFrame);
NS_IF_RELEASE(frameType);
if (isBlock) {

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

@ -440,7 +440,8 @@ GetNearestContainingBlock(nsIFrame* aFrame, nsMargin& aContentArea)
PRBool isBlock;
aFrame->GetFrameType(&frameType);
isBlock = frameType == nsLayoutAtoms::blockFrame;
isBlock = (frameType == nsLayoutAtoms::blockFrame) ||
(frameType == nsLayoutAtoms::areaFrame);
NS_IF_RELEASE(frameType);
if (isBlock) {