LibWeb: Implement the SVG clip-rule attribute

This controls the fill rule used when rasterizing `<clipPath>` elements.
This commit is contained in:
MacDue 2024-05-12 20:19:43 +01:00 committed by Sam Atkins
commit 6c9069fa5d
Notes: sideshowbarker 2024-07-16 22:34:39 +09:00
13 changed files with 74 additions and 8 deletions

View file

@ -137,6 +137,8 @@ enum class FillRule {
Evenodd
};
using ClipRule = FillRule;
enum class TextAnchor {
Start,
Middle,