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:
Andreas Kling 2020-03-07 10:32:51 +01:00
parent 7a6c4a72d5
commit 830a57c6b2
158 changed files with 360 additions and 360 deletions

View file

@ -30,10 +30,10 @@
#include <LibGUI/TableView.h>
#include <LibGUI/TreeView.h>
#include <LibGUI/TabWidget.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/Element.h>
#include <LibHTML/DOMTreeModel.h>
#include <LibHTML/StylePropertiesModel.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/DOMTreeModel.h>
#include <LibWeb/StylePropertiesModel.h>
InspectorWidget::InspectorWidget()
{

View file

@ -25,7 +25,7 @@
*/
#include <LibGUI/Widget.h>
#include <LibHTML/Forward.h>
#include <LibWeb/Forward.h>
class InspectorWidget final : public GUI::Widget {
C_OBJECT(InspectorWidget)

View file

@ -4,11 +4,11 @@ OBJS = \
PROGRAM = Browser
LIB_DEPS = GUI HTML Gfx IPC Protocol Core
LIB_DEPS = GUI Web Gfx IPC Protocol Core
main.cpp: ../../Libraries/LibHTML/CSS/PropertyID.h
../../Libraries/LibHTML/CSS/PropertyID.h:
@flock ../../Libraries/LibHTML $(MAKE) -C ../../Libraries/LibHTML
main.cpp: ../../Libraries/LibWeb/CSS/PropertyID.h
../../Libraries/LibWeb/CSS/PropertyID.h:
@flock ../../Libraries/LibWeb $(MAKE) -C ../../Libraries/LibWeb
main.cpp: ../../Servers/ProtocolServer/ProtocolClientEndpoint.h
../../Servers/ProtocolServer/ProtocolClientEndpoint.h:

View file

@ -37,18 +37,18 @@
#include <LibGUI/TextBox.h>
#include <LibGUI/ToolBar.h>
#include <LibGUI/Window.h>
#include <LibHTML/CSS/StyleResolver.h>
#include <LibHTML/DOM/Element.h>
#include <LibHTML/DOMTreeModel.h>
#include <LibHTML/Dump.h>
#include <LibHTML/HtmlView.h>
#include <LibHTML/Layout/LayoutBlock.h>
#include <LibHTML/Layout/LayoutDocument.h>
#include <LibHTML/Layout/LayoutInline.h>
#include <LibHTML/Layout/LayoutNode.h>
#include <LibHTML/Parser/CSSParser.h>
#include <LibHTML/Parser/HTMLParser.h>
#include <LibHTML/ResourceLoader.h>
#include <LibWeb/CSS/StyleResolver.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/DOMTreeModel.h>
#include <LibWeb/Dump.h>
#include <LibWeb/HtmlView.h>
#include <LibWeb/Layout/LayoutBlock.h>
#include <LibWeb/Layout/LayoutDocument.h>
#include <LibWeb/Layout/LayoutInline.h>
#include <LibWeb/Layout/LayoutNode.h>
#include <LibWeb/Parser/CSSParser.h>
#include <LibWeb/Parser/HTMLParser.h>
#include <LibWeb/ResourceLoader.h>
#include <stdio.h>
#include <stdlib.h>

View file

@ -7,6 +7,6 @@ OBJS = \
PROGRAM = Help
LIB_DEPS = GUI HTML Gfx Markdown IPC Protocol Thread Pthread Core
LIB_DEPS = GUI Web Gfx Markdown IPC Protocol Thread Pthread Core
include ../../Makefile.common

View file

@ -40,10 +40,10 @@
#include <LibGUI/ToolBar.h>
#include <LibGUI/TreeView.h>
#include <LibGUI/Window.h>
#include <LibHTML/HtmlView.h>
#include <LibHTML/Layout/LayoutNode.h>
#include <LibHTML/Parser/CSSParser.h>
#include <LibHTML/Parser/HTMLParser.h>
#include <LibWeb/HtmlView.h>
#include <LibWeb/Layout/LayoutNode.h>
#include <LibWeb/Parser/CSSParser.h>
#include <LibWeb/Parser/HTMLParser.h>
#include <LibMarkdown/MDDocument.h>
#include <libgen.h>
#include <stdio.h>

View file

@ -26,13 +26,13 @@
#include "IRCLogBuffer.h"
#include <AK/StringBuilder.h>
#include <LibHTML/DOM/DocumentFragment.h>
#include <LibHTML/DOM/DocumentType.h>
#include <LibHTML/DOM/ElementFactory.h>
#include <LibHTML/DOM/HTMLBodyElement.h>
#include <LibHTML/DOM/Text.h>
#include <LibHTML/Dump.h>
#include <LibHTML/Parser/HTMLParser.h>
#include <LibWeb/DOM/DocumentFragment.h>
#include <LibWeb/DOM/DocumentType.h>
#include <LibWeb/DOM/ElementFactory.h>
#include <LibWeb/DOM/HTMLBodyElement.h>
#include <LibWeb/DOM/Text.h>
#include <LibWeb/Dump.h>
#include <LibWeb/Parser/HTMLParser.h>
#include <stdio.h>
#include <time.h>

View file

@ -30,7 +30,7 @@
#include <AK/RefPtr.h>
#include <AK/String.h>
#include <LibGfx/Color.h>
#include <LibHTML/DOM/Document.h>
#include <LibWeb/DOM/Document.h>
class IRCLogBuffer : public RefCounted<IRCLogBuffer> {
public:

View file

@ -33,7 +33,7 @@
#include <LibGUI/TableView.h>
#include <LibGUI/TextBox.h>
#include <LibGUI/TextEditor.h>
#include <LibHTML/HtmlView.h>
#include <LibWeb/HtmlView.h>
IRCWindow::IRCWindow(IRCClient& client, void* owner, Type type, const String& name)
: m_client(client)

View file

@ -27,7 +27,7 @@
#pragma once
#include <LibGUI/Widget.h>
#include <LibHTML/Forward.h>
#include <LibWeb/Forward.h>
class IRCChannel;
class IRCClient;

View file

@ -11,6 +11,6 @@ OBJS = \
PROGRAM = IRCClient
LIB_DEPS = GUI HTML Gfx Protocol IPC Thread Pthread Core
LIB_DEPS = GUI Web Gfx Protocol IPC Thread Pthread Core
include ../../Makefile.common

View file

@ -20,7 +20,7 @@ h1 {
</head>
<body link="#44f" vlink="#c4c" background="90s-bg.png">
<h1>Welcome to the Serenity Browser!</h1>
<p>This is a very simple browser built on the LibHTML engine.</p>
<p>This is a very simple browser built on the LibWeb engine.</p>
<p>Some small test pages:</p>
<ul>
<li><a href="small.html">small</a></li>

View file

@ -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; }")));

View file

@ -27,7 +27,7 @@
#pragma once
#include <LibGUI/TextEditor.h>
#include <LibHTML/Forward.h>
#include <LibWeb/Forward.h>
class EditorWrapper;

View file

@ -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

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/CSS/Length.h>
#include <LibWeb/CSS/Length.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/CSS/Selector.h>
#include <LibWeb/CSS/Selector.h>
namespace Web {

View file

@ -28,7 +28,7 @@
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibHTML/CSS/Specificity.h>
#include <LibWeb/CSS/Specificity.h>
namespace Web {

View file

@ -24,10 +24,10 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/CSS/SelectorEngine.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/Element.h>
#include <LibHTML/DOM/Text.h>
#include <LibWeb/CSS/SelectorEngine.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/DOM/Text.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/CSS/Selector.h>
#include <LibWeb/CSS/Selector.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/CSS/StyleDeclaration.h>
#include <LibWeb/CSS/StyleDeclaration.h>
namespace Web {

View file

@ -28,7 +28,7 @@
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibHTML/CSS/StyleValue.h>
#include <LibWeb/CSS/StyleValue.h>
namespace Web {

View file

@ -25,8 +25,8 @@
*/
#include <LibCore/DirIterator.h>
#include <LibHTML/CSS/StyleProperties.h>
#include <LibHTML/FontCache.h>
#include <LibWeb/CSS/StyleProperties.h>
#include <LibWeb/FontCache.h>
#include <ctype.h>
namespace Web {

View file

@ -30,7 +30,7 @@
#include <AK/NonnullRefPtr.h>
#include <LibGfx/Font.h>
#include <LibGfx/Forward.h>
#include <LibHTML/CSS/StyleValue.h>
#include <LibWeb/CSS/StyleValue.h>
namespace Web {

View file

@ -24,13 +24,13 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/CSS/SelectorEngine.h>
#include <LibHTML/CSS/StyleResolver.h>
#include <LibHTML/CSS/StyleSheet.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/Element.h>
#include <LibHTML/Dump.h>
#include <LibHTML/Parser/CSSParser.h>
#include <LibWeb/CSS/SelectorEngine.h>
#include <LibWeb/CSS/StyleResolver.h>
#include <LibWeb/CSS/StyleSheet.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/Dump.h>
#include <LibWeb/Parser/CSSParser.h>
#include <ctype.h>
#include <stdio.h>

View file

@ -28,7 +28,7 @@
#include <AK/NonnullRefPtrVector.h>
#include <AK/OwnPtr.h>
#include <LibHTML/CSS/StyleProperties.h>
#include <LibWeb/CSS/StyleProperties.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/CSS/StyleRule.h>
#include <LibWeb/CSS/StyleRule.h>
namespace Web {

View file

@ -27,8 +27,8 @@
#pragma once
#include <AK/NonnullRefPtrVector.h>
#include <LibHTML/CSS/Selector.h>
#include <LibHTML/CSS/StyleDeclaration.h>
#include <LibWeb/CSS/Selector.h>
#include <LibWeb/CSS/StyleDeclaration.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/CSS/StyleSheet.h>
#include <LibWeb/CSS/StyleSheet.h>
namespace Web {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/NonnullRefPtrVector.h>
#include <LibHTML/CSS/StyleRule.h>
#include <LibWeb/CSS/StyleRule.h>
namespace Web {

View file

@ -27,10 +27,10 @@
#include <AK/ByteBuffer.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/PNGLoader.h>
#include <LibHTML/CSS/StyleValue.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/Frame.h>
#include <LibHTML/ResourceLoader.h>
#include <LibWeb/CSS/StyleValue.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/Frame.h>
#include <LibWeb/ResourceLoader.h>
namespace Web {

View file

@ -34,8 +34,8 @@
#include <AK/WeakPtr.h>
#include <LibGfx/Color.h>
#include <LibGfx/Bitmap.h>
#include <LibHTML/CSS/Length.h>
#include <LibHTML/CSS/PropertyID.h>
#include <LibWeb/CSS/Length.h>
#include <LibWeb/CSS/PropertyID.h>
namespace Web {

View file

@ -59,7 +59,7 @@ int main(int argc, char** argv)
ASSERT(json.is_object());
dbg() << "#include <AK/Assertions.h>";
dbg() << "#include <LibHTML/CSS/PropertyID.h>";
dbg() << "#include <LibWeb/CSS/PropertyID.h>";
dbg() << "namespace Web {";
dbg() << "namespace CSS {";

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/CharacterData.h>
#include <LibWeb/DOM/CharacterData.h>
namespace Web {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/String.h>
#include <LibHTML/DOM/Node.h>
#include <LibWeb/DOM/Node.h>
namespace Web {

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/Comment.h>
#include <LibHTML/Layout/LayoutText.h>
#include <LibWeb/DOM/Comment.h>
#include <LibWeb/Layout/LayoutText.h>
namespace Web {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/String.h>
#include <LibHTML/DOM/CharacterData.h>
#include <LibWeb/DOM/CharacterData.h>
namespace Web {

View file

@ -28,19 +28,19 @@
#include <AK/StringBuilder.h>
#include <LibCore/Timer.h>
#include <LibGUI/Application.h>
#include <LibHTML/CSS/StyleResolver.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/DocumentType.h>
#include <LibHTML/DOM/Element.h>
#include <LibHTML/DOM/ElementFactory.h>
#include <LibHTML/DOM/HTMLBodyElement.h>
#include <LibHTML/DOM/HTMLHeadElement.h>
#include <LibHTML/DOM/HTMLHtmlElement.h>
#include <LibHTML/DOM/HTMLTitleElement.h>
#include <LibHTML/Frame.h>
#include <LibHTML/HtmlView.h>
#include <LibHTML/Layout/LayoutDocument.h>
#include <LibHTML/Layout/LayoutTreeBuilder.h>
#include <LibWeb/CSS/StyleResolver.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/DocumentType.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/DOM/ElementFactory.h>
#include <LibWeb/DOM/HTMLBodyElement.h>
#include <LibWeb/DOM/HTMLHeadElement.h>
#include <LibWeb/DOM/HTMLHtmlElement.h>
#include <LibWeb/DOM/HTMLTitleElement.h>
#include <LibWeb/Frame.h>
#include <LibWeb/HtmlView.h>
#include <LibWeb/Layout/LayoutDocument.h>
#include <LibWeb/Layout/LayoutTreeBuilder.h>
#include <stdio.h>
namespace Web {

View file

@ -33,9 +33,9 @@
#include <AK/URL.h>
#include <AK/WeakPtr.h>
#include <LibCore/Forward.h>
#include <LibHTML/CSS/StyleResolver.h>
#include <LibHTML/CSS/StyleSheet.h>
#include <LibHTML/DOM/ParentNode.h>
#include <LibWeb/CSS/StyleResolver.h>
#include <LibWeb/CSS/StyleSheet.h>
#include <LibWeb/DOM/ParentNode.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/ParentNode.h>
#include <LibWeb/DOM/ParentNode.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/DocumentType.h>
#include <LibWeb/DOM/DocumentType.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/Node.h>
#include <LibWeb/DOM/Node.h>
namespace Web {

View file

@ -24,18 +24,18 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/CSS/StyleResolver.h>
#include <LibHTML/CSS/PropertyID.h>
#include <LibHTML/CSS/Length.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/Element.h>
#include <LibHTML/Layout/LayoutBlock.h>
#include <LibHTML/Layout/LayoutInline.h>
#include <LibHTML/Layout/LayoutListItem.h>
#include <LibHTML/Layout/LayoutTable.h>
#include <LibHTML/Layout/LayoutTableCell.h>
#include <LibHTML/Layout/LayoutTableRow.h>
#include <LibHTML/Layout/LayoutTreeBuilder.h>
#include <LibWeb/CSS/StyleResolver.h>
#include <LibWeb/CSS/PropertyID.h>
#include <LibWeb/CSS/Length.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/Layout/LayoutBlock.h>
#include <LibWeb/Layout/LayoutInline.h>
#include <LibWeb/Layout/LayoutListItem.h>
#include <LibWeb/Layout/LayoutTable.h>
#include <LibWeb/Layout/LayoutTableCell.h>
#include <LibWeb/Layout/LayoutTableRow.h>
#include <LibWeb/Layout/LayoutTreeBuilder.h>
namespace Web {

View file

@ -27,8 +27,8 @@
#pragma once
#include <AK/String.h>
#include <LibHTML/DOM/ParentNode.h>
#include <LibHTML/Layout/LayoutNode.h>
#include <LibWeb/DOM/ParentNode.h>
#include <LibWeb/Layout/LayoutNode.h>
namespace Web {

View file

@ -24,22 +24,22 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/ElementFactory.h>
#include <LibHTML/DOM/HTMLAnchorElement.h>
#include <LibHTML/DOM/HTMLBRElement.h>
#include <LibHTML/DOM/HTMLBlinkElement.h>
#include <LibHTML/DOM/HTMLBodyElement.h>
#include <LibHTML/DOM/HTMLFontElement.h>
#include <LibHTML/DOM/HTMLFormElement.h>
#include <LibHTML/DOM/HTMLHRElement.h>
#include <LibHTML/DOM/HTMLHeadElement.h>
#include <LibHTML/DOM/HTMLHeadingElement.h>
#include <LibHTML/DOM/HTMLHtmlElement.h>
#include <LibHTML/DOM/HTMLImageElement.h>
#include <LibHTML/DOM/HTMLInputElement.h>
#include <LibHTML/DOM/HTMLLinkElement.h>
#include <LibHTML/DOM/HTMLStyleElement.h>
#include <LibHTML/DOM/HTMLTitleElement.h>
#include <LibWeb/DOM/ElementFactory.h>
#include <LibWeb/DOM/HTMLAnchorElement.h>
#include <LibWeb/DOM/HTMLBRElement.h>
#include <LibWeb/DOM/HTMLBlinkElement.h>
#include <LibWeb/DOM/HTMLBodyElement.h>
#include <LibWeb/DOM/HTMLFontElement.h>
#include <LibWeb/DOM/HTMLFormElement.h>
#include <LibWeb/DOM/HTMLHRElement.h>
#include <LibWeb/DOM/HTMLHeadElement.h>
#include <LibWeb/DOM/HTMLHeadingElement.h>
#include <LibWeb/DOM/HTMLHtmlElement.h>
#include <LibWeb/DOM/HTMLImageElement.h>
#include <LibWeb/DOM/HTMLInputElement.h>
#include <LibWeb/DOM/HTMLLinkElement.h>
#include <LibWeb/DOM/HTMLStyleElement.h>
#include <LibWeb/DOM/HTMLTitleElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/Element.h>
#include <LibWeb/DOM/Element.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/HTMLAnchorElement.h>
#include <LibWeb/DOM/HTMLAnchorElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/HTMLBRElement.h>
#include <LibHTML/Layout/LayoutBreak.h>
#include <LibWeb/DOM/HTMLBRElement.h>
#include <LibWeb/Layout/LayoutBreak.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -25,10 +25,10 @@
*/
#include <LibCore/Timer.h>
#include <LibHTML/CSS/StyleProperties.h>
#include <LibHTML/CSS/StyleValue.h>
#include <LibHTML/DOM/HTMLBlinkElement.h>
#include <LibHTML/Layout/LayoutNode.h>
#include <LibWeb/CSS/StyleProperties.h>
#include <LibWeb/CSS/StyleValue.h>
#include <LibWeb/DOM/HTMLBlinkElement.h>
#include <LibWeb/Layout/LayoutNode.h>
namespace Web {

View file

@ -27,7 +27,7 @@
#pragma once
#include <LibCore/Forward.h>
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -24,10 +24,10 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/CSS/StyleProperties.h>
#include <LibHTML/CSS/StyleValue.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/HTMLBodyElement.h>
#include <LibWeb/CSS/StyleProperties.h>
#include <LibWeb/CSS/StyleValue.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/HTMLBodyElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/Element.h>
#include <LibWeb/DOM/Element.h>
namespace Web {

View file

@ -24,9 +24,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/CSS/StyleProperties.h>
#include <LibHTML/CSS/StyleValue.h>
#include <LibHTML/DOM/HTMLFontElement.h>
#include <LibWeb/CSS/StyleProperties.h>
#include <LibWeb/CSS/StyleValue.h>
#include <LibWeb/DOM/HTMLFontElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -25,10 +25,10 @@
*/
#include <AK/StringBuilder.h>
#include <LibHTML/DOM/HTMLFormElement.h>
#include <LibHTML/DOM/HTMLInputElement.h>
#include <LibHTML/Frame.h>
#include <LibHTML/HtmlView.h>
#include <LibWeb/DOM/HTMLFormElement.h>
#include <LibWeb/DOM/HTMLInputElement.h>
#include <LibWeb/Frame.h>
#include <LibWeb/HtmlView.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/HTMLHRElement.h>
#include <LibWeb/DOM/HTMLHRElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/HTMLHeadElement.h>
#include <LibWeb/DOM/HTMLHeadElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/HTMLHeadingElement.h>
#include <LibWeb/DOM/HTMLHeadingElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/HTMLHtmlElement.h>
#include <LibWeb/DOM/HTMLHtmlElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -26,11 +26,11 @@
#include <LibGfx/Bitmap.h>
#include <LibGfx/ImageDecoder.h>
#include <LibHTML/CSS/StyleResolver.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/HTMLImageElement.h>
#include <LibHTML/Layout/LayoutImage.h>
#include <LibHTML/ResourceLoader.h>
#include <LibWeb/CSS/StyleResolver.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/HTMLImageElement.h>
#include <LibWeb/Layout/LayoutImage.h>
#include <LibWeb/ResourceLoader.h>
namespace Web {

View file

@ -28,7 +28,7 @@
#include <AK/ByteBuffer.h>
#include <LibGfx/Forward.h>
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -27,12 +27,12 @@
#include <LibCore/ElapsedTimer.h>
#include <LibGUI/Button.h>
#include <LibGUI/TextBox.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/HTMLFormElement.h>
#include <LibHTML/DOM/HTMLInputElement.h>
#include <LibHTML/Frame.h>
#include <LibHTML/HtmlView.h>
#include <LibHTML/Layout/LayoutWidget.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/HTMLFormElement.h>
#include <LibWeb/DOM/HTMLInputElement.h>
#include <LibWeb/Frame.h>
#include <LibWeb/HtmlView.h>
#include <LibWeb/Layout/LayoutWidget.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -27,10 +27,10 @@
#include <AK/ByteBuffer.h>
#include <AK/URL.h>
#include <LibCore/File.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/HTMLLinkElement.h>
#include <LibHTML/Parser/CSSParser.h>
#include <LibHTML/ResourceLoader.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/HTMLLinkElement.h>
#include <LibWeb/Parser/CSSParser.h>
#include <LibWeb/ResourceLoader.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

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

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/HTMLTitleElement.h>
#include <LibWeb/DOM/HTMLTitleElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
#include <LibWeb/DOM/HTMLElement.h>
namespace Web {

View file

@ -25,15 +25,15 @@
*/
#include <AK/StringBuilder.h>
#include <LibHTML/CSS/StyleResolver.h>
#include <LibHTML/DOM/Element.h>
#include <LibHTML/DOM/HTMLAnchorElement.h>
#include <LibHTML/DOM/Node.h>
#include <LibHTML/Layout/LayoutBlock.h>
#include <LibHTML/Layout/LayoutDocument.h>
#include <LibHTML/Layout/LayoutInline.h>
#include <LibHTML/Layout/LayoutNode.h>
#include <LibHTML/Layout/LayoutText.h>
#include <LibWeb/CSS/StyleResolver.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/DOM/HTMLAnchorElement.h>
#include <LibWeb/DOM/Node.h>
#include <LibWeb/Layout/LayoutBlock.h>
#include <LibWeb/Layout/LayoutDocument.h>
#include <LibWeb/Layout/LayoutInline.h>
#include <LibWeb/Layout/LayoutNode.h>
#include <LibWeb/Layout/LayoutText.h>
namespace Web {

View file

@ -30,7 +30,7 @@
#include <AK/RefPtr.h>
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibHTML/TreeNode.h>
#include <LibWeb/TreeNode.h>
namespace Web {

View file

@ -24,5 +24,5 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/ParentNode.h>
#include <LibWeb/DOM/ParentNode.h>

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibHTML/DOM/Node.h>
#include <LibWeb/DOM/Node.h>
namespace Web {

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibHTML/DOM/Text.h>
#include <LibHTML/Layout/LayoutText.h>
#include <LibWeb/DOM/Text.h>
#include <LibWeb/Layout/LayoutText.h>
namespace Web {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/String.h>
#include <LibHTML/DOM/CharacterData.h>
#include <LibWeb/DOM/CharacterData.h>
namespace Web {

View file

@ -26,9 +26,9 @@
#include "DOMTreeModel.h"
#include <AK/StringBuilder.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/Element.h>
#include <LibHTML/DOM/Text.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/DOM/Text.h>
#include <ctype.h>
#include <stdio.h>

View file

@ -25,17 +25,17 @@
*/
#include <AK/Utf8View.h>
#include <LibHTML/CSS/PropertyID.h>
#include <LibHTML/CSS/StyleSheet.h>
#include <LibHTML/DOM/Comment.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/DocumentType.h>
#include <LibHTML/DOM/Element.h>
#include <LibHTML/DOM/Text.h>
#include <LibHTML/Dump.h>
#include <LibHTML/Layout/LayoutBlock.h>
#include <LibHTML/Layout/LayoutNode.h>
#include <LibHTML/Layout/LayoutText.h>
#include <LibWeb/CSS/PropertyID.h>
#include <LibWeb/CSS/StyleSheet.h>
#include <LibWeb/DOM/Comment.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/DocumentType.h>
#include <LibWeb/DOM/Element.h>
#include <LibWeb/DOM/Text.h>
#include <LibWeb/Dump.h>
#include <LibWeb/Layout/LayoutBlock.h>
#include <LibWeb/Layout/LayoutNode.h>
#include <LibWeb/Layout/LayoutText.h>
#include <stdio.h>
namespace Web {

View file

@ -25,7 +25,7 @@
*/
#include <LibGfx/Font.h>
#include <LibHTML/FontCache.h>
#include <LibWeb/FontCache.h>
FontCache& FontCache::the()
{

Some files were not shown because too many files have changed in this diff Show more