Home | History | Annotate | Download | only in rendering

Lines Matching refs:tx

1027 void RenderTableSection::paint(PaintInfo& paintInfo, int tx, int ty)
1041 tx += x();
1045 bool pushedClip = pushContentsClip(paintInfo, tx, ty);
1046 paintObject(paintInfo, tx, ty);
1048 popContentsClip(paintInfo, phase, tx, ty);
1051 void RenderTableSection::paintObject(PaintInfo& paintInfo, int tx, int ty)
1107 if (tx + table()->columnPositions()[startcol + 1] >= x - os)
1110 if (startcol == totalCols && tx + table()->columnPositions()[totalCols] + table()->outerBorderRight() >= x - os)
1114 if (tx + table()->columnPositions()[endcol - 1] <= x + w + os)
1117 if (!endcol && tx + table()->columnPositions()[0] - table()->outerBorderLeft() <= y + w + os)
1156 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, colGroup);
1157 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, col);
1160 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, this);
1165 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, row);
1169 cell->paint(paintInfo, tx, ty);
1255 bool RenderTableSection::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action)
1259 tx += x();
1262 if (hasOverflowClip() && !overflowClipRect(tx, ty).contains(xPos, yPos))
1270 if (child->isBox() && !toRenderBox(child)->hasSelfPaintingLayer() && child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) {
1271 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));