| Index: third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp b/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| index 0becc3acaa20b7d4e956f9a67b10fcc573e61cfa..9605f74299d79083b3b7c8e1615158e89fb4ff8c 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| @@ -146,8 +146,8 @@ static sk_sp<SkColorFilter> createColorFilter(ColorMatrixType type,
|
| }
|
|
|
| bool FEColorMatrix::affectsTransparentPixels() const {
|
| - // Because the input pixels are premultiplied, the only way clear pixels can be
|
| - // painted is if the additive component for the alpha is not 0.
|
| + // Because the input pixels are premultiplied, the only way clear pixels can
|
| + // be painted is if the additive component for the alpha is not 0.
|
| return m_type == FECOLORMATRIX_TYPE_MATRIX &&
|
| m_values.size() >= kColorMatrixSize && m_values[19] > 0;
|
| }
|
|
|