Index: Source/core/css/StylePropertySerializer.cpp |
diff --git a/Source/core/css/StylePropertySerializer.cpp b/Source/core/css/StylePropertySerializer.cpp |
index f6786b144bd3a299a665079b1e6b6ba0343db81b..2ab90365b1bce048eb6b203c6c012df984e52677 100644 |
--- a/Source/core/css/StylePropertySerializer.cpp |
+++ b/Source/core/css/StylePropertySerializer.cpp |
@@ -122,7 +122,7 @@ bool StylePropertySerializer::StylePropertySetForSerializer::shouldProcessProper |
// Since "all" is expanded, we don't need to process "all". |
// We should not process expanded shorthands (e.g. font, background, |
// and so on) either. |
- if (isExpandedShorthandForAll(propertyID) || propertyID == CSSPropertyAll) |
+ if (isExpandedShorthand(propertyID) || propertyID == CSSPropertyAll) |
return false; |
// We should not serialize internal properties. |
if (isInternalProperty(propertyID)) |
@@ -221,7 +221,7 @@ String StylePropertySerializer::asText() const |
CSSPropertyID shorthandPropertyID = CSSPropertyInvalid; |
CSSPropertyID borderFallbackShorthandProperty = CSSPropertyInvalid; |
String value; |
- ASSERT(!isExpandedShorthandForAll(propertyID)); |
+ ASSERT(!isExpandedShorthand(propertyID)); |
switch (propertyID) { |
case CSSPropertyBackgroundAttachment: |