Index: Source/core/svg/SVGFontFaceElement.cpp |
diff --git a/Source/core/svg/SVGFontFaceElement.cpp b/Source/core/svg/SVGFontFaceElement.cpp |
index 034fe6c36c1d723ce720fc9d39849cebc7868af9..4e60cd3e4641c1acc71d0156a66448f71beedc5b 100644 |
--- a/Source/core/svg/SVGFontFaceElement.cpp |
+++ b/Source/core/svg/SVGFontFaceElement.cpp |
@@ -67,9 +67,9 @@ static CSSPropertyID cssPropertyIdForSVGAttributeName(const QualifiedName& attrN |
if (!attrName.namespaceURI().isNull()) |
return CSSPropertyInvalid; |
- static HashMap<AtomicStringImpl*, CSSPropertyID>* propertyNameToIdMap = 0; |
+ static HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap = 0; |
if (!propertyNameToIdMap) { |
- propertyNameToIdMap = new HashMap<AtomicStringImpl*, CSSPropertyID>; |
+ propertyNameToIdMap = new HashMap<StringImpl*, CSSPropertyID>; |
// This is a list of all @font-face CSS properties which are exposed as SVG XML attributes |
// Those commented out are not yet supported by WebCore's style system |
// mapAttributeToCSSProperty(propertyNameToIdMap, accent_heightAttr); |