Ignore:
Timestamp:
Sep 21, 2021, 10:25:23 AM (4 years ago)
Author:
Eric Hutchison
Message:

Unreviewed, reverting r282768.

Slowdown on Mac EWS builders as a constant failure.

Reverted changeset:

"box-shadow and text-shadow do not yield float values while
interpolating"
https://bugs.webkit.org/show_bug.cgi?id=230347
https://commits.webkit.org/r282768

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp

    r282806 r282826  
    800800                filterValue = CSSFunctionValue::create(CSSValueDropShadow);
    801801                // We want our computed style to look like that of a text shadow (has neither spread nor inset style).
    802                 ShadowData shadowData = ShadowData({ Length(dropShadowOperation.location().x(), LengthType::Fixed), Length(dropShadowOperation.location().y(), LengthType::Fixed) }, Length(dropShadowOperation.stdDeviation(), LengthType::Fixed), Length(0, LengthType::Fixed), ShadowStyle::Normal, false, dropShadowOperation.color());
     802                ShadowData shadowData = ShadowData(dropShadowOperation.location(), dropShadowOperation.stdDeviation(), 0, ShadowStyle::Normal, false, dropShadowOperation.color());
    803803                filterValue->append(valueForShadow(&shadowData, CSSPropertyTextShadow, style, adjust));
    804804                break;
Note: See TracChangeset for help on using the changeset viewer.