Home | History | Annotate | Download | only in page

Lines Matching refs:startCaretRect

329     IntRect startCaretRect = startRenderer->localCaretRect(startInlineBox, startCaretOffset, &extraWidthToEndOfLine);
330 if (startCaretRect != IntRect())
331 startCaretRect = startRenderer->localToAbsoluteQuad(FloatRect(startCaretRect)).enclosingBoundingBox();
342 if (startCaretRect.y() == endCaretRect.y()) {
344 return IntRect(min(startCaretRect.x(), endCaretRect.x()),
345 startCaretRect.y(),
346 abs(endCaretRect.x() - startCaretRect.x()),
347 max(startCaretRect.height(), endCaretRect.height()));
351 return IntRect(startCaretRect.x(),
352 startCaretRect.y(),
353 startCaretRect.width() + extraWidthToEndOfLine,
354 startCaretRect.height());