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

LibWeb: Port BrowsingContext from ByteString

Also removing an unused m_name member.
This commit is contained in:
Shannon Booth 2023-12-24 15:49:57 +13:00 committed by Andreas Kling
parent 1536cd05a7
commit 0b7c8e0de5
3 changed files with 10 additions and 12 deletions

View file

@ -151,7 +151,7 @@ public:
bool cursor_blink_state() const { return m_cursor_blink_state; }
ByteString selected_text() const;
String selected_text() const;
void select_all();
void did_edit(Badge<EditEventHandler>);
@ -222,8 +222,6 @@ private:
RefPtr<Core::Timer> m_cursor_blink_timer;
bool m_cursor_blink_state { false };
ByteString m_name;
// https://html.spec.whatwg.org/multipage/browsers.html#tlbc-group
JS::GCPtr<BrowsingContextGroup> m_group;