Update submodules and set default text size to 16

This commit is contained in:
Patrick Walton 2012-11-16 18:49:10 -08:00
parent 43ebaa6006
commit fa7f985d08
3 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 3db75df69b203ea848ee71a7e2dc15b476bf7290
Subproject commit 2e0a6bade87781ee740f60e3285bcbb1b4145b96

@ -1 +1 @@
Subproject commit e7c1d74d90a359395187d10364b7238ecca108eb
Subproject commit ba44bce57740bb9d0410946f82d4f280db9fe893

View file

@ -539,9 +539,9 @@ impl RenderBox : RenderBoxMethods {
let font_size = match my_style.font_size() {
CSSFontSizeLength(Px(l)) |
CSSFontSizeLength(Pt(l)) |
CSSFontSizeLength(Pt(l)) => l,
CSSFontSizeLength(Em(l)) => l,
_ => 12f
_ => 16f
};
debug!("(font style) font size: `%f`", font_size);