1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 11:47:35 +00:00

LibWeb: Support bgcolor attribute on tr elements

This commit is contained in:
Nicolas Ramz 2023-07-04 17:18:59 +02:00 committed by Sam Atkins
parent bd93b4984b
commit 876ad69ea3
2 changed files with 18 additions and 0 deletions

View file

@ -32,6 +32,7 @@ private:
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
virtual void visit_edges(Cell::Visitor&) override;
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
JS::GCPtr<DOM::HTMLCollection> mutable m_cells;
};