Do not use "System" as a font

Regression from I62860f9d62538915628ad21e5d904e56bdcc9430
Bug: 48871

Change-Id: I72f5c40739928244cd402c000b48af9911c5b0c7
This commit is contained in:
Santhosh Thottingal
2013-05-28 09:45:50 +05:30
parent e7b010c917
commit 931cb6dc22

View File

@@ -62,6 +62,11 @@
font = repository.defaultFont( language ); font = repository.defaultFont( language );
} }
if ( font === 'system' ) {
// Avoid setting 'system' as a font in css
font = null;
}
return font; return font;
}, },
exclude: ( function () { exclude: ( function () {