Home | History | Annotate | Download | only in rendering

Lines Matching refs:firstLeaf

463     InlineBox* firstLeaf = firstLeafChild();
465 if (firstLeaf == lastLeaf && (!onlyEditableLeaves || isEditableLeaf(firstLeaf)))
466 return firstLeaf;
469 if (leftPosition <= firstLeaf->logicalLeft() && !firstLeaf->renderer()->isListMarker() && (!onlyEditableLeaves || isEditableLeaf(firstLeaf)))
470 // The leftPosition coordinate is less or equal to left edge of the firstLeaf.
472 return firstLeaf;
480 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) {