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

LibWeb: Move SVG::PathDataParser into its own file and rename it

I've chosen the name `AttributeParser` since it parses data from
attributes. Rather than duplicate the parsing of numbers and other
basic types, let's make use of this existing parsing code for parsing
the data for `<line>`, `<polyline>`, etc.
This commit is contained in:
Sam Atkins 2022-02-11 13:08:27 +00:00 committed by Andreas Kling
parent 784c3183f7
commit 82308fb71a
5 changed files with 455 additions and 426 deletions

View file

@ -265,6 +265,7 @@ set(SOURCES
RequestIdleCallback/IdleDeadline.cpp
ResizeObserver/ResizeObserver.cpp
SVG/AttributeNames.cpp
SVG/AttributeParser.cpp
SVG/SVGElement.cpp
SVG/SVGGElement.cpp
SVG/SVGGeometryElement.cpp