diff --git a/Userland/Libraries/LibWeb/DOM/Document.h b/Userland/Libraries/LibWeb/DOM/Document.h index 2d39f1f0fd..a79b577853 100644 --- a/Userland/Libraries/LibWeb/DOM/Document.h +++ b/Userland/Libraries/LibWeb/DOM/Document.h @@ -284,6 +284,7 @@ public: JS::NonnullGCPtr appropriate_template_contents_owner_document(); DeprecatedString ready_state() const; + HTML::DocumentReadyState readiness() const { return m_readiness; }; void update_readiness(HTML::DocumentReadyState); HTML::Window& window() const { return const_cast(*m_window); }