summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.cpp
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2022-09-30 17:16:16 -0600
committerLinus Groh <mail@linusgroh.de>2022-10-01 21:05:32 +0100
commit56b381aac0db837b1b840c482edd9a8d67c2600e (patch)
tree835135e0badd6334e452648a97d60b60024c30da /Userland/Libraries/LibWeb/HTML/HTMLSelectElement.cpp
parentcc164dc1e2441192020ca04f782763ce33893558 (diff)
downloadserenity-56b381aac0db837b1b840c482edd9a8d67c2600e.zip
LibWeb: Cleanup unecessary uses and includes of HTML::Window
The big global refactor left some stragglers behind for atomicity. Clean up the rest, and remove a ton of includes of LibWeb/HTML/Window.h
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLSelectElement.cpp')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLSelectElement.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.cpp
index c1994c6ad3..3bec245aac 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.cpp
+++ b/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.cpp
@@ -5,11 +5,11 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
+#include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/HTML/HTMLFormElement.h>
#include <LibWeb/HTML/HTMLOptGroupElement.h>
#include <LibWeb/HTML/HTMLOptionElement.h>
#include <LibWeb/HTML/HTMLSelectElement.h>
-#include <LibWeb/HTML/Window.h>
namespace Web::HTML {