Home | History | Annotate | Download | only in rendering

Lines Matching defs:bottomRight

465         IntSize topLeft, topRight, bottomLeft, bottomRight;
466 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
471 includeRightEdge ? bottomRight : IntSize());
944 IntSize topLeft, topRight, bottomLeft, bottomRight;
958 bottomRight = bottomRightRadius;
965 graphicsContext->addRoundedRectClip(borderRect, topLeft, topRight, bottomLeft, bottomRight);
1057 bool ignore_right = (renderRadii && bottomRight.width() > 0) ||
1065 x2 -= bottomRight.width();
1101 if (bottomRight.width()) {
1102 int rightY = ty + h - bottomRight.height() * 2;
1103 int rightX = tx + w - bottomRight.width() * 2;
1104 bool applyRightInnerClip = (style->borderRightWidth() < bottomRight.width())
1105 && (style->borderBottomWidth() < bottomRight.height())
1109 graphicsContext->addInnerRoundedRectClip(IntRect(rightX, rightY, bottomRight.width() * 2, bottomRight.height() * 2),
1117 drawArcForBoxSide(graphicsContext, rightX, rightY, thickness, bottomRight, secondAngleStart, secondAngleSpan,
1198 bool ignore_bottom = (renderRadii && bottomRight.height() > 0) ||
1207 y2 -= bottomRight.height();
1238 if (!lowerRightBorderStylesMatch && bottomRight.width()) {
1239 int bottomX = tx + w - bottomRight.width() * 2;
1240 int bottomY = ty + h - bottomRight.height() * 2;
1241 bool applyBottomInnerClip = (style->borderRightWidth() < bottomRight.width())
1242 && (style->borderBottomWidth() < bottomRight.height())
1246 graphicsContext->addInnerRoundedRectClip(IntRect(bottomX, bottomY, bottomRight.width() * 2, bottomRight.height() * 2),
1254 drawArcForBoxSide(graphicsContext, bottomX, bottomY, thickness, bottomRight, secondAngleStart, secondAngleSpan,
1277 IntSize bottomRight;
1302 bottomRight = bottomRightRadius;
1347 IntSize bottomRightToClipOut = bottomRight;
1359 bottomRight.expand(shadowSpread, shadowSpread);
1360 bottomRight.clampNegativeToZero();
1384 context->fillRoundedRect(fillRect, topLeft, topRight, bottomLeft, bottomRight, Color::black, s->colorSpace());
1412 context->fillRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight, shadowColor, s->colorSpace());
1433 context->clip(Path::createRoundedRectangle(rect, topLeft, topRight, bottomLeft, bottomRight));
1455 bottomRight.expand(-shadowSpread, -shadowSpread);
1456 bottomRight.clampNegativeToZero();
1458 context->addPath(Path::createRoundedRectangle(holeRect, topLeft, topRight, bottomLeft, bottomRight));