diff options
author | Andreas Kling <kling@serenityos.org> | 2020-07-26 20:01:35 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-26 20:05:15 +0200 |
commit | 1f008c95b6d80adaaf3cf54cf89019c54b70e17f (patch) | |
tree | bbb1a7dc68d5cd6fa83bf56e98b94607a7fe766f /Libraries/LibWeb/CSS/StyleValue.cpp | |
parent | 3e389f4cdcffbe68aaa0571af532d6668be32a07 (diff) | |
download | serenity-1f008c95b6d80adaaf3cf54cf89019c54b70e17f.zip |
LibWeb: Move CSS classes into the Web::CSS namespace
Diffstat (limited to 'Libraries/LibWeb/CSS/StyleValue.cpp')
-rw-r--r-- | Libraries/LibWeb/CSS/StyleValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/CSS/StyleValue.cpp b/Libraries/LibWeb/CSS/StyleValue.cpp index a4f1a9cc80..9b6baa6583 100644 --- a/Libraries/LibWeb/CSS/StyleValue.cpp +++ b/Libraries/LibWeb/CSS/StyleValue.cpp @@ -34,7 +34,7 @@ #include <LibWeb/Loader/ResourceLoader.h> #include <LibWeb/PageView.h> -namespace Web { +namespace Web::CSS { StyleValue::StyleValue(Type type) : m_type(type) |