1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 19:25:10 +00:00

LibWeb: Fix bad #include in CSSParser.cpp

This commit is contained in:
Andreas Kling 2020-07-28 19:28:14 +02:00
parent 7daeddb9e9
commit 481e838054

View file

@ -25,10 +25,10 @@
*/
#include <AK/HashMap.h>
#include <LibWeb/CSS/Parser/CSSParser.h>
#include <LibWeb/CSS/PropertyID.h>
#include <LibWeb/CSS/StyleSheet.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/Parser/CSSParser.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>