diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-16 14:20:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-16 14:37:19 +0100 |
commit | 19452230cd86659eecc5856767d223f44ddbfed9 (patch) | |
tree | fa03a2669b81542beb94df432a0d1479791b23d5 /Libraries/LibWeb/DOM | |
parent | 6780d70fb1828575979810892256f2a763f05517 (diff) | |
download | serenity-19452230cd86659eecc5856767d223f44ddbfed9.zip |
LibJS: Add "Heap" and "Runtime" subdirectories
Let's try to keep LibJS tidy as it expands. :^)
Diffstat (limited to 'Libraries/LibWeb/DOM')
-rw-r--r-- | Libraries/LibWeb/DOM/Document.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/DOM/Document.cpp b/Libraries/LibWeb/DOM/Document.cpp index 490003e26f..881eead162 100644 --- a/Libraries/LibWeb/DOM/Document.cpp +++ b/Libraries/LibWeb/DOM/Document.cpp @@ -29,8 +29,8 @@ #include <LibCore/Timer.h> #include <LibGUI/Application.h> #include <LibGUI/MessageBox.h> -#include <LibJS/GlobalObject.h> #include <LibJS/Interpreter.h> +#include <LibJS/Runtime/GlobalObject.h> #include <LibWeb/Bindings/DocumentWrapper.h> #include <LibWeb/CSS/StyleResolver.h> #include <LibWeb/DOM/Document.h> |