summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-07 10:32:51 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-07 10:32:51 +0100
commit830a57c6b23430c749395811761252d1999f3559 (patch)
tree0bccfa6bc0ec8a39af0dab20633257df3384a4b3 /Userland
parent7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea (diff)
downloadserenity-830a57c6b23430c749395811761252d1999f3559.zip
LibWeb: Rename directory LibHTML => LibWeb
Let's rename this to LibWeb since it aims to provide more parts of the web platform than just HTML. :^)
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Makefile2
-rw-r--r--Userland/html.cpp18
2 files changed, 10 insertions, 10 deletions
diff --git a/Userland/Makefile b/Userland/Makefile
index 717c41425b..8b60b9693a 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -4,7 +4,7 @@ APPS = ${SRCS:.cpp=}
EXTRA_CLEAN = $(APPS)
-LIB_DEPS = HTML GUI Gfx Audio Protocol IPC Thread Pthread Core PCIDB Markdown
+LIB_DEPS = Web GUI Gfx Audio Protocol IPC Thread Pthread Core PCIDB Markdown
include ../Makefile.common
diff --git a/Userland/html.cpp b/Userland/html.cpp
index 71f1c7fc99..9af204fbaa 100644
--- a/Userland/html.cpp
+++ b/Userland/html.cpp
@@ -32,15 +32,15 @@
#include <LibGUI/Menu.h>
#include <LibGUI/MenuBar.h>
#include <LibGUI/Window.h>
-#include <LibHTML/CSS/StyleResolver.h>
-#include <LibHTML/DOM/Element.h>
-#include <LibHTML/Dump.h>
-#include <LibHTML/HtmlView.h>
-#include <LibHTML/Layout/LayoutBlock.h>
-#include <LibHTML/Layout/LayoutInline.h>
-#include <LibHTML/Layout/LayoutNode.h>
-#include <LibHTML/Parser/CSSParser.h>
-#include <LibHTML/Parser/HTMLParser.h>
+#include <LibWeb/CSS/StyleResolver.h>
+#include <LibWeb/DOM/Element.h>
+#include <LibWeb/Dump.h>
+#include <LibWeb/HtmlView.h>
+#include <LibWeb/Layout/LayoutBlock.h>
+#include <LibWeb/Layout/LayoutInline.h>
+#include <LibWeb/Layout/LayoutNode.h>
+#include <LibWeb/Parser/CSSParser.h>
+#include <LibWeb/Parser/HTMLParser.h>
#include <stdio.h>
int main(int argc, char** argv)