mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:42:43 +00:00 
			
		
		
		
	 28fabd4728
			
		
	
	
		28fabd4728
		
	
	
	
	
		
			
			In the past, the base class implementation of this was used to descend into subtrees and paint children. That is now taken care of by StackingContext::paint_descendants() instead, and nothing used this.
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			786 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			786 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibWeb/Layout/BlockBox.h>
 | |
| #include <LibWeb/Layout/BreakNode.h>
 | |
| #include <LibWeb/Layout/InlineFormattingContext.h>
 | |
| 
 | |
| namespace Web::Layout {
 | |
| 
 | |
| BreakNode::BreakNode(DOM::Document& document, HTML::HTMLBRElement& element)
 | |
|     : Layout::NodeWithStyleAndBoxModelMetrics(document, &element, CSS::StyleProperties::create())
 | |
| {
 | |
|     set_inline(true);
 | |
| }
 | |
| 
 | |
| BreakNode::~BreakNode()
 | |
| {
 | |
| }
 | |
| 
 | |
| void BreakNode::split_into_lines(InlineFormattingContext& context, LayoutMode)
 | |
| {
 | |
|     auto& line_box = context.containing_block().add_line_box();
 | |
|     line_box.add_fragment(*this, 0, 0, 0, context.containing_block().line_height());
 | |
| }
 | |
| 
 | |
| void BreakNode::paint(PaintContext&, PaintPhase)
 | |
| {
 | |
| }
 | |
| 
 | |
| }
 |