LibWeb: Implement [SameObject] behavior for HTMLTableSectionElement.rows

This commit is contained in:
Andreas Kling 2022-11-24 19:04:27 +01:00
commit ad36bc72f4
Notes: sideshowbarker 2024-07-17 06:38:11 +09:00
2 changed files with 17 additions and 6 deletions

View file

@ -23,6 +23,10 @@ public:
private:
HTMLTableSectionElement(DOM::Document&, DOM::QualifiedName);
virtual void visit_edges(Cell::Visitor&) override;
JS::GCPtr<DOM::HTMLCollection> mutable m_rows;
};
}