Home | History | Annotate | Download | only in rendering

Lines Matching defs:selectionRect

318     // function to take ints causes various internal mismatches. But selectionRect takes ints, and 
319 // passing UINT_MAX to it causes trouble. Ideally we'd change selectionRect to take unsigneds, but
331 IntRect selectionRect = box->selectionRect(0, 0, start, end);
332 r.setHeight(selectionRect.height());
333 r.setY(selectionRect.y());
341 IntRect r = box->selectionRect(0, 0, start, realEnd);
344 // change the height and y position because selectionRect uses selection-specific values
376 return ellipsis->selectionRect(0, 0);
408 // function to take ints causes various internal mismatches. But selectionRect takes ints, and
409 // passing UINT_MAX to it causes trouble. Ideally we'd change selectionRect to take unsigneds, but
421 IntRect selectionRect = box->selectionRect(0, 0, start, end);
423 r.setHeight(selectionRect.height());
424 r.setY(selectionRect.y());
426 r.setWidth(selectionRect.width());
427 r.setX(selectionRect.x());
433 IntRect r = box->selectionRect(0, 0, start, realEnd);
436 // change the height and y position because selectionRect uses selection-specific values
1429 rect.unite(box->selectionRect(0, 0, startPos, endPos));