
This is a monster patch that turns all EventTargets into GC-allocated PlatformObjects. Their C++ wrapper classes are removed, and the LibJS garbage collector is now responsible for their lifetimes. There's a fair amount of hacks and band-aids in this patch, and we'll have a lot of cleanup to do after this.
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class BrowsingContextContainer : public HTMLElement {
|
|
WEB_PLATFORM_OBJECT(BrowsingContextContainer, HTMLElement);
|
|
|
|
public:
|
|
virtual ~BrowsingContextContainer() override;
|
|
|
|
BrowsingContext* nested_browsing_context() { return m_nested_browsing_context; }
|
|
BrowsingContext const* nested_browsing_context() const { return m_nested_browsing_context; }
|
|
|
|
const DOM::Document* content_document() const;
|
|
DOM::Document const* content_document_without_origin_check() const;
|
|
|
|
HTML::Window* content_window() const;
|
|
|
|
DOM::Document const* get_svg_document() const;
|
|
|
|
protected:
|
|
BrowsingContextContainer(DOM::Document&, DOM::QualifiedName);
|
|
|
|
void create_new_nested_browsing_context();
|
|
void discard_nested_browsing_context();
|
|
|
|
RefPtr<BrowsingContext> m_nested_browsing_context;
|
|
|
|
private:
|
|
virtual bool is_browsing_context_container() const override { return true; }
|
|
};
|
|
|
|
}
|
|
|
|
namespace Web::DOM {
|
|
template<>
|
|
inline bool Node::fast_is<HTML::BrowsingContextContainer>() const { return is_browsing_context_container(); }
|
|
}
|
|
|
|
WRAPPER_HACK(BrowsingContextContainer, Web::HTML)
|