mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:22:43 +00:00 
			
		
		
		
	LibWeb: Make all existing HTML elements "final"
This commit is contained in:
		
							parent
							
								
									700f5cfc90
								
							
						
					
					
						commit
						a86ce7eaca
					
				
					 15 changed files with 15 additions and 15 deletions
				
			
		|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLAnchorElement : public HTMLElement { | ||||
| class HTMLAnchorElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLAnchorElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -31,7 +31,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLBlinkElement : public HTMLElement { | ||||
| class HTMLBlinkElement final : public HTMLElement { | ||||
| public: | ||||
|     HTMLBlinkElement(DOM::Document&, const FlyString& local_name); | ||||
|     virtual ~HTMLBlinkElement() override; | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLBodyElement : public HTMLElement { | ||||
| class HTMLBodyElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLBodyElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -34,7 +34,7 @@ namespace Web::HTML { | |||
| 
 | ||||
| class LayoutDocument; | ||||
| 
 | ||||
| class HTMLCanvasElement : public HTMLElement { | ||||
| class HTMLCanvasElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLCanvasElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLFontElement : public HTMLElement { | ||||
| class HTMLFontElement final : public HTMLElement { | ||||
| public: | ||||
|     HTMLFontElement(DOM::Document&, const FlyString& local_name); | ||||
|     virtual ~HTMLFontElement() override; | ||||
|  |  | |||
|  | @ -31,7 +31,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLFormElement : public HTMLElement { | ||||
| class HTMLFormElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLFormElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLHRElement : public HTMLElement { | ||||
| class HTMLHRElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLHRElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLHeadElement : public HTMLElement { | ||||
| class HTMLHeadElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLHeadElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLHeadingElement : public HTMLElement { | ||||
| class HTMLHeadingElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLHeadingElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLHtmlElement : public HTMLElement { | ||||
| class HTMLHtmlElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLHtmlElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLInputElement : public HTMLElement { | ||||
| class HTMLInputElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLInputElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -31,7 +31,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLScriptElement : public HTMLElement { | ||||
| class HTMLScriptElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLScriptElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLStyleElement : public HTMLElement { | ||||
| class HTMLStyleElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLStyleElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLTableRowElement : public HTMLElement { | ||||
| class HTMLTableRowElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLTableRowElementWrapper; | ||||
| 
 | ||||
|  |  | |||
|  | @ -30,7 +30,7 @@ | |||
| 
 | ||||
| namespace Web::HTML { | ||||
| 
 | ||||
| class HTMLTitleElement : public HTMLElement { | ||||
| class HTMLTitleElement final : public HTMLElement { | ||||
| public: | ||||
|     using WrapperType = Bindings::HTMLTitleElementWrapper; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Luke
						Luke