Index: Source/core/svg/SVGElement.cpp |
diff --git a/Source/core/svg/SVGElement.cpp b/Source/core/svg/SVGElement.cpp |
index 891380af47471f48137e6bd9723ef41e939fa6a0..9ca209f3df7e7636a976fc1f4f6da506691fdc9b 100644 |
--- a/Source/core/svg/SVGElement.cpp |
+++ b/Source/core/svg/SVGElement.cpp |
@@ -408,6 +408,7 @@ CSSPropertyID SVGElement::cssPropertyIdForSVGAttributeName(const QualifiedName& |
mapAttributeToCSSProperty(propertyNameToIdMap, mask_typeAttr); |
mapAttributeToCSSProperty(propertyNameToIdMap, opacityAttr); |
mapAttributeToCSSProperty(propertyNameToIdMap, overflowAttr); |
+ mapAttributeToCSSProperty(propertyNameToIdMap, paint_orderAttr); |
mapAttributeToCSSProperty(propertyNameToIdMap, pointer_eventsAttr); |
mapAttributeToCSSProperty(propertyNameToIdMap, shape_renderingAttr); |
mapAttributeToCSSProperty(propertyNameToIdMap, stop_colorAttr); |
@@ -671,6 +672,7 @@ static inline AttributeToPropertyTypeMap& cssPropertyToTypeMap() |
s_cssPropertyMap.set(mask_typeAttr, AnimatedString); |
s_cssPropertyMap.set(opacityAttr, AnimatedNumber); |
s_cssPropertyMap.set(overflowAttr, AnimatedString); |
+ s_cssPropertyMap.set(paint_orderAttr, AnimatedString); |
s_cssPropertyMap.set(pointer_eventsAttr, AnimatedString); |
s_cssPropertyMap.set(shape_renderingAttr, AnimatedString); |
s_cssPropertyMap.set(stop_colorAttr, AnimatedColor); |