Home | History | Annotate | Download | only in rendering

Lines Matching defs:firstLineBlock

5302 RenderBlock* RenderBlock::firstLineBlock() const
5304 RenderBlock* firstLineBlock = const_cast<RenderBlock*>(this);
5307 hasPseudo = firstLineBlock->style()->hasPseudoStyle(FIRST_LINE);
5310 RenderObject* parentBlock = firstLineBlock->parent();
5311 if (firstLineBlock->isReplaced() || firstLineBlock->isFloating() ||
5312 !parentBlock || parentBlock->firstChild() != firstLineBlock || !parentBlock->isBlockFlow())
5315 firstLineBlock = toRenderBlock(parentBlock);
5321 return firstLineBlock;