1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:07:34 +00:00

LibWeb: Add BackgroundSizeStyleValue

There's nothing really background-size-specific about this, but since
there is no `<size>` value type defined in the CSS spec at this time,
and background-size is the only user of it, I think this name makes more
sense. But I'm not 100% convinced.
This commit is contained in:
Sam Atkins 2021-11-05 12:18:23 +00:00 committed by Andreas Kling
parent 891dd46a17
commit ae2a3bf185
3 changed files with 40 additions and 0 deletions

View file

@ -19,6 +19,7 @@ class Crypto;
namespace Web::CSS {
class BackgroundRepeatStyleValue;
class BackgroundSizeStyleValue;
class BackgroundStyleValue;
class BorderRadiusStyleValue;
class BorderStyleValue;