mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:02:44 +00:00 
			
		
		
		
	 c93d367d95
			
		
	
	
		c93d367d95
		
	
	
	
	
		
			
			Previously, all SVG <text> elements were zero-sized boxes, that were only actually positioned and sized during painting. This led to a number of problems, the most visible of which being that text could not be scaled based on the viewBox. Which this patch, <text> elements get a correctly sized layout box, that can be hit-tested and respects the SVG viewBox. To share code with SVGGeometryElement's the PathData (from the prior commit) has been split into a computed path and computed transforms. The computed path is specific to geometry elements, but the computed transforms are shared between all SVG graphics elements.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			457 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			457 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <svg viewBox="0 0 240 80" xmlns="http://www.w3.org/2000/svg">
 | |
|   <style>
 | |
|     .small {
 | |
|       font: italic 13px sans-serif;
 | |
|     }
 | |
|     .heavy {
 | |
|       font: bold 30px sans-serif;
 | |
|     }
 | |
| 
 | |
|     .Rrrrr {
 | |
|       font: italic 40px serif;
 | |
|       fill: red;
 | |
|     }
 | |
|   </style>
 | |
| 
 | |
|   <text x="20" y="35" class="small">My</text>
 | |
|   <text x="40" y="35" class="heavy">cat</text>
 | |
|   <text x="55" y="55" class="small">is</text>
 | |
|   <text x="65" y="55" class="Rrrrr">Grumpy!</text>
 | |
| </svg>
 |