diff options
author | Andreas Kling <kling@serenityos.org> | 2022-12-12 12:20:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-19 18:26:45 +0200 |
commit | d8ccc2d54ef46600260f395edeb85c9a08cc0485 (patch) | |
tree | f8df7b261e83ee522795815d0176072b63333a07 /Userland/Libraries/LibWeb/HTML/HTMLElement.cpp | |
parent | 0f9f6aef81d14d12763501da4a65330170271d52 (diff) | |
download | serenity-d8ccc2d54ef46600260f395edeb85c9a08cc0485.zip |
LibWeb: Rename BrowsingContextContainer => NavigableContainer
The "browsing context container" concept in the HTML spec has been
replaced with "navigable container". Renaming this is the first step of
many towards implementing the new world.
Co-authored-by: Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLElement.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLElement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLElement.cpp index 3e9d81324a..63f9d62515 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLElement.cpp +++ b/Userland/Libraries/LibWeb/HTML/HTMLElement.cpp @@ -12,7 +12,6 @@ #include <LibWeb/DOM/IDLEventListener.h> #include <LibWeb/DOM/ShadowRoot.h> #include <LibWeb/HTML/BrowsingContext.h> -#include <LibWeb/HTML/BrowsingContextContainer.h> #include <LibWeb/HTML/DOMStringMap.h> #include <LibWeb/HTML/EventHandler.h> #include <LibWeb/HTML/Focus.h> @@ -20,6 +19,7 @@ #include <LibWeb/HTML/HTMLAreaElement.h> #include <LibWeb/HTML/HTMLBodyElement.h> #include <LibWeb/HTML/HTMLElement.h> +#include <LibWeb/HTML/NavigableContainer.h> #include <LibWeb/HTML/VisibilityState.h> #include <LibWeb/HTML/Window.h> #include <LibWeb/Layout/Box.h> |