mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:07:45 +00:00
LibWeb: Add fast_is<T>() for SVGBox and SVGPathBox
This commit is contained in:
parent
04c0c103e0
commit
225a5f2fe6
3 changed files with 14 additions and 0 deletions
|
@ -101,6 +101,8 @@ public:
|
|||
virtual bool is_block_container() const { return false; }
|
||||
virtual bool is_text_node() const { return false; }
|
||||
virtual bool is_initial_containing_block_box() const { return false; }
|
||||
virtual bool is_svg_box() const { return false; }
|
||||
virtual bool is_svg_path_box() const { return false; }
|
||||
|
||||
template<typename T>
|
||||
bool fast_is() const = delete;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue