/* * Copyright (c) 2020-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::HTML { class HTMLIFrameElement final : public BrowsingContextContainer { WEB_PLATFORM_OBJECT(HTMLIFrameElement, BrowsingContextContainer); public: virtual ~HTMLIFrameElement() override; virtual RefPtr create_layout_node(NonnullRefPtr) override; // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#will-lazy-load-element-steps bool will_lazy_load_element() const; void set_current_navigation_was_lazy_loaded(bool value) { m_current_navigation_was_lazy_loaded = value; } private: HTMLIFrameElement(DOM::Document&, DOM::QualifiedName); virtual void inserted() override; virtual void removed_from(Node*) override; virtual void parse_attribute(FlyString const& name, String const& value) override; // https://html.spec.whatwg.org/multipage/iframe-embed-object.html#process-the-iframe-attributes void process_the_iframe_attributes(bool initial_insertion = false); void load_src(String const&); // https://html.spec.whatwg.org/multipage/iframe-embed-object.html#current-navigation-was-lazy-loaded bool m_current_navigation_was_lazy_loaded { false }; }; void run_iframe_load_event_steps(HTML::HTMLIFrameElement&); } WRAPPER_HACK(HTMLIFrameElement, Web::HTML)