mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	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".
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <LibHTML/DOM/HTMLHRElement.h>
 | 
						|
 | 
						|
HTMLHRElement::HTMLHRElement(Document& document, const String& tag_name)
 | 
						|
    : HTMLElement(document, tag_name)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
HTMLHRElement::~HTMLHRElement()
 | 
						|
{
 | 
						|
}
 |