Home | History | Annotate | Download | only in rendering

Lines Matching refs:firstLeaf

492     InlineBox* firstLeaf = firstLeafChild();
495 if (firstLeaf != lastLeaf) {
496 if (firstLeaf->isLineBreak())
497 firstLeaf = firstLeaf->nextLeafChildIgnoringLineBreak();
502 if (firstLeaf == lastLeaf && (!onlyEditableLeaves || isEditableLeaf(firstLeaf)))
503 return firstLeaf;
506 if (leftPosition <= firstLeaf->logicalLeft() && !firstLeaf->renderer().isListMarker() && (!onlyEditableLeaves || isEditableLeaf(firstLeaf)))
507 // The leftPosition coordinate is less or equal to left edge of the firstLeaf.
509 return firstLeaf;
517 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChildIgnoringLineBreak()) {