mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:52:44 +00:00 
			
		
		
		
	 e8f04be3ae
			
		
	
	
		e8f04be3ae
		
	
	
	
	
		
			
			`BorderRadiusStyleValue::absolutized` should not try to extract length from LengthPercentage that represents calculated.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
|     <style>
 | |
|         .box {
 | |
|             width: 200px;
 | |
|             height: 200px;
 | |
|             background-color: lightblue;
 | |
|             border-radius: 20px;
 | |
|             border: 2px solid black;
 | |
|         }
 | |
|     </style>
 | |
| </head>
 | |
| <body>
 | |
| 
 | |
| <div class="box"></div>
 | |
| 
 | |
| </body>
 | |
| </html>
 |