mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 04:08:08 +00:00
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>
This commit is contained in:
@@ -8,19 +8,19 @@
|
||||
|
||||
#include <LibCore/Forward.h>
|
||||
#include <LibGfx/Forward.h>
|
||||
#include <LibWeb/HTML/BrowsingContextContainer.h>
|
||||
#include <LibWeb/HTML/FormAssociatedElement.h>
|
||||
#include <LibWeb/HTML/HTMLElement.h>
|
||||
#include <LibWeb/HTML/NavigableContainer.h>
|
||||
#include <LibWeb/Loader/ImageLoader.h>
|
||||
|
||||
namespace Web::HTML {
|
||||
|
||||
class HTMLObjectElement final
|
||||
: public BrowsingContextContainer
|
||||
: public NavigableContainer
|
||||
, public FormAssociatedElement
|
||||
, public ResourceClient {
|
||||
WEB_PLATFORM_OBJECT(HTMLObjectElement, BrowsingContextContainer)
|
||||
FORM_ASSOCIATED_ELEMENT(BrowsingContextContainer, HTMLObjectElement)
|
||||
WEB_PLATFORM_OBJECT(HTMLObjectElement, NavigableContainer)
|
||||
FORM_ASSOCIATED_ELEMENT(NavigableContainer, HTMLObjectElement)
|
||||
|
||||
enum class Representation {
|
||||
Unknown,
|
||||
|
||||
Reference in New Issue
Block a user