1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 00:15:08 +00:00

LibWeb: Implement [SameObject] behavior for HTMLTableSectionElement.rows

This commit is contained in:
Andreas Kling 2022-11-24 19:04:27 +01:00
parent d7c58aa58d
commit ad36bc72f4
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;
};
}