| Index: Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| diff --git a/Source/core/css/resolver/AnimatedStyleBuilder.cpp b/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| index 0e4711ffd47dee618369fc76e17f16d48c3c23d5..854c647004dbdee778f56059f05fb070bbb8dbe7 100644
|
| --- a/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| +++ b/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| @@ -180,6 +180,9 @@ void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverSt
|
| style->accessSVGStyle()->setFillPaint(svgPaint->paintType(), svgPaint->color(), svgPaint->uri());
|
| }
|
| return;
|
| + case CSSPropertyFloodOpacity:
|
| + style->setFloodOpacity(clampTo<float>(toAnimatableDouble(value)->toDouble(), 0, 1));
|
| + return;
|
| case CSSPropertyHeight:
|
| style->setHeight(animatableValueToLength(value, state));
|
| return;
|
|
|