Home | History | Annotate | Download | only in rendering

Lines Matching full:shadow

296             for (ShadowData* shadow = rt->style()->textShadow(); shadow; shadow = shadow->next) {
297 childOverflowLeft = min(childOverflowLeft, shadow->x - shadow->blur + leftGlyphOverflow);
298 childOverflowRight = max(childOverflowRight, shadow->x + shadow->blur + rightGlyphOverflow);
544 // box-shadow on root line boxes is applying to the block and not to the lines.
571 for (ShadowData* shadow = rt->style()->textShadow(); shadow; shadow = shadow->next) {
572 childOverflowTop = min(childOverflowTop, shadow->y - shadow->blur + topGlyphOverflow);
573 childOverflowBottom = max(childOverflowBottom, shadow->y + shadow->blur + bottomGlyphOverflow);
653 // 1. Paint our background, border and box-shadow.
724 // FIXME: We can do better here in the multi-line case. We want to push a clip so that the shadow doesn't
759 // Shadow comes first and is behind the background and border.
979 ShadowData* shadow = styleToUse->textShadow();
980 if (!linesAreOpaque && shadow && shadow->next) {
982 for (ShadowData* s = shadow; s; s = s->next) {
999 if (shadow) {
1000 if (!shadow->next) {
1005 context->setShadow(IntSize(shadow->x, shadow->y - extraOffset), shadow->blur, shadow->color, colorSpace);
1007 shadow = shadow->next;
1026 } while (shadow);