| Index: Source/core/css/FontFace.cpp
|
| diff --git a/Source/core/css/FontFace.cpp b/Source/core/css/FontFace.cpp
|
| index 3760985540155e93f8177cc8b95426d6acf9fcb2..e4265aa631eefdfb96b464849303283196492f3e 100644
|
| --- a/Source/core/css/FontFace.cpp
|
| +++ b/Source/core/css/FontFace.cpp
|
| @@ -278,7 +278,7 @@ bool FontFace::setFamilyValue(CSSValueList* familyList)
|
|
|
| CSSPrimitiveValue* familyValue = toCSSPrimitiveValue(familyList->item(0));
|
| AtomicString family;
|
| - if (familyValue->isString()) {
|
| + if (familyValue->isCustomIdent()) {
|
| family = AtomicString(familyValue->getStringValue());
|
| } else if (familyValue->isValueID()) {
|
| // We need to use the raw text for all the generic family types, since @font-face is a way of actually
|
|
|