Home | History | Annotate | Download | only in rendering

Lines Matching refs:ty

32 void EllipsisBox::paint(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom)
47 paintSelection(context, tx, ty, style, style->font());
56 context->drawText(style->font(), TextRun(str.characters(), str.length(), false, 0, 0, TextRun::AllowTrailingExpansion, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->fontMetrics().ascent()));
68 ty += m_y + style->fontMetrics().ascent() - (m_markupBox->y() + m_markupBox->renderer()->style(m_firstLine)->fontMetrics().ascent());
69 m_markupBox->paint(paintInfo, tx, ty, lineTop, lineBottom);
73 IntRect EllipsisBox::selectionRect(int tx, int ty)
78 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight()));
81 void EllipsisBox::paintSelection(GraphicsContext* context, int tx, int ty, RenderStyle* style, const Font& font)
96 context->clip(IntRect(m_x + tx, y + ty, m_logicalWidth, h));
98 IntPoint(m_x + tx, m_y + ty + y), h, c, style->colorSpace());
102 bool EllipsisBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, int lineTop, int lineBottom)
105 ty += m_y;
111 int mty = ty + style->fontMetrics().ascent() - (m_markupBox->y() + m_markupBox->renderer()->style(m_firstLine)->fontMetrics().ascent());
118 IntRect boundsRect = IntRect(tx, ty, m_logicalWidth, m_height);
120 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty));