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

LibWeb: Implement [SameObject] for HTMLTableElement.{rows,tBodies}

This commit is contained in:
Andreas Kling 2022-11-24 19:04:47 +01:00
parent ad36bc72f4
commit 8540c4e574
2 changed files with 41 additions and 19 deletions

View file

@ -45,7 +45,12 @@ public:
private:
HTMLTableElement(DOM::Document&, DOM::QualifiedName);
virtual void visit_edges(Cell::Visitor&) override;
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
JS::GCPtr<DOM::HTMLCollection> mutable m_rows;
JS::GCPtr<DOM::HTMLCollection> mutable m_t_bodies;
};
}