1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +00:00

LibWeb: Implement document ready state

This commit is contained in:
Luke 2020-08-31 13:56:16 +01:00 committed by Andreas Kling
parent 8aabec1c94
commit 124c52b3b5
5 changed files with 49 additions and 0 deletions

View file

@ -174,6 +174,9 @@ public:
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&);
private:
virtual RefPtr<LayoutNode> create_layout_node(const CSS::StyleProperties* parent_style) override;
@ -209,6 +212,8 @@ private:
bool m_created_for_appropriate_template_contents { false };
RefPtr<Document> m_associated_inert_template_document;
String m_ready_state { "loading" };
};
}