зеркало из https://github.com/mozilla/gecko-dev.git
b=36220 Added check for a frame type of "areaFrame"
This commit is contained in:
Родитель
990b45ec4d
Коммит
aa529094b7
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче