mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:02:46 +00:00 
			
		
		
		
	 8f842375a2
			
		
	
	
		8f842375a2
		
	
	
	
	
		
			
			This also meant I had to implement basic support for the border-styles "inset" and "outset". If it's neither of those, we default to "solid".
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			199 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			199 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <LibHTML/DOM/HTMLElement.h>
 | |
| 
 | |
| class HTMLHRElement : public HTMLElement {
 | |
| public:
 | |
|     HTMLHRElement(Document&, const String& tag_name);
 | |
|     virtual ~HTMLHRElement() override;
 | |
| };
 |