mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 06:48:49 +00:00
LibWeb: Make all existing HTML elements "final"
This commit is contained in:
parent
700f5cfc90
commit
a86ce7eaca
Notes:
sideshowbarker
2024-07-19 04:07:51 +09:00
Author: https://github.com/Lubrsi
Commit: a86ce7eaca
Pull-request: https://github.com/SerenityOS/serenity/pull/3059
Issue: https://github.com/SerenityOS/serenity/issues/2905
15 changed files with 15 additions and 15 deletions
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLAnchorElement : public HTMLElement {
|
class HTMLAnchorElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLAnchorElementWrapper;
|
using WrapperType = Bindings::HTMLAnchorElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLBlinkElement : public HTMLElement {
|
class HTMLBlinkElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
HTMLBlinkElement(DOM::Document&, const FlyString& local_name);
|
HTMLBlinkElement(DOM::Document&, const FlyString& local_name);
|
||||||
virtual ~HTMLBlinkElement() override;
|
virtual ~HTMLBlinkElement() override;
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLBodyElement : public HTMLElement {
|
class HTMLBodyElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLBodyElementWrapper;
|
using WrapperType = Bindings::HTMLBodyElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ namespace Web::HTML {
|
||||||
|
|
||||||
class LayoutDocument;
|
class LayoutDocument;
|
||||||
|
|
||||||
class HTMLCanvasElement : public HTMLElement {
|
class HTMLCanvasElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLCanvasElementWrapper;
|
using WrapperType = Bindings::HTMLCanvasElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLFontElement : public HTMLElement {
|
class HTMLFontElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
HTMLFontElement(DOM::Document&, const FlyString& local_name);
|
HTMLFontElement(DOM::Document&, const FlyString& local_name);
|
||||||
virtual ~HTMLFontElement() override;
|
virtual ~HTMLFontElement() override;
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLFormElement : public HTMLElement {
|
class HTMLFormElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLFormElementWrapper;
|
using WrapperType = Bindings::HTMLFormElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLHRElement : public HTMLElement {
|
class HTMLHRElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLHRElementWrapper;
|
using WrapperType = Bindings::HTMLHRElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLHeadElement : public HTMLElement {
|
class HTMLHeadElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLHeadElementWrapper;
|
using WrapperType = Bindings::HTMLHeadElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLHeadingElement : public HTMLElement {
|
class HTMLHeadingElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLHeadingElementWrapper;
|
using WrapperType = Bindings::HTMLHeadingElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLHtmlElement : public HTMLElement {
|
class HTMLHtmlElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLHtmlElementWrapper;
|
using WrapperType = Bindings::HTMLHtmlElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLInputElement : public HTMLElement {
|
class HTMLInputElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLInputElementWrapper;
|
using WrapperType = Bindings::HTMLInputElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLScriptElement : public HTMLElement {
|
class HTMLScriptElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLScriptElementWrapper;
|
using WrapperType = Bindings::HTMLScriptElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLStyleElement : public HTMLElement {
|
class HTMLStyleElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLStyleElementWrapper;
|
using WrapperType = Bindings::HTMLStyleElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLTableRowElement : public HTMLElement {
|
class HTMLTableRowElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLTableRowElementWrapper;
|
using WrapperType = Bindings::HTMLTableRowElementWrapper;
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
namespace Web::HTML {
|
namespace Web::HTML {
|
||||||
|
|
||||||
class HTMLTitleElement : public HTMLElement {
|
class HTMLTitleElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
using WrapperType = Bindings::HTMLTitleElementWrapper;
|
using WrapperType = Bindings::HTMLTitleElementWrapper;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue