/* * Copyright (c) 2020-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::HTML { class BrowsingContextContainer : public HTMLElement { public: BrowsingContextContainer(DOM::Document&, DOM::QualifiedName); 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; DOM::Document const* get_svg_document() const; protected: void create_new_nested_browsing_context(); void discard_nested_browsing_context(); RefPtr m_nested_browsing_context; private: virtual bool is_browsing_context_container() const override { return true; } }; } namespace Web::DOM { template<> inline bool Node::fast_is() const { return is_browsing_context_container(); } }