SVN commit 664896 by carewolf: Fix insert inline in inline in block-context in inline bug. CCBUG: 145428 M +1 -1 render_flow.cpp --- branches/KDE/3.5/kdelibs/khtml/rendering/render_flow.cpp #664895:664896 @@ -85,7 +85,7 @@ void RenderFlow::addChildWithContinuation(RenderObject* newChild, RenderObject* beforeChild) { RenderFlow* flow = continuationBefore(beforeChild); - while(beforeChild && beforeChild->parent() != this && !beforeChild->parent()->isAnonymousBlock()) { + while(beforeChild && beforeChild->parent() != flow && !beforeChild->parent()->isAnonymousBlock()) { // skip implicit containers around beforeChild beforeChild = beforeChild->parent(); }