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
commit 0b7c8e0de5
Notes: sideshowbarker 2024-07-17 06:35:23 +09:00
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;