mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:17:35 +00:00
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. :^)
This commit is contained in:
parent
7a6c4a72d5
commit
830a57c6b2
158 changed files with 360 additions and 360 deletions
|
@ -34,11 +34,11 @@
|
|||
#include <LibGUI/Painter.h>
|
||||
#include <LibGUI/ScrollBar.h>
|
||||
#include <LibGUI/Window.h>
|
||||
#include <LibHTML/DOM/ElementFactory.h>
|
||||
#include <LibHTML/DOM/HTMLHeadElement.h>
|
||||
#include <LibHTML/DOM/Text.h>
|
||||
#include <LibHTML/HtmlView.h>
|
||||
#include <LibHTML/Parser/HTMLParser.h>
|
||||
#include <LibWeb/DOM/ElementFactory.h>
|
||||
#include <LibWeb/DOM/HTMLHeadElement.h>
|
||||
#include <LibWeb/DOM/Text.h>
|
||||
#include <LibWeb/HtmlView.h>
|
||||
#include <LibWeb/Parser/HTMLParser.h>
|
||||
#include <LibMarkdown/MDDocument.h>
|
||||
|
||||
//#define EDITOR_DEBUG
|
||||
|
@ -151,7 +151,7 @@ void Editor::show_documentation_tooltip_if_available(const String& hovered_token
|
|||
return;
|
||||
}
|
||||
|
||||
// FIXME: LibHTML needs a friendlier DOM manipulation API. Something like innerHTML :^)
|
||||
// FIXME: LibWeb needs a friendlier DOM manipulation API. Something like innerHTML :^)
|
||||
auto style_element = create_element(*html_document, "style");
|
||||
style_element->append_child(adopt(*new Web::Text(*html_document, "body { background-color: #dac7b5; }")));
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibGUI/TextEditor.h>
|
||||
#include <LibHTML/Forward.h>
|
||||
#include <LibWeb/Forward.h>
|
||||
|
||||
class EditorWrapper;
|
||||
|
||||
|
|
|
@ -17,6 +17,6 @@ OBJS = \
|
|||
|
||||
PROGRAM = HackStudio
|
||||
|
||||
LIB_DEPS = GUI HTML VT Protocol Markdown Gfx IPC Thread Pthread Core
|
||||
LIB_DEPS = GUI Web VT Protocol Markdown Gfx IPC Thread Pthread Core
|
||||
|
||||
include ../../Makefile.common
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue