Searched defs:firstLineBlock (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObject.cpp667 RenderBlock* RenderObject::firstLineBlock() const function in class:blink::RenderObject
2665 if (RenderBlock* firstLineBlock = rendererForFirstLineStyle->firstLineBlock()) {
2667 return firstLineBlock->getCachedPseudoStyle(FIRST_LINE, style);
2668 return firstLineBlock->getUncachedPseudoStyle(PseudoStyleRequest(FIRST_LINE), style, firstLineBlock == renderer ? style : 0);
H A DRenderBlock.cpp3512 RenderBlock* RenderBlock::firstLineBlock() const function in class:blink::RenderBlock
3514 RenderBlock* firstLineBlock = const_cast<RenderBlock*>(this); local
3517 hasPseudo = firstLineBlock->style()->hasPseudoStyle(FIRST_LINE);
3520 RenderObject* parentBlock = firstLineBlock->parent();
3521 if (firstLineBlock->isReplaced() || firstLineBlock->isFloating()
3526 if (toRenderBlock(parentBlock)->firstChild() != firstLineBlock)
3528 firstLineBlock = toRenderBlock(parentBlock);
3534 return firstLineBlock;

Completed in 810 milliseconds