| 
									
										
										
										
											2022-03-10 22:46:35 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2024-10-04 13:19:50 +02:00
										 |  |  |  * Copyright (c) 2022, Andreas Kling <andreas@ladybird.org> | 
					
						
							| 
									
										
										
										
											2022-03-10 22:46:35 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <LibWeb/Layout/LabelableNode.h>
 | 
					
						
							|  |  |  | #include <LibWeb/Painting/LabelablePaintable.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::Layout { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Painting::LabelablePaintable* LabelableNode::paintable() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return static_cast<Painting::LabelablePaintable*>(ReplacedBox::paintable()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Painting::LabelablePaintable const* LabelableNode::paintable() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return static_cast<Painting::LabelablePaintable const*>(ReplacedBox::paintable()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |