Index: third_party/WebKit/Source/platform/graphics/filters/FEBlend.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEBlend.cpp b/third_party/WebKit/Source/platform/graphics/filters/FEBlend.cpp |
index f7ebac74d56510500094f1185ec226d08ab23719..14b8c158037507b794284e06a8ddda81dc222bfd 100644 |
--- a/third_party/WebKit/Source/platform/graphics/filters/FEBlend.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/filters/FEBlend.cpp |
@@ -65,9 +65,10 @@ TextStream& FEBlend::externalRepresentation(TextStream& ts, int indent) const { |
writeIndent(ts, indent); |
ts << "[feBlend"; |
FilterEffect::externalRepresentation(ts); |
- ts << " mode=\"" << (m_mode == WebBlendModeNormal |
- ? "normal" |
- : compositeOperatorName(CompositeSourceOver, m_mode)) |
+ ts << " mode=\"" |
+ << (m_mode == WebBlendModeNormal |
+ ? "normal" |
+ : compositeOperatorName(CompositeSourceOver, m_mode)) |
<< "\"]\n"; |
inputEffect(0)->externalRepresentation(ts, indent + 1); |
inputEffect(1)->externalRepresentation(ts, indent + 1); |