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

LibWeb: Make a handful of layout node leaf classes final

This commit is contained in:
Andreas Kling 2023-01-11 14:01:33 +01:00
parent 4d401bf796
commit f914abaf29
6 changed files with 6 additions and 6 deletions

View file

@ -14,7 +14,7 @@ namespace Web::Layout {
class LineBoxFragment;
class TextNode : public Node {
class TextNode final : public Node {
JS_CELL(TextNode, Node);
public: