LibWeb: Add list-style-type: decimal-leading-zero support

This doesn't exactly do what you would think from its name: It surely
adds an extra leading zero to the front of a number, but only if the
number is less than 10. CSS is weird sometimes.
This commit is contained in:
Tobias Christiansen 2021-04-22 22:14:24 +02:00 committed by Andreas Kling
commit 0983cd9243
Notes: sideshowbarker 2024-07-18 18:55:14 +09:00
4 changed files with 11 additions and 0 deletions

View file

@ -159,6 +159,7 @@ enum class ListStyleType {
Circle,
Square,
Decimal,
DecimalLeadingZero,
};
enum class Overflow : u8 {