mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	This was pleasantly trivial to implement with the new support for presentational hints. :^)
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			284 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			284 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <LibHTML/DOM/HTMLElement.h>
 | 
						|
 | 
						|
class HTMLFontElement : public HTMLElement {
 | 
						|
public:
 | 
						|
    HTMLFontElement(Document&, const String& tag_name);
 | 
						|
    virtual ~HTMLFontElement() override;
 | 
						|
 | 
						|
    virtual void apply_presentational_hints(StyleProperties&) const override;
 | 
						|
};
 |