Skip to content

Commit

Permalink
LibWeb/CSS: Use serif for font and font-family initial property values
Browse files Browse the repository at this point in the history
These properties previously used sans-serif for their initial values.
  • Loading branch information
tcl3 authored and AtkinsSJ committed Jul 6, 2024
1 parent 58589d6 commit 0a1fc7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Userland/Libraries/LibWeb/CSS/Properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@
},
"font": {
"inherited": true,
"initial": "normal medium sans-serif",
"initial": "normal medium serif",
"longhands": [
"font-family",
"font-size",
Expand All @@ -960,7 +960,7 @@
"font-family": {
"animation-type": "discrete",
"inherited": true,
"initial": "sans-serif",
"initial": "serif",
"valid-types": [
"custom-ident",
"string"
Expand Down

0 comments on commit 0a1fc7e

Please sign in to comment.