Index: third_party/WebKit/Source/core/html/canvas/CanvasFontCache.cpp |
diff --git a/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.cpp b/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.cpp |
index bc3cdcf708fede6f07cc80cdb3e09f4a50bcd7ae..664b9dc9f0b3f6b448b6ada1edc8cec10440ae43 100644 |
--- a/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.cpp |
+++ b/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.cpp |
@@ -88,7 +88,7 @@ MutableStylePropertySet* CanvasFontCache::parseFont(const String& fontString) { |
m_fontLRUList.add(fontString); |
} else { |
parsedStyle = MutableStylePropertySet::create(HTMLStandardMode); |
- CSSParser::parseValue(parsedStyle, CSSPropertyFont, fontString, true, 0); |
+ CSSParser::parseValue(parsedStyle, CSSPropertyFont, fontString, true); |
if (parsedStyle->isEmpty()) |
return nullptr; |
// According to |