Explorar el Código

LibWeb: Set default serif font to Roman

It's the only Serif font we have, so let's use it!
Karol Kosek hace 3 años
padre
commit
d7c27ad11a
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      Userland/Libraries/LibWeb/CSS/StyleComputer.cpp

+ 1 - 0
Userland/Libraries/LibWeb/CSS/StyleComputer.cpp

@@ -860,6 +860,7 @@ void StyleComputer::compute_font(StyleProperties& style, DOM::Element const* ele
             monospace = true;
             return find_font("Csilla");
         case ValueID::Serif:
+            return find_font("Roman");
         case ValueID::SansSerif:
         case ValueID::Cursive:
         case ValueID::Fantasy: