mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 11:22:45 +00:00 
			
		
		
		
	 8fb979148d
			
		
	
	
		8fb979148d
		
	
	
	
	
		
			
			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;
 | |
| };
 |