Index: Source/platform/graphics/filters/FEBlend.cpp |
diff --git a/Source/platform/graphics/filters/FEBlend.cpp b/Source/platform/graphics/filters/FEBlend.cpp |
index 421ab9ae2662fec59d787918bb5e6db0bd47fccb..52fbaec7700db3ff1ab29fa7f8f753492c40d988 100644 |
--- a/Source/platform/graphics/filters/FEBlend.cpp |
+++ b/Source/platform/graphics/filters/FEBlend.cpp |
@@ -214,22 +214,22 @@ static TextStream& operator<<(TextStream& ts, const BlendModeType& type) |
{ |
switch (type) { |
case FEBLEND_MODE_UNKNOWN: |
- ts << "UNKNOWN"; |
+ ts << "unknown"; |
break; |
case FEBLEND_MODE_NORMAL: |
- ts << "NORMAL"; |
+ ts << "normal"; |
break; |
case FEBLEND_MODE_MULTIPLY: |
- ts << "MULTIPLY"; |
+ ts << "multiply"; |
break; |
case FEBLEND_MODE_SCREEN: |
- ts << "SCREEN"; |
+ ts << "screen"; |
break; |
case FEBLEND_MODE_DARKEN: |
- ts << "DARKEN"; |
+ ts << "darken"; |
break; |
case FEBLEND_MODE_LIGHTEN: |
- ts << "LIGHTEN"; |
+ ts << "lighten"; |
break; |
} |
return ts; |