Changeset 252161 in webkit
- Timestamp:
- Nov 6, 2019, 4:39:24 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/LayoutTests/ChangeLog ¶
r252156 r252161 615 615 https://bugs.webkit.org/show_bug.cgi?id=203089 616 616 https://trac.webkit.org/changeset/251993 617 618 2019-11-06 Simon Fraser <simon.fraser@apple.com> 619 620 Box-shadow spread radius does not transition or animate correctly with CSS Transitions & Animations 621 https://bugs.webkit.org/show_bug.cgi?id=202489 622 623 Reviewed by Zalan Bujtas. 624 625 * fast/box-shadow/hidpi-box-shadow-expected.html: Added. 626 * fast/box-shadow/hidpi-box-shadow.html: Added. 617 627 618 628 2019-11-04 Chris Dumez <cdumez@apple.com> -
TabularUnified trunk/Source/WebCore/ChangeLog ¶
r252156 r252161 810 810 (WebCore::WebAnimation::hasPendingActivity const): 811 811 * animation/WebAnimation.h: 812 813 2019-11-06 Simon Fraser <simon.fraser@apple.com> 814 815 Box-shadow spread radius does not transition or animate correctly with CSS Transitions & Animations 816 https://bugs.webkit.org/show_bug.cgi?id=202489 817 818 Reviewed by Zalan Bujtas. 819 820 Fix box-shadow offset and spread to support subpixel values, and make the rendering subpixel-aware. 821 This also makes animation of shadow spread and offset be smoother on Retina displays. 822 823 Also make ShadowStyle an enum class. 824 825 Test: fast/box-shadow/hidpi-box-shadow.html 826 827 * css/CSSComputedStyleDeclaration.cpp: 828 (WebCore::ComputedStyleExtractor::valueForShadow): 829 (WebCore::ComputedStyleExtractor::valueForFilter): 830 * css/CSSPrimitiveValue.cpp: 831 (WebCore::CSSPrimitiveValue::computeLength const): 832 * page/animation/CSSPropertyAnimation.cpp: 833 (WebCore::blendFunc): 834 (WebCore::shadowForBlending): 835 * platform/animation/AnimationUtilities.h: 836 (WebCore::blend): 837 * platform/graphics/RoundedRect.h: 838 * rendering/InlineFlowBox.cpp: 839 (WebCore::InlineFlowBox::paintBoxDecorations): 840 * rendering/RenderBox.cpp: 841 (WebCore::RenderBox::paintBoxDecorations): 842 * rendering/RenderBoxModelObject.cpp: 843 (WebCore::applyBoxShadowForBackground): 844 (WebCore::RenderBoxModelObject::boxShadowShouldBeAppliedToBackground const): 845 (WebCore::areaCastingShadowInHole): 846 (WebCore::RenderBoxModelObject::paintBoxShadow): 847 Move the snapping until after we've adjusted rects for offset and spread. The "extraOffset" 848 computation makes the snapping a little more complex; we have to snap before and after applying 849 shadowOffset, and give to GraphicsContext the delta between the snapped values. 850 * rendering/RenderTable.cpp: 851 (WebCore::RenderTable::paintBoxDecorations): 852 * rendering/RenderTableCell.cpp: 853 (WebCore::RenderTableCell::paintBoxDecorations): 854 * rendering/style/RenderStyle.cpp: 855 (WebCore::RenderStyle::setTextShadow): 856 (WebCore::RenderStyle::getShadowExtent const): 857 (WebCore::RenderStyle::getShadowInsetExtent const): 858 (WebCore::RenderStyle::getShadowHorizontalExtent const): 859 (WebCore::RenderStyle::getShadowVerticalExtent const): 860 * rendering/style/ShadowData.cpp: 861 (WebCore::ShadowData::ShadowData): 862 (WebCore::calculateShadowExtent): 863 (WebCore::ShadowData::adjustRectForShadow const): 864 * rendering/style/ShadowData.h: 865 (WebCore::ShadowData::ShadowData): 866 (WebCore::ShadowData::x const): 867 (WebCore::ShadowData::y const): 868 (WebCore::ShadowData::location const): 869 (WebCore::ShadowData::paintingExtent const): 870 (WebCore::ShadowData::spread const): 871 * style/StyleBuilderCustom.h: 872 (WebCore::Style::BuilderCustom::applyTextOrBoxShadowValue): 812 873 813 874 2019-11-04 Chris Dumez <cdumez@apple.com> -
TabularUnified trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp ¶
r252076 r252161 614 614 auto blur = adjustLengthForZoom(currShadowData->radius(), style, adjust); 615 615 auto spread = propertyID == CSSPropertyTextShadow ? RefPtr<CSSPrimitiveValue>() : adjustLengthForZoom(currShadowData->spread(), style, adjust); 616 auto style = propertyID == CSSPropertyTextShadow || currShadowData->style() == Normal ? RefPtr<CSSPrimitiveValue>() : cssValuePool.createIdentifierValue(CSSValueInset);616 auto style = propertyID == CSSPropertyTextShadow || currShadowData->style() == ShadowStyle::Normal ? RefPtr<CSSPrimitiveValue>() : cssValuePool.createIdentifierValue(CSSValueInset); 617 617 auto color = cssValuePool.createColorValue(currShadowData->color()); 618 618 list->prepend(CSSShadowValue::create(WTFMove(x), WTFMove(y), WTFMove(blur), WTFMove(spread), WTFMove(style), WTFMove(color))); … … 692 692 filterValue = CSSFunctionValue::create(CSSValueDropShadow); 693 693 // We want our computed style to look like that of a text shadow (has neither spread nor inset style). 694 ShadowData shadowData = ShadowData(dropShadowOperation.location(), dropShadowOperation.stdDeviation(), 0, Normal, false, dropShadowOperation.color());694 ShadowData shadowData = ShadowData(dropShadowOperation.location(), dropShadowOperation.stdDeviation(), 0, ShadowStyle::Normal, false, dropShadowOperation.color()); 695 695 filterValue->append(valueForShadow(&shadowData, CSSPropertyTextShadow, style, adjust)); 696 696 break; -
TabularUnified trunk/Source/WebCore/css/CSSPrimitiveValue.cpp ¶
r251662 r252161 595 595 { 596 596 return computeLengthDouble(conversionData); 597 } 598 599 template<> LayoutUnit CSSPrimitiveValue::computeLength(const CSSToLengthConversionData& conversionData) const 600 { 601 return LayoutUnit(computeLengthDouble(conversionData)); 597 602 } 598 603 -
TabularUnified trunk/Source/WebCore/page/animation/CSSPropertyAnimation.cpp ¶
r251776 r252161 108 108 return to; 109 109 110 double fromVal = from == Normal ? 1 : 0;111 double toVal = to == Normal ? 1 : 0;110 double fromVal = from == ShadowStyle::Normal ? 1 : 0; 111 double toVal = to == ShadowStyle::Normal ? 1 : 0; 112 112 double result = blendFunc(anim, fromVal, toVal, progress); 113 return result > 0 ? Normal :Inset;113 return result > 0 ? ShadowStyle::Normal : ShadowStyle::Inset; 114 114 } 115 115 … … 760 760 static inline const ShadowData* shadowForBlending(const ShadowData* srcShadow, const ShadowData* otherShadow) 761 761 { 762 static NeverDestroyed<ShadowData> defaultShadowData( IntPoint(), 0, 0,Normal, false, Color::transparent);763 static NeverDestroyed<ShadowData> defaultInsetShadowData( IntPoint(), 0, 0,Inset, false, Color::transparent);764 static NeverDestroyed<ShadowData> defaultWebKitBoxShadowData( IntPoint(), 0, 0,Normal, true, Color::transparent);765 static NeverDestroyed<ShadowData> defaultInsetWebKitBoxShadowData( IntPoint(), 0, 0,Inset, true, Color::transparent);762 static NeverDestroyed<ShadowData> defaultShadowData(LayoutPoint(), 0, 0, ShadowStyle::Normal, false, Color::transparent); 763 static NeverDestroyed<ShadowData> defaultInsetShadowData(LayoutPoint(), 0, 0, ShadowStyle::Inset, false, Color::transparent); 764 static NeverDestroyed<ShadowData> defaultWebKitBoxShadowData(LayoutPoint(), 0, 0, ShadowStyle::Normal, true, Color::transparent); 765 static NeverDestroyed<ShadowData> defaultInsetWebKitBoxShadowData(LayoutPoint(), 0, 0, ShadowStyle::Inset, true, Color::transparent); 766 766 767 767 if (srcShadow) 768 768 return srcShadow; 769 769 770 if (otherShadow->style() == Inset)770 if (otherShadow->style() == ShadowStyle::Inset) 771 771 return otherShadow->isWebkitBoxShadow() ? &defaultInsetWebKitBoxShadowData.get() : &defaultInsetShadowData.get(); 772 772 -
TabularUnified trunk/Source/WebCore/platform/animation/AnimationUtilities.h ¶
r245543 r252161 1 1 /* 2 * Copyright (C) 2011 Apple Inc. All rights reserved.2 * Copyright (C) 2011-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 24 24 */ 25 25 26 #ifndef AnimationUtilities_h 27 #define AnimationUtilities_h 26 #pragma once 28 27 29 28 #include "IntPoint.h" 30 #include "Layout Unit.h"29 #include "LayoutPoint.h" 31 30 32 31 namespace WebCore { … … 60 59 { 61 60 return IntPoint(blend(from.x(), to.x(), progress), 62 blend(from.y(), to.y(), progress)); 61 blend(from.y(), to.y(), progress)); 62 } 63 64 inline LayoutPoint blend(const LayoutPoint& from, const LayoutPoint& to, double progress) 65 { 66 return LayoutPoint(blend(from.x(), to.x(), progress), 67 blend(from.y(), to.y(), progress)); 63 68 } 64 69 65 70 } // namespace WebCore 66 67 #endif // AnimationUtilities_h -
TabularUnified trunk/Source/WebCore/platform/graphics/RoundedRect.h ¶
r243674 r252161 25 25 */ 26 26 27 #ifndef RoundedRect_h 28 #define RoundedRect_h 27 #pragma once 29 28 30 29 #include "FloatQuad.h" … … 133 132 134 133 } // namespace WebCore 135 136 #endif // RoundedRect_h -
TabularUnified trunk/Source/WebCore/rendering/InlineFlowBox.cpp ¶
r250341 r252161 1368 1368 // Shadow comes first and is behind the background and border. 1369 1369 if (!renderer().boxShadowShouldBeAppliedToBackground(adjustedPaintoffset, BackgroundBleedNone, this)) 1370 paintBoxShadow(paintInfo, lineStyle, Normal, paintRect);1370 paintBoxShadow(paintInfo, lineStyle, ShadowStyle::Normal, paintRect); 1371 1371 1372 1372 auto color = lineStyle.visitedDependentColor(CSSPropertyBackgroundColor); … … 1376 1376 1377 1377 paintFillLayers(paintInfo, color, lineStyle.backgroundLayers(), paintRect, compositeOp); 1378 paintBoxShadow(paintInfo, lineStyle, Inset, paintRect);1378 paintBoxShadow(paintInfo, lineStyle, ShadowStyle::Inset, paintRect); 1379 1379 1380 1380 // :first-line cannot be used to put borders on a line. Always paint borders with our -
TabularUnified trunk/Source/WebCore/rendering/RenderBox.cpp ¶
r251055 r252161 1322 1322 // custom shadows of their own. 1323 1323 if (!boxShadowShouldBeAppliedToBackground(paintRect.location(), bleedAvoidance)) 1324 paintBoxShadow(paintInfo, paintRect, style(), Normal);1324 paintBoxShadow(paintInfo, paintRect, style(), ShadowStyle::Normal); 1325 1325 1326 1326 GraphicsContextStateSaver stateSaver(paintInfo.context(), false); … … 1353 1353 theme().paintDecorations(*this, paintInfo, paintRect); 1354 1354 } 1355 paintBoxShadow(paintInfo, paintRect, style(), Inset);1355 paintBoxShadow(paintInfo, paintRect, style(), ShadowStyle::Inset); 1356 1356 1357 1357 // The theme will tell us whether or not we should also paint the CSS border. -
TabularUnified trunk/Source/WebCore/rendering/RenderBoxModelObject.cpp ¶
r249364 r252161 681 681 { 682 682 const ShadowData* boxShadow = style.boxShadow(); 683 while (boxShadow->style() != Normal)683 while (boxShadow->style() != ShadowStyle::Normal) 684 684 boxShadow = boxShadow->next(); 685 685 … … 2286 2286 bool hasOneNormalBoxShadow = false; 2287 2287 for (const ShadowData* currentShadow = style().boxShadow(); currentShadow; currentShadow = currentShadow->next()) { 2288 if (currentShadow->style() != Normal)2288 if (currentShadow->style() != ShadowStyle::Normal) 2289 2289 continue; 2290 2290 … … 2323 2323 } 2324 2324 2325 static inline LayoutRect areaCastingShadowInHole(const LayoutRect& holeRect, int shadowExtent, int shadowSpread, const IntSize& shadowOffset)2325 static inline LayoutRect areaCastingShadowInHole(const LayoutRect& holeRect, LayoutUnit shadowExtent, LayoutUnit shadowSpread, const LayoutSize& shadowOffset) 2326 2326 { 2327 2327 LayoutRect bounds(holeRect); … … 2344 2344 return; 2345 2345 2346 RoundedRect border = (shadowStyle == Inset) ? style.getRoundedInnerBorderFor(paintRect, includeLogicalLeftEdge, includeLogicalRightEdge)2346 RoundedRect border = (shadowStyle == ShadowStyle::Inset) ? style.getRoundedInnerBorderFor(paintRect, includeLogicalLeftEdge, includeLogicalRightEdge) 2347 2347 : style.getRoundedBorderFor(paintRect, includeLogicalLeftEdge, includeLogicalRightEdge); 2348 2348 … … 2356 2356 continue; 2357 2357 2358 // FIXME: Add subpixel support for the shadow values. Soon after the shadow offset becomes fractional,2359 // all the early snappings here need to be pushed to the actual painting operations.2360 IntSize shadowOffset(shadow->x(), shadow->y());2358 LayoutSize shadowOffset(shadow->x(), shadow->y()); 2359 LayoutUnit shadowPaintingExtent = shadow->paintingExtent(); 2360 LayoutUnit shadowSpread = shadow->spread(); 2361 2361 int shadowRadius = shadow->radius(); 2362 int shadowPaintingExtent = shadow->paintingExtent(); 2363 int shadowSpread = shadow->spread(); 2364 2362 2365 2363 if (shadowOffset.isZero() && !shadowRadius && !shadowSpread) 2366 2364 continue; … … 2368 2366 Color shadowColor = style.colorByApplyingColorFilter(shadow->color()); 2369 2367 2370 if (shadow->style() == Normal) {2368 if (shadow->style() == ShadowStyle::Normal) { 2371 2369 RoundedRect fillRect = border; 2372 2370 fillRect.inflate(shadowSpread); … … 2374 2372 continue; 2375 2373 2376 FloatRect pixelSnappedShadowRect = snapRectToDevicePixels(border.rect(), deviceScaleFactor); 2377 pixelSnappedShadowRect.inflate(shadowPaintingExtent + shadowSpread); 2378 pixelSnappedShadowRect.move(shadowOffset); 2374 LayoutRect shadowRect = border.rect(); 2375 shadowRect.inflate(shadowPaintingExtent + shadowSpread); 2376 shadowRect.move(shadowOffset); 2377 FloatRect pixelSnappedShadowRect = snapRectToDevicePixels(shadowRect, deviceScaleFactor); 2379 2378 2380 2379 GraphicsContextStateSaver stateSaver(context); 2381 2380 context.clip(pixelSnappedShadowRect); 2382 2381 2383 // Move the fill just outside the clip, adding 1 pixelseparation so that the fill does not2382 // Move the fill just outside the clip, adding at least 1 pixel of separation so that the fill does not 2384 2383 // bleed in (due to antialiasing) if the context is transformed. 2385 IntSize extraOffset(roundToInt(paintRect.width()) + std::max(0, shadowOffset.width()) + shadowPaintingExtent + 2 * shadowSpread + 1, 0); 2384 LayoutUnit xOffset = paintRect.width() + std::max<LayoutUnit>(0, shadowOffset.width()) + shadowPaintingExtent + 2 * shadowSpread + LayoutUnit(1); 2385 LayoutSize extraOffset(xOffset.ceil(), 0); 2386 2386 shadowOffset -= extraOffset; 2387 2387 fillRect.move(extraOffset); 2388 2388 2389 FloatRoundedRect pixelSnappedRectToClipOut = border.pixelSnappedRoundedRectForPainting(deviceScaleFactor); 2390 FloatRoundedRect pixelSnappedFillRect = fillRect.pixelSnappedRoundedRectForPainting(deviceScaleFactor); 2391 2392 LayoutPoint shadowRectOrigin = fillRect.rect().location() + shadowOffset; 2393 FloatPoint snappedShadowOrigin = FloatPoint(roundToDevicePixel(shadowRectOrigin.x(), deviceScaleFactor), roundToDevicePixel(shadowRectOrigin.y(), deviceScaleFactor)); 2394 FloatSize snappedShadowOffset = snappedShadowOrigin - pixelSnappedFillRect.rect().location(); 2395 2389 2396 if (shadow->isWebkitBoxShadow()) 2390 context.setLegacyShadow(s hadowOffset, shadowRadius, shadowColor);2397 context.setLegacyShadow(snappedShadowOffset, shadowRadius, shadowColor); 2391 2398 else 2392 context.setShadow(shadowOffset, shadowRadius, shadowColor); 2393 2394 FloatRoundedRect rectToClipOut = border.pixelSnappedRoundedRectForPainting(deviceScaleFactor); 2395 FloatRoundedRect pixelSnappedFillRect = fillRect.pixelSnappedRoundedRectForPainting(deviceScaleFactor); 2399 context.setShadow(snappedShadowOffset, shadowRadius, shadowColor); 2400 2396 2401 if (hasBorderRadius) { 2397 2402 // If the box is opaque, it is unnecessary to clip it out. However, doing so saves time … … 2399 2404 // corners. Those are avoided by insetting the clipping path by one pixel. 2400 2405 if (hasOpaqueBackground) 2401 rectToClipOut.inflateWithRadii(-1.0f);2402 2403 if (! rectToClipOut.isEmpty())2404 context.clipOutRoundedRect( rectToClipOut);2406 pixelSnappedRectToClipOut.inflateWithRadii(-1.0f); 2407 2408 if (!pixelSnappedRectToClipOut.isEmpty()) 2409 context.clipOutRoundedRect(pixelSnappedRectToClipOut); 2405 2410 2406 2411 RoundedRect influenceRect(LayoutRect(pixelSnappedShadowRect), border.radii()); … … 2425 2430 AffineTransform transform = context.getCTM(); 2426 2431 if (transform.a() != 1 || (transform.d() != 1 && transform.d() != -1) || transform.b() || transform.c()) 2427 rectToClipOut.inflate(-1.0f);2432 pixelSnappedRectToClipOut.inflate(-1.0f); 2428 2433 } 2429 2434 2430 if (!rectToClipOut.isEmpty()) 2431 context.clipOut(rectToClipOut.rect()); 2435 if (!pixelSnappedRectToClipOut.isEmpty()) 2436 context.clipOut(pixelSnappedRectToClipOut.rect()); 2437 2432 2438 context.fillRect(pixelSnappedFillRect.rect(), Color::black); 2433 2439 } 2434 2440 } else { 2435 2441 // Inset shadow. 2442 LayoutRect holeRect = border.rect(); 2443 holeRect.inflate(-shadowSpread); 2444 FloatRect pixelSnappedHoleRect = snapRectToDevicePixels(holeRect, deviceScaleFactor); 2436 2445 FloatRoundedRect pixelSnappedBorderRect = border.pixelSnappedRoundedRectForPainting(deviceScaleFactor); 2437 FloatRect pixelSnappedHoleRect = pixelSnappedBorderRect.rect();2438 pixelSnappedHoleRect.inflate(-shadowSpread);2439 2446 2440 2447 if (pixelSnappedHoleRect.isEmpty()) { … … 2448 2455 if (!includeLogicalLeftEdge) { 2449 2456 if (isHorizontal) { 2450 pixelSnappedHoleRect.move(-std::max(shadowOffset.width(), 0) - shadowPaintingExtent, 0);2451 pixelSnappedHoleRect.setWidth(pixelSnappedHoleRect.width() + std::max(shadowOffset.width(), 0) + shadowPaintingExtent);2457 holeRect.move(-std::max<LayoutUnit>(shadowOffset.width(), 0) - shadowPaintingExtent, 0); 2458 holeRect.setWidth(holeRect.width() + std::max<LayoutUnit>(shadowOffset.width(), 0) + shadowPaintingExtent); 2452 2459 } else { 2453 pixelSnappedHoleRect.move(0, -std::max(shadowOffset.height(), 0) - shadowPaintingExtent);2454 pixelSnappedHoleRect.setHeight(pixelSnappedHoleRect.height() + std::max(shadowOffset.height(), 0) + shadowPaintingExtent);2460 holeRect.move(0, -std::max<LayoutUnit>(shadowOffset.height(), 0) - shadowPaintingExtent); 2461 holeRect.setHeight(holeRect.height() + std::max<LayoutUnit>(shadowOffset.height(), 0) + shadowPaintingExtent); 2455 2462 } 2456 2463 } 2464 2457 2465 if (!includeLogicalRightEdge) { 2458 2466 if (isHorizontal) 2459 pixelSnappedHoleRect.setWidth(pixelSnappedHoleRect.width() - std::min(shadowOffset.width(), 0) + shadowPaintingExtent);2467 holeRect.setWidth(holeRect.width() - std::min<LayoutUnit>(shadowOffset.width(), 0) + shadowPaintingExtent); 2460 2468 else 2461 pixelSnappedHoleRect.setHeight(pixelSnappedHoleRect.height() - std::min(shadowOffset.height(), 0) + shadowPaintingExtent);2469 holeRect.setHeight(holeRect.height() - std::min<LayoutUnit>(shadowOffset.height(), 0) + shadowPaintingExtent); 2462 2470 } 2463 2471 2472 if (!includeLogicalLeftEdge || !includeLogicalRightEdge) 2473 pixelSnappedHoleRect = snapRectToDevicePixels(holeRect, deviceScaleFactor); 2474 2464 2475 Color fillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), 255); 2465 2476 2466 FloatRect pixelSnappedOuterRect = snapRectToDevicePixels(areaCastingShadowInHole(LayoutRect(pixelSnappedBorderRect.rect()), shadowPaintingExtent, shadowSpread, shadowOffset), deviceScaleFactor); 2467 FloatRoundedRect pixelSnappedRoundedHole = FloatRoundedRect(pixelSnappedHoleRect, pixelSnappedBorderRect.radii()); 2477 FloatRect pixelSnappedOuterRect = snapRectToDevicePixels(areaCastingShadowInHole(holeRect, shadowPaintingExtent, shadowSpread, shadowOffset), deviceScaleFactor); 2478 RoundedRect roundedHoleRect(holeRect, border.radii()); 2479 FloatRoundedRect pixelSnappedRoundedHole = roundedHoleRect.pixelSnappedRoundedRectForPainting(deviceScaleFactor); 2468 2480 2469 2481 GraphicsContextStateSaver stateSaver(context); … … 2474 2486 context.clip(pixelSnappedBorderRect.rect()); 2475 2487 2476 IntSize extraOffset(2 * roundToInt(paintRect.width()) + std::max (0, shadowOffset.width()) + shadowPaintingExtent - 2 * shadowSpread + 1, 0);2488 IntSize extraOffset(2 * roundToInt(paintRect.width()) + std::max<LayoutUnit>(0, shadowOffset.width()) + shadowPaintingExtent - 2 * shadowSpread + 1, 0); 2477 2489 context.translate(extraOffset); 2478 2490 shadowOffset -= extraOffset; -
TabularUnified trunk/Source/WebCore/rendering/RenderTable.cpp ¶
r248846 r252161 771 771 BackgroundBleedAvoidance bleedAvoidance = determineBackgroundBleedAvoidance(paintInfo.context()); 772 772 if (!boxShadowShouldBeAppliedToBackground(rect.location(), bleedAvoidance)) 773 paintBoxShadow(paintInfo, rect, style(), Normal);773 paintBoxShadow(paintInfo, rect, style(), ShadowStyle::Normal); 774 774 paintBackground(paintInfo, rect, bleedAvoidance); 775 paintBoxShadow(paintInfo, rect, style(), Inset);775 paintBoxShadow(paintInfo, rect, style(), ShadowStyle::Inset); 776 776 777 777 if (style().hasVisibleBorderDecoration() && !collapseBorders()) -
TabularUnified trunk/Source/WebCore/rendering/RenderTableCell.cpp ¶
r247184 r252161 1319 1319 adjustBorderBoxRectForPainting(paintRect); 1320 1320 1321 paintBoxShadow(paintInfo, paintRect, style(), Normal);1321 paintBoxShadow(paintInfo, paintRect, style(), ShadowStyle::Normal); 1322 1322 1323 1323 // Paint our cell background. 1324 1324 paintBackgroundsBehindCell(paintInfo, paintOffset, this); 1325 1325 1326 paintBoxShadow(paintInfo, paintRect, style(), Inset);1326 paintBoxShadow(paintInfo, paintRect, style(), ShadowStyle::Inset); 1327 1327 1328 1328 if (!style().hasBorder() || table->collapseBorders()) -
TabularUnified trunk/Source/WebCore/rendering/style/RenderStyle.cpp ¶
r251059 r252161 1409 1409 void RenderStyle::setTextShadow(std::unique_ptr<ShadowData> shadowData, bool add) 1410 1410 { 1411 ASSERT(!shadowData || (!shadowData->spread() && shadowData->style() == Normal));1411 ASSERT(!shadowData || (!shadowData->spread() && shadowData->style() == ShadowStyle::Normal)); 1412 1412 1413 1413 auto& rareData = m_rareInheritedData.access(); … … 1883 1883 1884 1884 for ( ; shadow; shadow = shadow->next()) { 1885 if (shadow->style() == Inset)1885 if (shadow->style() == ShadowStyle::Inset) 1886 1886 continue; 1887 1887 1888 intextentAndSpread = shadow->paintingExtent() + shadow->spread();1888 auto extentAndSpread = shadow->paintingExtent() + shadow->spread(); 1889 1889 top = std::min<LayoutUnit>(top, shadow->y() - extentAndSpread); 1890 1890 right = std::max<LayoutUnit>(right, shadow->x() + extentAndSpread); … … 1902 1902 1903 1903 for ( ; shadow; shadow = shadow->next()) { 1904 if (shadow->style() == Normal)1904 if (shadow->style() == ShadowStyle::Normal) 1905 1905 continue; 1906 1906 1907 intextentAndSpread = shadow->paintingExtent() + shadow->spread();1907 auto extentAndSpread = shadow->paintingExtent() + shadow->spread(); 1908 1908 top = std::max<LayoutUnit>(top, shadow->y() + extentAndSpread); 1909 1909 right = std::min<LayoutUnit>(right, shadow->x() - extentAndSpread); … … 1921 1921 1922 1922 for ( ; shadow; shadow = shadow->next()) { 1923 if (shadow->style() == Inset)1923 if (shadow->style() == ShadowStyle::Inset) 1924 1924 continue; 1925 1925 1926 intextentAndSpread = shadow->paintingExtent() + shadow->spread();1926 auto extentAndSpread = shadow->paintingExtent() + shadow->spread(); 1927 1927 left = std::min<LayoutUnit>(left, shadow->x() - extentAndSpread); 1928 1928 right = std::max<LayoutUnit>(right, shadow->x() + extentAndSpread); … … 1936 1936 1937 1937 for ( ; shadow; shadow = shadow->next()) { 1938 if (shadow->style() == Inset)1938 if (shadow->style() == ShadowStyle::Inset) 1939 1939 continue; 1940 1940 1941 intextentAndSpread = shadow->paintingExtent() + shadow->spread();1941 auto extentAndSpread = shadow->paintingExtent() + shadow->spread(); 1942 1942 top = std::min<LayoutUnit>(top, shadow->y() - extentAndSpread); 1943 1943 bottom = std::max<LayoutUnit>(bottom, shadow->y() + extentAndSpread); -
TabularUnified trunk/Source/WebCore/rendering/style/ShadowData.cpp ¶
r251326 r252161 30 30 ShadowData::ShadowData(const ShadowData& o) 31 31 : m_location(o.m_location) 32 , m_spread(o.m_spread) 32 33 , m_radius(o.m_radius) 33 , m_spread(o.m_spread)34 34 , m_color(o.m_color) 35 35 , m_style(o.m_style) … … 59 59 } 60 60 61 static inline void calculateShadowExtent(const ShadowData* shadow, int additionalOutlineSize, int& shadowLeft, int& shadowRight, int& shadowTop, int& shadowBottom)61 static inline void calculateShadowExtent(const ShadowData* shadow, LayoutUnit additionalOutlineSize, LayoutUnit& shadowLeft, LayoutUnit& shadowRight, LayoutUnit& shadowTop, LayoutUnit& shadowBottom) 62 62 { 63 63 do { 64 int extentAndSpread = shadow->paintingExtent() + shadow->spread() + additionalOutlineSize;65 if (shadow->style() == Normal) {64 LayoutUnit extentAndSpread = shadow->paintingExtent() + shadow->spread() + additionalOutlineSize; 65 if (shadow->style() == ShadowStyle::Normal) { 66 66 shadowLeft = std::min(shadow->x() - extentAndSpread, shadowLeft); 67 67 shadowRight = std::max(shadow->x() + extentAndSpread, shadowRight); … … 76 76 void ShadowData::adjustRectForShadow(LayoutRect& rect, int additionalOutlineSize) const 77 77 { 78 int shadowLeft = 0;79 int shadowRight = 0;80 int shadowTop = 0;81 int shadowBottom = 0;78 LayoutUnit shadowLeft; 79 LayoutUnit shadowRight; 80 LayoutUnit shadowTop; 81 LayoutUnit shadowBottom; 82 82 calculateShadowExtent(this, additionalOutlineSize, shadowLeft, shadowRight, shadowTop, shadowBottom); 83 83 … … 89 89 void ShadowData::adjustRectForShadow(FloatRect& rect, int additionalOutlineSize) const 90 90 { 91 int shadowLeft = 0;92 int shadowRight = 0;93 int shadowTop = 0;94 int shadowBottom = 0;91 LayoutUnit shadowLeft = 0; 92 LayoutUnit shadowRight = 0; 93 LayoutUnit shadowTop = 0; 94 LayoutUnit shadowBottom = 0; 95 95 calculateShadowExtent(this, additionalOutlineSize, shadowLeft, shadowRight, shadowTop, shadowBottom); 96 96 -
TabularUnified trunk/Source/WebCore/rendering/style/ShadowData.h ¶
r251052 r252161 31 31 namespace WebCore { 32 32 33 enum ShadowStyle{ Normal, Inset };33 enum class ShadowStyle : uint8_t { Normal, Inset }; 34 34 35 35 // This class holds information about shadows for the text-shadow and box-shadow properties. … … 38 38 WTF_MAKE_FAST_ALLOCATED; 39 39 public: 40 ShadowData() 41 : m_radius(0) 42 , m_spread(0) 43 , m_style(Normal) 44 , m_isWebkitBoxShadow(false) 45 { 46 } 40 ShadowData() = default; 47 41 48 ShadowData(const IntPoint& location, int radius, int spread, ShadowStyle style, bool isWebkitBoxShadow, const Color& color)42 ShadowData(const LayoutPoint& location, int radius, LayoutUnit spread, ShadowStyle style, bool isWebkitBoxShadow, const Color& color) 49 43 : m_location(location) 44 , m_spread(spread) 50 45 , m_radius(radius) 51 , m_spread(spread)52 46 , m_color(color) 53 47 , m_style(style) … … 67 61 } 68 62 69 int x() const { return m_location.x(); }70 int y() const { return m_location.y(); }71 IntPoint location() const { return m_location; }63 LayoutUnit x() const { return m_location.x(); } 64 LayoutUnit y() const { return m_location.y(); } 65 LayoutPoint location() const { return m_location; } 72 66 int radius() const { return m_radius; } 73 int paintingExtent() const67 LayoutUnit paintingExtent() const 74 68 { 75 69 // Blurring uses a Gaussian function whose std. deviation is m_radius/2, and which in theory … … 77 71 // undetectable at around 1.4x the radius. 78 72 const float radiusExtentMultiplier = 1.4; 79 return ceilf(m_radius * radiusExtentMultiplier);73 return LayoutUnit(ceilf(m_radius * radiusExtentMultiplier)); 80 74 } 81 int spread() const { return m_spread; }75 LayoutUnit spread() const { return m_spread; } 82 76 ShadowStyle style() const { return m_style; } 83 77 const Color& color() const { return m_color; } … … 91 85 92 86 private: 93 IntPoint m_location;94 int m_radius; // This is the "blur radius", or twice the standard deviation of the Gaussian blur.95 int m_ spread;87 LayoutPoint m_location; 88 LayoutUnit m_spread; 89 int m_radius { 0 }; // This is the "blur radius", or twice the standard deviation of the Gaussian blur. 96 90 Color m_color; 97 ShadowStyle m_style ;98 bool m_isWebkitBoxShadow ;91 ShadowStyle m_style { ShadowStyle::Normal }; 92 bool m_isWebkitBoxShadow { false }; 99 93 std::unique_ptr<ShadowData> m_next; 100 94 }; -
TabularUnified trunk/Source/WebCore/style/StyleBuilderCustom.h ¶
r252076 r252161 830 830 auto& shadowValue = downcast<CSSShadowValue>(item.get()); 831 831 auto conversionData = builderState.cssToLengthConversionData(); 832 int x = shadowValue.x->computeLength<int>(conversionData);833 int y = shadowValue.y->computeLength<int>(conversionData);832 auto x = shadowValue.x->computeLength<LayoutUnit>(conversionData); 833 auto y = shadowValue.y->computeLength<LayoutUnit>(conversionData); 834 834 int blur = shadowValue.blur ? shadowValue.blur->computeLength<int>(conversionData) : 0; 835 int spread = shadowValue.spread ? shadowValue.spread->computeLength<int>(conversionData) : 0;836 ShadowStyle shadowStyle = shadowValue.style && shadowValue.style->valueID() == CSSValueInset ? Inset :Normal;835 auto spread = shadowValue.spread ? shadowValue.spread->computeLength<LayoutUnit>(conversionData) : LayoutUnit(0); 836 ShadowStyle shadowStyle = shadowValue.style && shadowValue.style->valueID() == CSSValueInset ? ShadowStyle::Inset : ShadowStyle::Normal; 837 837 Color color; 838 838 if (shadowValue.color) … … 840 840 else 841 841 color = builderState.style().color(); 842 auto shadowData = makeUnique<ShadowData>( IntPoint(x, y), blur, spread, shadowStyle, property == CSSPropertyWebkitBoxShadow, color.isValid() ? color : Color::transparent);842 auto shadowData = makeUnique<ShadowData>(LayoutPoint(x, y), blur, spread, shadowStyle, property == CSSPropertyWebkitBoxShadow, color.isValid() ? color : Color::transparent); 843 843 if (property == CSSPropertyTextShadow) 844 844 builderState.style().setTextShadow(WTFMove(shadowData), !isFirstEntry); // add to the list if this is not the first entry -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/FontManagerTests.mm ¶
r247439 r252161 286 286 [fontPanel toggleShadow]; 287 287 EXPECT_WK_STREQ("baz", [webView selectedText]); 288 EXPECT_WK_STREQ("rgb(0, 0, 0) 0px 1 px 8px", textShadowAroundSelection());288 EXPECT_WK_STREQ("rgb(0, 0, 0) 0px 1.25px 8px", textShadowAroundSelection()); 289 289 { 290 290 NSShadow *shadow = [webView typingAttributes][NSShadowAttributeName]; 291 291 EXPECT_EQ(shadow.shadowOffset.width, 0); 292 EXPECT_EQ(shadow.shadowOffset.height, 1 );292 EXPECT_EQ(shadow.shadowOffset.height, 1.25); 293 293 EXPECT_EQ(shadow.shadowBlurRadius, 8); 294 294 EXPECT_TRUE([shadow.shadowColor isEqual:[NSColor colorWithRed:0 green:0 blue:0 alpha:1]]); … … 307 307 [fontPanel chooseStrikeThroughMenuItemWithTitle:@"single"]; 308 308 EXPECT_WK_STREQ("foo bar baz", [webView selectedText]); 309 EXPECT_WK_STREQ("rgba(0, 0, 0, 0.2) 0px 1 px 5px", textShadowAroundSelection());309 EXPECT_WK_STREQ("rgba(0, 0, 0, 0.2) 0px 1.25px 5px", textShadowAroundSelection()); 310 310 EXPECT_WK_STREQ("underline line-through", textDecorationsAroundSelection()); 311 311 { … … 316 316 NSShadow *shadow = typingAttributes[NSShadowAttributeName]; 317 317 EXPECT_EQ(shadow.shadowOffset.width, 0); 318 EXPECT_EQ(shadow.shadowOffset.height, 1 );318 EXPECT_EQ(shadow.shadowOffset.height, 1.25); 319 319 EXPECT_EQ(shadow.shadowBlurRadius, 5); 320 320 EXPECT_TRUE([shadow.shadowColor isEqual:[NSColor colorWithRed:0 green:0 blue:0 alpha:0.2]]);
Note:
See TracChangeset
for help on using the changeset viewer.