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

LibWeb: Add ConicGradientStyleValue

This commit adds a simple style value (which is an abstract image)
to represent conic-gradient()s.

This commit also starts to factor out some reusable parts of the
linear-gradient() style value for other gradient types.
This commit is contained in:
MacDue 2022-10-28 20:44:00 +01:00 committed by Linus Groh
parent 5eeb6bbee3
commit 067759c0e9
3 changed files with 139 additions and 48 deletions

View file

@ -36,6 +36,7 @@ class BorderStyleValue;
class Clip;
class CalculatedStyleValue;
class ColorStyleValue;
class ConicGradientStyleValue;
class ContentStyleValue;
class CSSConditionRule;
class CSSGroupingRule;