mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:42:43 +00:00 
			
		
		
		
	 7d26383426
			
		
	
	
		7d26383426
		
	
	
	
	
		
			
			The SVGContext is a leftover from when SVG properties were more ad-hoc. All properties are now (for better or worse) treated as CSS properties (or handled elsewhere). This makes the SVGContext's fill/stroke inheritance handling unnecessary.
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/Layout/SVGGraphicsBox.h>
 | |
| #include <LibWeb/Painting/SVGPaintable.h>
 | |
| 
 | |
| namespace Web::Painting {
 | |
| 
 | |
| class SVGGraphicsPaintable : public SVGPaintable {
 | |
|     JS_CELL(SVGGraphicsPaintable, SVGPaintable);
 | |
| 
 | |
| public:
 | |
|     static JS::NonnullGCPtr<SVGGraphicsPaintable> create(Layout::SVGGraphicsBox const&);
 | |
| 
 | |
|     Layout::SVGGraphicsBox const& layout_box() const;
 | |
| 
 | |
| protected:
 | |
|     SVGGraphicsPaintable(Layout::SVGGraphicsBox const&);
 | |
| };
 | |
| 
 | |
| }
 |