mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:52:43 +00:00 
			
		
		
		
	 809c5b0b03
			
		
	
	
		809c5b0b03
		
	
	
	
	
		
			
			This patch adds basic support for the SVG `<textPath>`, so it supports placing text along a path, but none of the extra attributes for controlling the layout of the text. This is enough to correctly display the MDN example.
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, MacDue <macdue@dueutil.tech>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibWeb/Layout/SVGTextPathBox.h>
 | |
| #include <LibWeb/Painting/SVGPathPaintable.h>
 | |
| 
 | |
| namespace Web::Layout {
 | |
| 
 | |
| SVGTextPathBox::SVGTextPathBox(DOM::Document& document, SVG::SVGTextPathElement& element, NonnullRefPtr<CSS::StyleProperties> properties)
 | |
|     : SVGGraphicsBox(document, element, properties)
 | |
| {
 | |
| }
 | |
| 
 | |
| JS::GCPtr<Painting::Paintable> SVGTextPathBox::create_paintable() const
 | |
| {
 | |
|     return Painting::SVGPathPaintable::create(*this);
 | |
| }
 | |
| 
 | |
| }
 |