Index: Source/core/svg/SVGFontFaceUriElement.cpp |
diff --git a/Source/core/svg/SVGFontFaceUriElement.cpp b/Source/core/svg/SVGFontFaceUriElement.cpp |
index eac4fd8d3459644626e2840326580cf0a326306b..6d91b99bd6c5a8767f4297f03cfbd842835766a6 100644 |
--- a/Source/core/svg/SVGFontFaceUriElement.cpp |
+++ b/Source/core/svg/SVGFontFaceUriElement.cpp |
@@ -51,7 +51,7 @@ PassRefPtrWillBeRawPtr<CSSFontFaceSrcValue> SVGFontFaceUriElement::srcValue() co |
{ |
RefPtrWillBeRawPtr<CSSFontFaceSrcValue> src = CSSFontFaceSrcValue::create(getAttribute(XLinkNames::hrefAttr)); |
AtomicString value(fastGetAttribute(formatAttr)); |
- src->setFormat(value.isEmpty() ? "svg" : value); // Default format |
+ src->setFormat(value.isEmpty() ? AtomicString("svg", AtomicString::ConstructFromLiteral) : value); // Default format |
return src.release(); |
} |