Home | History | Annotate | Download | only in rendering

Lines Matching full:topleft

465         IntSize topLeft, topRight, bottomLeft, bottomRight;
466 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
468 context->addRoundedRectClip(borderRect, includeLeftEdge ? topLeft : IntSize(),
944 IntSize topLeft, topRight, bottomLeft, bottomRight;
953 topLeft = topLeftRadius;
965 graphicsContext->addRoundedRectClip(borderRect, topLeft, topRight, bottomLeft, bottomRight);
976 bool ignore_left = (renderRadii && topLeft.width() > 0) ||
987 x += topLeft.width();
1002 if (topLeft.width()) {
1005 bool applyLeftInnerClip = (style->borderLeftWidth() < topLeft.width())
1006 && (style->borderTopWidth() < topLeft.height())
1010 graphicsContext->addInnerRoundedRectClip(IntRect(leftX, leftY, topLeft.width() * 2, topLeft.height() * 2),
1018 drawArcForBoxSide(graphicsContext, leftX, leftY, thickness, topLeft, firstAngleStart, firstAngleSpan,
1126 bool ignore_top = (renderRadii && topLeft.height() > 0) ||
1137 y += topLeft.height();
1148 if (!upperLeftBorderStylesMatch && topLeft.width()) {
1150 bool applyTopInnerClip = (style->borderLeftWidth() < topLeft.width())
1151 && (style->borderTopWidth() < topLeft.height())
1155 graphicsContext->addInnerRoundedRectClip(IntRect(topX, topY, topLeft.width() * 2, topLeft.height() * 2),
1163 drawArcForBoxSide(graphicsContext, topX, topY, thickness, topLeft, firstAngleStart, firstAngleSpan,
1274 IntSize topLeft;
1291 topLeft = topLeftRadius;
1344 IntSize topLeftToClipOut = topLeft;
1350 topLeft.expand(shadowSpread, shadowSpread);
1351 topLeft.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));
1446 topLeft.expand(-shadowSpread, -shadowSpread);
1447 topLeft
1458 context->addPath(Path::createRoundedRectangle(holeRect, topLeft, topRight, bottomLeft, bottomRight));