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

LibWeb: Make all existing HTML elements "final"

This commit is contained in:
Luke 2020-07-28 02:54:19 +01:00 committed by Andreas Kling
parent 700f5cfc90
commit a86ce7eaca
15 changed files with 15 additions and 15 deletions

View file

@ -30,7 +30,7 @@
namespace Web::HTML {
class HTMLTableRowElement : public HTMLElement {
class HTMLTableRowElement final : public HTMLElement {
public:
using WrapperType = Bindings::HTMLTableRowElementWrapper;