| Index: Source/core/css/FontFaceSet.cpp
|
| diff --git a/Source/core/css/FontFaceSet.cpp b/Source/core/css/FontFaceSet.cpp
|
| index 3030e7ae7c2e1ff64cc1997be974a462380dccb6..bfa0f0832926be55a0225122ee0a398a23af0284 100644
|
| --- a/Source/core/css/FontFaceSet.cpp
|
| +++ b/Source/core/css/FontFaceSet.cpp
|
| @@ -504,8 +504,8 @@ bool FontFaceSet::resolveFontStyle(const String& fontString, Font& font)
|
| return false;
|
|
|
| // Interpret fontString in the same way as the 'font' attribute of CanvasRenderingContext2D.
|
| - RefPtrWillBeRawPtr<MutableStylePropertySet> parsedStyle = MutableStylePropertySet::create(HTMLQuirksMode);
|
| - CSSParser::parseValue(parsedStyle.get(), CSSPropertyFont, fontString, true, HTMLStandardMode, 0);
|
| + RefPtrWillBeRawPtr<MutableStylePropertySet> parsedStyle = MutableStylePropertySet::create(HTMLStandardMode);
|
| + CSSParser::parseValue(parsedStyle.get(), CSSPropertyFont, fontString, true, 0);
|
| if (parsedStyle->isEmpty())
|
| return false;
|
|
|
|
|