Changeset 156222 in webkit for trunk/Source/WebCore/css/CSSParser.cpp
- Timestamp:
- Sep 20, 2013, 9:13:52 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSParser.cpp
r156037 r156222 1298 1298 if (!parseValue(dummyStyle.get(), CSSPropertyFontFamily, string, false, CSSQuirksMode, 0)) 1299 1299 return 0; 1300 return static_pointer_cast<CSSValueList>(dummyStyle->getPropertyCSSValue(CSSPropertyFontFamily)); 1300 1301 RefPtr<CSSValue> fontFamily = dummyStyle->getPropertyCSSValue(CSSPropertyFontFamily); 1302 if (!fontFamily->isValueList()) 1303 return 0; // FIXME: "initial" and "inherit" should be parsed as font names in the face attribute. 1304 return static_pointer_cast<CSSValueList>(fontFamily.release()); 1301 1305 } 1302 1306
Note:
See TracChangeset
for help on using the changeset viewer.