mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	 7eef69ad4b
			
		
	
	
		7eef69ad4b
		
	
	
	
	
		
			
			Frame::layout() drives everything now, it takes the DOM contained in the frame and puts it through the tree transformations.
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			183 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			183 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <LibHTML/DOM/Element.h>
 | |
| #include <LibHTML/Layout/LayoutInline.h>
 | |
| 
 | |
| LayoutInline::LayoutInline(const Node& node)
 | |
|     : LayoutNode(&node)
 | |
| {
 | |
| }
 | |
| 
 | |
| LayoutInline::~LayoutInline()
 | |
| {
 | |
| }
 |