Home | History | Annotate | Download | only in rendering

Lines Matching refs:tx

30 void EllipsisBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
45 paintSelection(context, tx, ty, style, style->font());
54 context->drawText(style->font(), TextRun(str.characters(), str.length(), false, 0, 0, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->font().ascent()));
65 tx += m_x + m_width - m_markupBox->x();
67 m_markupBox->paint(paintInfo, tx, ty);
71 IntRect EllipsisBox::selectionRect(int tx, int ty)
76 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight()));
79 void EllipsisBox::paintSelection(GraphicsContext* context, int tx, int ty, RenderStyle* style, const Font& font)
94 context->clip(IntRect(m_x + tx, y + ty, m_width, h));
96 IntPoint(m_x + tx, m_y + ty + y), h, c, style->colorSpace());
100 bool EllipsisBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty)
102 tx += m_x;
108 int mtx = tx + m_width - m_markupBox->x();
116 if (visibleToHitTesting() && IntRect(tx, ty, m_width, m_height).contains(x, y)) {
117 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty));