diff options
author | Andreas Kling <kling@serenityos.org> | 2021-09-15 00:26:16 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-15 11:56:26 +0200 |
commit | 8949b0def6e509223eaba495612742d1a7e0147d (patch) | |
tree | 1a2b775906005f40a20fabbf754bb0b57abc6a32 /Userland/Libraries/LibWeb/CMakeLists.txt | |
parent | 53d24fbd655ddb600dbff5ccf492b1757cd55d2b (diff) | |
download | serenity-8949b0def6e509223eaba495612742d1a7e0147d.zip |
LibWeb: Add an SVG::AttributeNames namespace
There are a whole bunch of SVG attributes, and we shouldn't mix them in
with the HTML attributes. This patch adds some of them to the new
namespace, but there are more to be added. :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/CMakeLists.txt')
-rw-r--r-- | Userland/Libraries/LibWeb/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CMakeLists.txt b/Userland/Libraries/LibWeb/CMakeLists.txt index be00a699de..e38790964d 100644 --- a/Userland/Libraries/LibWeb/CMakeLists.txt +++ b/Userland/Libraries/LibWeb/CMakeLists.txt @@ -221,6 +221,7 @@ set(SOURCES Page/Page.cpp Painting/BorderPainting.cpp Painting/StackingContext.cpp + SVG/AttributeNames.cpp SVG/SVGElement.cpp SVG/SVGGeometryElement.cpp SVG/SVGGraphicsElement.cpp |