| Index: third_party/WebKit/Source/core/style/FilterOperation.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/FilterOperation.cpp b/third_party/WebKit/Source/core/style/FilterOperation.cpp
|
| index 99dceee6cb45fd9d4a0b7d51ff1b6b707004e028..5490b437d763412b30ee5483def01df223aa3e8e 100644
|
| --- a/third_party/WebKit/Source/core/style/FilterOperation.cpp
|
| +++ b/third_party/WebKit/Source/core/style/FilterOperation.cpp
|
| @@ -37,7 +37,8 @@ static inline FloatSize outsetSizeForBlur(float stdDeviation) {
|
| IntSize kernelSize = FEGaussianBlur::calculateUnscaledKernelSize(
|
| FloatPoint(stdDeviation, stdDeviation));
|
| FloatSize outset;
|
| - // We take the half kernel size and multiply it with three, because we run box blur three times.
|
| + // We take the half kernel size and multiply it with three, because we run box
|
| + // blur three times.
|
| outset.setWidth(3.0f * kernelSize.width() * 0.5f);
|
| outset.setHeight(3.0f * kernelSize.height() * 0.5f);
|
| return outset;
|
|
|