1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 17:55:08 +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

@ -34,7 +34,7 @@ namespace Web::HTML {
class LayoutDocument;
class HTMLCanvasElement : public HTMLElement {
class HTMLCanvasElement final : public HTMLElement {
public:
using WrapperType = Bindings::HTMLCanvasElementWrapper;