| Index: Source/core/rendering/RenderBlock.cpp
|
| diff --git a/Source/core/rendering/RenderBlock.cpp b/Source/core/rendering/RenderBlock.cpp
|
| index f4458ec08119a511a26487d532eabce3de231adb..46e99378f2a108f7fd43521e0a8afa1e8f7c0bc1 100644
|
| --- a/Source/core/rendering/RenderBlock.cpp
|
| +++ b/Source/core/rendering/RenderBlock.cpp
|
| @@ -1195,7 +1195,7 @@ void RenderBlock::removeChild(RenderObject* oldChild)
|
| // we need to remove ourself and fix the continuation chain.
|
| if (!beingDestroyed() && isAnonymousBlockContinuation() && !oldChild->isListMarker()) {
|
| RenderObject* containingBlockIgnoringAnonymous = containingBlock();
|
| - while (containingBlockIgnoringAnonymous && containingBlockIgnoringAnonymous->isAnonymousBlock())
|
| + while (containingBlockIgnoringAnonymous && containingBlockIgnoringAnonymous->isAnonymous())
|
| containingBlockIgnoringAnonymous = containingBlockIgnoringAnonymous->containingBlock();
|
| for (RenderObject* curr = this; curr; curr = curr->previousInPreOrder(containingBlockIgnoringAnonymous)) {
|
| if (curr->virtualContinuation() != this)
|
|
|