Home | History | Annotate | Download | only in rendering

Lines Matching refs:ty

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()));
66 ty += m_y + style->font().ascent() - (m_markupBox->y() + m_markupBox->renderer()->style(m_firstLine)->font().ascent());
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)
103 ty += m_y;
109 int mty = ty + style->font().ascent() - (m_markupBox->y() + m_markupBox->renderer()->style(m_firstLine)->font().ascent());
116 if (visibleToHitTesting() && IntRect(tx, ty, m_width, m_height).contains(x, y)) {
117 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty));