| Index: Source/core/svg/SVGFontFaceElement.cpp
|
| diff --git a/Source/core/svg/SVGFontFaceElement.cpp b/Source/core/svg/SVGFontFaceElement.cpp
|
| index 00a07308cb7579a0356f3d2c2e6917340f3d72c3..4c962b1cf381cbe749a7e2b566c5fb68ecb907ee 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);
|
|
|