Home | History | Annotate | Download | only in rendering

Lines Matching defs:firstLineBlock

6519 RenderBlock* RenderBlock::firstLineBlock() const
6521 RenderBlock* firstLineBlock = const_cast<RenderBlock*>(this);
6524 hasPseudo = firstLineBlock->style()->hasPseudoStyle(FIRST_LINE);
6527 RenderObject* parentBlock = firstLineBlock->parent();
6534 if (firstLineBlock->isReplaced() || firstLineBlock->isFloating()
6535 || !parentBlock || parentBlock->firstChild() != firstLineBlock || !parentBlock->isBlockFlow()
6539 firstLineBlock = toRenderBlock(parentBlock);
6545 return firstLineBlock;