LibWeb: Move the CSS parser into CSS/Parser/

This commit is contained in:
Andreas Kling 2020-07-28 19:20:11 +02:00
parent cc4109c03b
commit 7daeddb9e9
Notes: sideshowbarker 2024-07-19 04:29:49 +09:00
11 changed files with 17 additions and 17 deletions

View file

@ -25,10 +25,10 @@
*/
#include <AK/StringBuilder.h>
#include <LibWeb/CSS/Parser/CSSParser.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/HTML/HTMLStyleElement.h>
#include <LibWeb/DOM/Text.h>
#include <LibWeb/Parser/CSSParser.h>
#include <LibWeb/HTML/HTMLStyleElement.h>
namespace Web::HTML {