Chromium Code Reviews| Index: Source/core/css/resolver/FilterOperationResolver.cpp |
| diff --git a/Source/core/css/resolver/FilterOperationResolver.cpp b/Source/core/css/resolver/FilterOperationResolver.cpp |
| index e4ed0327b4f5a6437605524d74cbe521a628d107..a1052037cdbbeb9aba5b91cb358e41b4883d854e 100644 |
| --- a/Source/core/css/resolver/FilterOperationResolver.cpp |
| +++ b/Source/core/css/resolver/FilterOperationResolver.cpp |
| @@ -183,7 +183,7 @@ bool FilterOperationResolver::createFilterOperations(CSSValue* inValue, const CS |
| CSSShadowValue* item = toCSSShadowValue(cssValue); |
| IntPoint location(item->x->computeLength<int>(conversionData), item->y->computeLength<int>(conversionData)); |
| int blur = item->blur ? item->blur->computeLength<int>(conversionData) : 0; |
| - Color shadowColor = Color::transparent; |
| + Color shadowColor = Color::black; |
|
Stephen White
2015/06/25 18:30:27
Thanks for this catch, BTW!
|
| if (item->color) |
| shadowColor = state.document().textLinkColors().colorFromPrimitiveValue(item->color.get(), state.style()->color()); |