diff options
author | Karol Kosek <krkk@serenityos.org> | 2022-02-19 21:21:20 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-20 11:50:38 +0100 |
commit | 4e50f8a8b74740981a7a633637cbbb71a3ba542e (patch) | |
tree | 667054e142b2b3b1b19ce9ae77b464b2f6705c04 /Base | |
parent | e56262caedb0a1dc3010bfd8209682aa7fde3356 (diff) | |
download | serenity-4e50f8a8b74740981a7a633637cbbb71a3ba542e.zip |
LibWeb+Base: Parse font-style CSS property
Diffstat (limited to 'Base')
-rw-r--r-- | Base/res/html/misc/fonts.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Base/res/html/misc/fonts.html b/Base/res/html/misc/fonts.html index 02381a9f7f..34c2ab1284 100644 --- a/Base/res/html/misc/fonts.html +++ b/Base/res/html/misc/fonts.html @@ -31,6 +31,7 @@ <p style="font: normal small-caps 120%/120% monospace;">font: normal small-caps 120%/120% monospace;</p> <p style="font: condensed oblique 12pt 'Helvetica Neue', serif;">font: condensed oblique 12pt "Helvetica Neue", serif;</p> <p style="font: condensed oblique 25deg 12pt 'Helvetica Neue', serif;">font: condensed oblique 25deg 12pt "Helvetica Neue", serif;</p> + <p style="font-style: italic">font-style: italic</p> </section> <h2>Calc() values</h2> |