LibWeb: Remove unused pointer from DOM::Text to its "owner" element

This is a leftover from an earlier implementation of text input.
This commit is contained in:
Andreas Kling 2024-12-27 11:40:29 +01:00 committed by Jelle Raaijmakers
commit 1a0f5d3180
Notes: github-actions[bot] 2024-12-27 11:27:57 +00:00
2 changed files with 0 additions and 3 deletions

View file

@ -46,8 +46,6 @@ protected:
virtual void visit_edges(Cell::Visitor&) override;
private:
GC::Ptr<Element> m_owner;
Optional<size_t> m_max_length {};
bool m_is_password_input { false };
};