/* * Copyright (c) 2018-2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace Web::HTML { class BrowsingContext final : public JS::Cell , public Weakable { JS_CELL(BrowsingContext, JS::Cell); public: static JS::NonnullGCPtr create_a_new_browsing_context(Page&, JS::GCPtr creator, JS::GCPtr embedder, BrowsingContextGroup&); static JS::NonnullGCPtr create_a_new_top_level_browsing_context(Page&); ~BrowsingContext(); JS::GCPtr parent() const { return m_parent; } void append_child(JS::NonnullGCPtr); void remove_child(JS::NonnullGCPtr); JS::GCPtr first_child() const; JS::GCPtr next_sibling() const; bool is_ancestor_of(BrowsingContext const&) const; template IterationDecision for_each_in_inclusive_subtree(Callback callback) const { if (callback(*this) == IterationDecision::Break) return IterationDecision::Break; for (auto child = first_child(); child; child = child->next_sibling()) { if (child->for_each_in_inclusive_subtree(callback) == IterationDecision::Break) return IterationDecision::Break; } return IterationDecision::Continue; } template IterationDecision for_each_in_inclusive_subtree(Callback callback) { if (callback(*this) == IterationDecision::Break) return IterationDecision::Break; for (auto child = first_child(); child; child = child->next_sibling()) { if (child->for_each_in_inclusive_subtree(callback) == IterationDecision::Break) return IterationDecision::Break; } return IterationDecision::Continue; } template void for_each_child(Callback callback) const { for (auto node = first_child(); node; node = node->next_sibling()) callback(*node); } template void for_each_child(Callback callback) { for (auto node = first_child(); node; node = node->next_sibling()) callback(*node); } template IterationDecision for_each_in_subtree(Callback callback) const { for (auto child = first_child(); child; child = child->next_sibling()) { if (child->for_each_in_inclusive_subtree(callback) == IterationDecision::Break) return IterationDecision::Break; } return IterationDecision::Continue; } template IterationDecision for_each_in_subtree(Callback callback) { for (auto child = first_child(); child; child = child->next_sibling()) { if (child->for_each_in_inclusive_subtree(callback) == IterationDecision::Break) return IterationDecision::Break; } return IterationDecision::Continue; } class ViewportClient { public: virtual ~ViewportClient() = default; virtual void browsing_context_did_set_viewport_rect(CSSPixelRect const&) = 0; }; void register_viewport_client(ViewportClient&); void unregister_viewport_client(ViewportClient&); bool is_top_level() const; bool is_focused_context() const; DOM::Document const* active_document() const; DOM::Document* active_document(); void set_active_document(JS::NonnullGCPtr); HTML::WindowProxy* window_proxy(); HTML::WindowProxy const* window_proxy() const; JS::GCPtr opener_browsing_context() const { return m_opener_browsing_context; } void set_opener_browsing_context(JS::GCPtr browsing_context) { m_opener_browsing_context = browsing_context; } HTML::Window* active_window(); HTML::Window const* active_window() const; Page* page() { return m_page; } Page const* page() const { return m_page; } CSSPixelSize size() const { return m_size; } void set_size(CSSPixelSize); void set_needs_display(); void set_needs_display(CSSPixelRect const&); CSSPixelPoint viewport_scroll_offset() const { return m_viewport_scroll_offset; } CSSPixelRect viewport_rect() const { return { m_viewport_scroll_offset, m_size }; } void set_viewport_rect(CSSPixelRect const&); FrameLoader& loader() { return m_loader; } FrameLoader const& loader() const { return m_loader; } Web::EventHandler& event_handler() { return m_event_handler; } Web::EventHandler const& event_handler() const { return m_event_handler; } void scroll_to(CSSPixelPoint); void scroll_to_anchor(DeprecatedString const&); BrowsingContext& top_level_browsing_context() { BrowsingContext* context = this; while (context->parent()) context = context->parent(); return *context; } BrowsingContext const& top_level_browsing_context() const { return const_cast(this)->top_level_browsing_context(); } enum class WindowType { ExistingOrNone, NewAndUnrestricted, NewWithNoOpener, }; struct ChosenBrowsingContext { JS::GCPtr browsing_context; WindowType window_type; }; ChosenBrowsingContext choose_a_browsing_context(StringView name, bool no_opener); size_t document_tree_child_browsing_context_count() const; bool is_child_of(BrowsingContext const&) const; HTML::BrowsingContextContainer* container() { return m_container; } HTML::BrowsingContextContainer const* container() const { return m_container; } CSSPixelPoint to_top_level_position(CSSPixelPoint); CSSPixelRect to_top_level_rect(CSSPixelRect const&); DOM::Position const& cursor_position() const { return m_cursor_position; } void set_cursor_position(DOM::Position); bool increment_cursor_position_offset(); bool decrement_cursor_position_offset(); bool cursor_blink_state() const { return m_cursor_blink_state; } DeprecatedString selected_text() const; void select_all(); void did_edit(Badge); void register_frame_nesting(AK::URL const&); bool is_frame_nesting_allowed(AK::URL const&) const; void set_frame_nesting_levels(HashMap frame_nesting_levels) { m_frame_nesting_levels = move(frame_nesting_levels); }; HashMap const& frame_nesting_levels() const { return m_frame_nesting_levels; } DOM::Document* container_document(); DOM::Document const* container_document() const; bool has_a_rendering_opportunity() const; JS::GCPtr currently_focused_area(); DeprecatedString const& name() const { return m_name; } void set_name(DeprecatedString const& name) { m_name = name; } Vector& session_history() { return m_session_history; } Vector const& session_history() const { return m_session_history; } size_t session_history_index() const { return *m_session_history_index; } // https://html.spec.whatwg.org/multipage/dom.html#still-on-its-initial-about:blank-document bool still_on_its_initial_about_blank_document() const; BrowsingContextGroup* group(); void set_group(BrowsingContextGroup*); // https://html.spec.whatwg.org/multipage/browsers.html#bcg-remove void remove(); // https://html.spec.whatwg.org/multipage/browsers.html#allowed-to-navigate bool is_allowed_to_navigate(BrowsingContext const&) const; // https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate WebIDL::ExceptionOr navigate( JS::NonnullGCPtr resource, BrowsingContext& source_browsing_context, bool exceptions_enabled = false, HistoryHandlingBehavior history_handling = HistoryHandlingBehavior::Default, Optional history_policy_container = {}, DeprecatedString navigation_type = "other", Optional navigation_id = {}, Function)> process_response_end_of_body = {}); // https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigate-fragid WebIDL::ExceptionOr navigate_to_a_fragment(AK::URL const&, HistoryHandlingBehavior, DeprecatedString navigation_id); // https://html.spec.whatwg.org/multipage/origin.html#one-permitted-sandboxed-navigator BrowsingContext const* the_one_permitted_sandboxed_navigator() const; // https://html.spec.whatwg.org/multipage/browsing-the-web.html#traverse-the-history WebIDL::ExceptionOr traverse_the_history(size_t entry_index, HistoryHandlingBehavior = HistoryHandlingBehavior::Default, bool explicit_history_navigation = false); Vector> document_family() const; bool document_family_contains(DOM::Document const&) const; VisibilityState system_visibility_state() const; void set_system_visibility_state(VisibilityState); void set_is_popup(bool is_popup) { m_is_popup = is_popup; } // https://html.spec.whatwg.org/multipage/window-object.html#a-browsing-context-is-discarded void discard(); bool has_been_discarded() const { return m_has_been_discarded; } // https://html.spec.whatwg.org/multipage/window-object.html#close-a-browsing-context void close(); Optional const& creator_url() const { return m_creator_url; } private: explicit BrowsingContext(Page&, HTML::BrowsingContextContainer*); virtual void visit_edges(Cell::Visitor&) override; void reset_cursor_blink_cycle(); void scroll_offset_did_change(); WeakPtr m_page; FrameLoader m_loader; Web::EventHandler m_event_handler; // https://html.spec.whatwg.org/multipage/history.html#current-entry SessionHistoryEntry& current_entry() { return m_session_history[*m_session_history_index]; } SessionHistoryEntry const& current_entry() const { return m_session_history[*m_session_history_index]; } Optional m_session_history_index { 0 }; // https://html.spec.whatwg.org/multipage/history.html#session-history Vector m_session_history; // https://html.spec.whatwg.org/multipage/browsers.html#creator-url Optional m_creator_url; // https://html.spec.whatwg.org/multipage/browsers.html#creator-base-url Optional m_creator_base_url; // https://html.spec.whatwg.org/multipage/browsers.html#creator-origin Optional m_creator_origin; JS::GCPtr m_container; CSSPixelSize m_size; CSSPixelPoint m_viewport_scroll_offset; // https://html.spec.whatwg.org/multipage/browsers.html#browsing-context JS::GCPtr m_window_proxy; // https://html.spec.whatwg.org/multipage/browsers.html#opener-browsing-context JS::GCPtr m_opener_browsing_context; DOM::Position m_cursor_position; RefPtr m_cursor_blink_timer; bool m_cursor_blink_state { false }; HashTable m_viewport_clients; HashMap m_frame_nesting_levels; DeprecatedString m_name; // https://html.spec.whatwg.org/multipage/browsers.html#tlbc-group JS::GCPtr m_group; // https://html.spec.whatwg.org/multipage/browsers.html#is-popup bool m_is_popup { false }; // https://html.spec.whatwg.org/multipage/interaction.html#system-visibility-state VisibilityState m_system_visibility_state { VisibilityState::Hidden }; JS::GCPtr m_parent; JS::GCPtr m_first_child; JS::GCPtr m_last_child; JS::GCPtr m_next_sibling; JS::GCPtr m_previous_sibling; bool m_has_been_discarded { false }; }; HTML::Origin determine_the_origin(BrowsingContext const& browsing_context, Optional url, SandboxingFlagSet sandbox_flags, Optional invocation_origin); }