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

LibWeb: Support fast_is<T>() for table, table sections, rows and cells

3.2x speed-up on WebKit/PerformanceTests/DOM/GridSort.html
This commit is contained in:
Andreas Kling 2023-08-22 14:55:10 +02:00
parent 76580bb9ba
commit 354d2ccc3c
5 changed files with 32 additions and 0 deletions

View file

@ -30,6 +30,8 @@ public:
private:
HTMLTableRowElement(DOM::Document&, DOM::QualifiedName);
virtual bool is_html_table_row_element() const override { return true; }
virtual void initialize(JS::Realm&) override;
virtual void visit_edges(Cell::Visitor&) override;
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
@ -38,3 +40,8 @@ private:
};
}
namespace Web::DOM {
template<>
inline bool Node::fast_is<HTML::HTMLTableRowElement>() const { return is_html_table_row_element(); }
}