123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/FlyString.h>
- #include <AK/Function.h>
- #include <AK/NonnullRefPtrVector.h>
- #include <AK/OwnPtr.h>
- #include <AK/String.h>
- #include <AK/URL.h>
- #include <AK/WeakPtr.h>
- #include <LibCore/Forward.h>
- #include <LibJS/Forward.h>
- #include <LibWeb/Bindings/ScriptExecutionContext.h>
- #include <LibWeb/Bindings/WindowObject.h>
- #include <LibWeb/CSS/CSSStyleSheet.h>
- #include <LibWeb/CSS/StyleResolver.h>
- #include <LibWeb/CSS/StyleSheetList.h>
- #include <LibWeb/Cookie/Cookie.h>
- #include <LibWeb/DOM/DOMImplementation.h>
- #include <LibWeb/DOM/ExceptionOr.h>
- #include <LibWeb/DOM/NonElementParentNode.h>
- #include <LibWeb/DOM/ParentNode.h>
- #include <LibWeb/HTML/HTMLScriptElement.h>
- namespace Web::DOM {
- enum class QuirksMode {
- No,
- Limited,
- Yes
- };
- class Document
- : public ParentNode
- , public NonElementParentNode<Document>
- , public HTML::GlobalEventHandlers
- , public Bindings::ScriptExecutionContext {
- public:
- using WrapperType = Bindings::DocumentWrapper;
- static NonnullRefPtr<Document> create(const URL& url = "about:blank")
- {
- return adopt_ref(*new Document(url));
- }
- static NonnullRefPtr<Document> create_with_global_object(Bindings::WindowObject&)
- {
- return Document::create();
- }
- virtual ~Document() override;
- String cookie(Cookie::Source = Cookie::Source::NonHttp);
- void set_cookie(String, Cookie::Source = Cookie::Source::NonHttp);
- bool should_invalidate_styles_on_attribute_changes() const { return m_should_invalidate_styles_on_attribute_changes; }
- void set_should_invalidate_styles_on_attribute_changes(bool b) { m_should_invalidate_styles_on_attribute_changes = b; }
- void set_url(const URL& url) { m_url = url; }
- URL url() const { return m_url; }
- Origin origin() const;
- void set_origin(const Origin& origin);
- bool is_scripting_enabled() const { return true; }
- URL complete_url(const String&) const;
- CSS::StyleResolver& style_resolver() { return *m_style_resolver; }
- const CSS::StyleResolver& style_resolver() const { return *m_style_resolver; }
- CSS::StyleSheetList& style_sheets() { return *m_style_sheets; }
- const CSS::StyleSheetList& style_sheets() const { return *m_style_sheets; }
- NonnullRefPtr<CSS::StyleSheetList> style_sheets_for_bindings() { return *m_style_sheets; }
- virtual FlyString node_name() const override { return "#document"; }
- void set_hovered_node(Node*);
- Node* hovered_node() { return m_hovered_node; }
- const Node* hovered_node() const { return m_hovered_node; }
- void set_inspected_node(Node*);
- Node* inspected_node() { return m_inspected_node; }
- const Node* inspected_node() const { return m_inspected_node; }
- Element* document_element();
- const Element* document_element() const;
- HTML::HTMLHtmlElement* html_element();
- HTML::HTMLHeadElement* head();
- HTML::HTMLElement* body();
- const HTML::HTMLHtmlElement* html_element() const
- {
- return const_cast<Document*>(this)->html_element();
- }
- const HTML::HTMLHeadElement* head() const
- {
- return const_cast<Document*>(this)->head();
- }
- const HTML::HTMLElement* body() const
- {
- return const_cast<Document*>(this)->body();
- }
- ExceptionOr<void> set_body(HTML::HTMLElement* new_body);
- String title() const;
- void set_title(const String&);
- void attach_to_browsing_context(Badge<BrowsingContext>, BrowsingContext&);
- void detach_from_browsing_context(Badge<BrowsingContext>, BrowsingContext&);
- BrowsingContext* browsing_context() { return m_browsing_context.ptr(); }
- const BrowsingContext* browsing_context() const { return m_browsing_context.ptr(); }
- Page* page();
- const Page* page() const;
- Color background_color(const Gfx::Palette&) const;
- RefPtr<Gfx::Bitmap> background_image() const;
- CSS::Repeat background_repeat_x() const;
- CSS::Repeat background_repeat_y() const;
- Color link_color() const;
- void set_link_color(Color);
- Color active_link_color() const;
- void set_active_link_color(Color);
- Color visited_link_color() const;
- void set_visited_link_color(Color);
- void force_layout();
- void invalidate_layout();
- void update_style();
- void update_layout();
- virtual bool is_child_allowed(const Node&) const override;
- const Layout::InitialContainingBlockBox* layout_node() const;
- Layout::InitialContainingBlockBox* layout_node();
- void schedule_style_update();
- void schedule_forced_layout();
- NonnullRefPtr<HTMLCollection> get_elements_by_name(String const&);
- NonnullRefPtr<HTMLCollection> get_elements_by_tag_name(FlyString const&);
- NonnullRefPtr<HTMLCollection> get_elements_by_class_name(FlyString const&);
- NonnullRefPtr<HTMLCollection> applets();
- NonnullRefPtr<HTMLCollection> anchors();
- NonnullRefPtr<HTMLCollection> images();
- NonnullRefPtr<HTMLCollection> embeds();
- NonnullRefPtr<HTMLCollection> plugins();
- NonnullRefPtr<HTMLCollection> links();
- NonnullRefPtr<HTMLCollection> forms();
- NonnullRefPtr<HTMLCollection> scripts();
- const String& source() const { return m_source; }
- void set_source(const String& source) { m_source = source; }
- virtual JS::Interpreter& interpreter() override;
- JS::Value run_javascript(const StringView& source, const StringView& filename = "(unknown)");
- NonnullRefPtr<Element> create_element(const String& tag_name);
- NonnullRefPtr<Element> create_element_ns(const String& namespace_, const String& qualifed_name);
- NonnullRefPtr<DocumentFragment> create_document_fragment();
- NonnullRefPtr<Text> create_text_node(const String& data);
- NonnullRefPtr<Comment> create_comment(const String& data);
- NonnullRefPtr<Range> create_range();
- NonnullRefPtr<Event> create_event(const String& interface);
- void set_pending_parsing_blocking_script(Badge<HTML::HTMLScriptElement>, HTML::HTMLScriptElement*);
- HTML::HTMLScriptElement* pending_parsing_blocking_script() { return m_pending_parsing_blocking_script; }
- NonnullRefPtr<HTML::HTMLScriptElement> take_pending_parsing_blocking_script(Badge<HTML::HTMLDocumentParser>);
- void add_script_to_execute_when_parsing_has_finished(Badge<HTML::HTMLScriptElement>, HTML::HTMLScriptElement&);
- NonnullRefPtrVector<HTML::HTMLScriptElement> take_scripts_to_execute_when_parsing_has_finished(Badge<HTML::HTMLDocumentParser>);
- void add_script_to_execute_as_soon_as_possible(Badge<HTML::HTMLScriptElement>, HTML::HTMLScriptElement&);
- NonnullRefPtrVector<HTML::HTMLScriptElement> take_scripts_to_execute_as_soon_as_possible(Badge<HTML::HTMLDocumentParser>);
- QuirksMode mode() const { return m_quirks_mode; }
- bool in_quirks_mode() const { return m_quirks_mode == QuirksMode::Yes; }
- void set_quirks_mode(QuirksMode mode) { m_quirks_mode = mode; }
- void adopt_node(Node&);
- ExceptionOr<NonnullRefPtr<Node>> adopt_node_binding(NonnullRefPtr<Node>);
- const DocumentType* doctype() const;
- const String& compat_mode() const;
- void set_editable(bool editable) { m_editable = editable; }
- virtual bool is_editable() const final;
- Element* focused_element() { return m_focused_element; }
- const Element* focused_element() const { return m_focused_element; }
- void set_focused_element(Element*);
- const Element* active_element() const { return m_active_element; }
- void set_active_element(Element*);
- bool created_for_appropriate_template_contents() const { return m_created_for_appropriate_template_contents; }
- void set_created_for_appropriate_template_contents(bool value) { m_created_for_appropriate_template_contents = value; }
- Document* associated_inert_template_document() { return m_associated_inert_template_document; }
- const Document* associated_inert_template_document() const { return m_associated_inert_template_document; }
- void set_associated_inert_template_document(Document& document) { m_associated_inert_template_document = document; }
- const String& ready_state() const { return m_ready_state; }
- void set_ready_state(const String&);
- void ref_from_node(Badge<Node>)
- {
- increment_referencing_node_count();
- }
- void unref_from_node(Badge<Node>)
- {
- decrement_referencing_node_count();
- }
- void removed_last_ref();
- Window& window() { return *m_window; }
- Window* default_view() { return m_window; }
- const String& content_type() const { return m_content_type; }
- void set_content_type(const String& content_type) { m_content_type = content_type; }
- bool has_encoding() const { return m_encoding.has_value(); }
- const Optional<String>& encoding() const { return m_encoding; }
- String encoding_or_default() const { return m_encoding.value_or("UTF-8"); }
- void set_encoding(const Optional<String>& encoding) { m_encoding = encoding; }
- // NOTE: These are intended for the JS bindings
- String character_set() const { return encoding_or_default(); }
- String charset() const { return encoding_or_default(); }
- String input_encoding() const { return encoding_or_default(); }
- bool ready_for_post_load_tasks() const { return m_ready_for_post_load_tasks; }
- void set_ready_for_post_load_tasks(bool ready) { m_ready_for_post_load_tasks = ready; }
- void completely_finish_loading();
- const NonnullRefPtr<DOMImplementation> implementation() const { return m_implementation; }
- RefPtr<HTML::HTMLScriptElement> current_script() const { return m_current_script; }
- void set_current_script(Badge<HTML::HTMLScriptElement>, RefPtr<HTML::HTMLScriptElement> script) { m_current_script = script; }
- u32 ignore_destructive_writes_counter() const { return m_ignore_destructive_writes_counter; }
- void increment_ignore_destructive_writes_counter() { m_ignore_destructive_writes_counter++; }
- void decrement_ignore_destructive_writes_counter() { m_ignore_destructive_writes_counter--; }
- virtual EventTarget* get_parent(const Event&) override;
- String dump_dom_tree_as_json() const;
- private:
- explicit Document(const URL&);
- // ^DOM::Node
- virtual RefPtr<Layout::Node> create_layout_node() override;
- // ^HTML::GlobalEventHandlers
- virtual EventTarget& global_event_handlers_to_event_target() final { return *this; }
- void tear_down_layout_tree();
- void increment_referencing_node_count()
- {
- VERIFY(!m_deletion_has_begun);
- ++m_referencing_node_count;
- }
- void decrement_referencing_node_count()
- {
- VERIFY(!m_deletion_has_begun);
- VERIFY(m_referencing_node_count);
- --m_referencing_node_count;
- if (!m_referencing_node_count && !ref_count()) {
- m_deletion_has_begun = true;
- delete this;
- }
- }
- unsigned m_referencing_node_count { 0 };
- OwnPtr<CSS::StyleResolver> m_style_resolver;
- RefPtr<CSS::StyleSheetList> m_style_sheets;
- RefPtr<Node> m_hovered_node;
- RefPtr<Node> m_inspected_node;
- WeakPtr<BrowsingContext> m_browsing_context;
- URL m_url;
- RefPtr<Window> m_window;
- RefPtr<Layout::InitialContainingBlockBox> m_layout_root;
- Optional<Color> m_link_color;
- Optional<Color> m_active_link_color;
- Optional<Color> m_visited_link_color;
- RefPtr<Core::Timer> m_style_update_timer;
- RefPtr<Core::Timer> m_forced_layout_timer;
- String m_source;
- OwnPtr<JS::Interpreter> m_interpreter;
- RefPtr<HTML::HTMLScriptElement> m_pending_parsing_blocking_script;
- NonnullRefPtrVector<HTML::HTMLScriptElement> m_scripts_to_execute_when_parsing_has_finished;
- NonnullRefPtrVector<HTML::HTMLScriptElement> m_scripts_to_execute_as_soon_as_possible;
- QuirksMode m_quirks_mode { QuirksMode::No };
- bool m_editable { false };
- WeakPtr<Element> m_focused_element;
- WeakPtr<Element> m_active_element;
- bool m_created_for_appropriate_template_contents { false };
- RefPtr<Document> m_associated_inert_template_document;
- String m_ready_state { "loading" };
- String m_content_type { "application/xml" };
- Optional<String> m_encoding;
- bool m_ready_for_post_load_tasks { false };
- NonnullRefPtr<DOMImplementation> m_implementation;
- RefPtr<HTML::HTMLScriptElement> m_current_script;
- bool m_should_invalidate_styles_on_attribute_changes { true };
- u32 m_ignore_destructive_writes_counter { 0 };
- };
- }
|