Changeset 282826 in webkit for trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
- Timestamp:
- Sep 21, 2021, 10:25:23 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
r282806 r282826 800 800 filterValue = CSSFunctionValue::create(CSSValueDropShadow); 801 801 // 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()); 803 803 filterValue->append(valueForShadow(&shadowData, CSSPropertyTextShadow, style, adjust)); 804 804 break;
Note:
See TracChangeset
for help on using the changeset viewer.