diff options
author | Andreas Kling <kling@serenityos.org> | 2021-03-09 17:22:35 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-09 17:35:57 +0100 |
commit | 16cde3f14ae16f1f6e68a9b97619a9a30454517b (patch) | |
tree | 64b0eb92b434cb4017c64b52d3a8881a982f08c1 /Userland/Applications | |
parent | 078f0a5c673c31d88746a94af8cd4a515adc305b (diff) | |
download | serenity-16cde3f14ae16f1f6e68a9b97619a9a30454517b.zip |
LibWeb: Rename CSSParser => DeprecatedCSSParser
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Browser/Tab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/Tab.cpp b/Userland/Applications/Browser/Tab.cpp index aaf3bd7209..6fc50f099c 100644 --- a/Userland/Applications/Browser/Tab.cpp +++ b/Userland/Applications/Browser/Tab.cpp @@ -47,7 +47,7 @@ #include <LibGUI/ToolBarContainer.h> #include <LibGUI/Window.h> #include <LibJS/Interpreter.h> -#include <LibWeb/CSS/Parser/CSSParser.h> +#include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> #include <LibWeb/DOM/Element.h> #include <LibWeb/DOMTreeModel.h> #include <LibWeb/Dump.h> |