Index: third_party/WebKit/Source/core/css/StylePropertySerializer.cpp |
diff --git a/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp b/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp |
index 07de29b9f13960853d8100170dfd70491ff46219..ad76d02311045725855e9c21f6488818edf5937a 100644 |
--- a/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp |
+++ b/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp |
@@ -725,8 +725,9 @@ String StylePropertySerializer::getLayeredShorthandValue( |
// There might not be an item for this layer for this property. |
if (layer < propertyValues->length()) |
value = &propertyValues->item(layer); |
- } else if (layer == 0 || (layer != numLayers - 1 && |
- property == CSSPropertyBackgroundColor)) { |
+ } else if (layer == 0 || |
+ (layer != numLayers - 1 && |
+ property == CSSPropertyBackgroundColor)) { |
// Singletons except background color belong in the 0th layer. |
// Background color belongs in the last layer. |
value = values[propertyIndex]; |