Home | History | Annotate | Download | only in rendering

Lines Matching full:xpos

531 xPos, int yPos, int tx, int ty, HitTestAction action)
538 if (!child->hasLayer() && child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) {
539 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
546 if (visibleToHitTesting() && action == HitTestForeground && IntRect(tx, ty, width(), height()).contains(xPos, yPos)) {
547 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
1085 // The value is cached in the xPos of the box. We only need this value if
1992 int& widthValue, int& marginLeftValue, int& marginRightValue, int& xPos)
2144 // FIXME: This hack is needed to calculate the xPos for a 'rtl' relatively
2145 // positioned, inline because right now, it is using the xPos
2153 xPos = leftValue + marginLeftValue + lastLine->borderLeft() + (lastLine->x() - firstLine->x());
2158 xPos = leftValue + marginLeftValue + containerBlock->borderLeft();
2550 // FIXME: This hack is needed to calculate the xPos for a 'rtl' relatively
2551 // positioned, inline containing block because right now, it is using the xPos
2776 int xPos = point.x();
2783 if (xPos < 0 || xPos > right || yPos < 0 || yPos > bottom) {
2784 if (xPos <= right / 2)
2793 int newX = xPos;
2814 if (xPos <= right && xPos >= left && yPos <= top && yPos >= bottom) {
2816 return renderer->positionForCoordinates(xPos + newX - renderer->x(), yPos + newY - renderer->y());
2817 return renderer->positionForCoordinates(xPos - renderer->x(), yPos - renderer->y());
2823 if (xPos > right) {
2830 } else if (xPos < left) {
2839 cmp = IntPoint(xPos, top);
2841 cmp = IntPoint(xPos, bottom);
2844 int x1minusx2 = cmp.x() - xPos;