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

LibWeb: Add window.status property

This commit is contained in:
Reimar 2023-12-04 19:52:04 +01:00 committed by Andrew Kaster
parent 3a820ddbdf
commit 4299fb604b
3 changed files with 21 additions and 0 deletions

View file

@ -134,6 +134,8 @@ public:
JS::NonnullGCPtr<DOM::Document const> document() const;
String name() const;
void set_name(String const&);
String status() const;
void set_status(String const&);
[[nodiscard]] JS::NonnullGCPtr<Location> location();
JS::NonnullGCPtr<History> history() const;
JS::NonnullGCPtr<Navigation> navigation();
@ -275,6 +277,10 @@ private:
// https://streams.spec.whatwg.org/#byte-length-queuing-strategy-size-function
JS::GCPtr<WebIDL::CallbackType> m_byte_length_queuing_strategy_size_function;
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-window-status
// When the Window object is created, the attribute must be set to the empty string. It does not do anything else.
String m_status;
};
void run_animation_frame_callbacks(DOM::Document&, double now);