mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 20:59:16 +00:00
LibWeb: Parse CSS "font-variant" as part of "font"
This allows us to parse CSS "font" values that contain e.g "small-caps" or "normal", as used on Acid3.
This commit is contained in:
parent
632928a11e
commit
5118a4c1e7
Notes:
sideshowbarker
2024-07-17 16:52:06 +09:00
Author: https://github.com/awesomekling
Commit: 5118a4c1e7
6 changed files with 37 additions and 1 deletions
|
@ -146,6 +146,11 @@ enum class Float {
|
|||
Right,
|
||||
};
|
||||
|
||||
enum class FontVariant {
|
||||
Normal,
|
||||
SmallCaps,
|
||||
};
|
||||
|
||||
enum class ImageRendering {
|
||||
Auto,
|
||||
CrispEdges,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue