Comment tweaks

This commit is contained in:
Aparajita Fishman
2011-03-11 09:46:42 -05:00
parent 3a79e82ce8
commit d6117b832f
+1 -2
View File
@@ -353,10 +353,9 @@ var CPFontNameKey = @"CPFontNameKey",
@end
// aName must normalized
// aName must be normalized
var _CPFontCreateCSSString = function(aName, aSize, isBold, isItalic)
{
// aName might be a string or an array of preprocessed names
var properties = (isItalic ? "italic " : "") + (isBold ? "bold " : "") + aSize + "px ";
return properties + _CPFontConcatNameWithFallback(aName);