LibWeb: Support individual scale CSS property

This commit is contained in:
Andreas Kling 2024-11-22 18:07:16 +01:00 committed by Andreas Kling
commit 9a7c9286c4
Notes: github-actions[bot] 2024-11-22 19:07:43 +00:00
21 changed files with 234 additions and 55 deletions

View file

@ -137,6 +137,8 @@ public:
return true;
if (computed_values().translate().has_value())
return true;
if (computed_values().scale().has_value())
return true;
return false;
}