mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:12:45 +00:00 
			
		
		
		
	 7ddacef3b5
			
		
	
	
		7ddacef3b5
		
	
	
	
	
		
			
			Before this change `apply_clip_overflow_rect` might crash trying to access `clip_rect` that does not have value because we currently support calculation of visible rectangle when `overflow: hidden` is applied for both axis.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
|     .box {
 | |
|         border: 1px solid black;
 | |
|         width: 100px;
 | |
|         height: 100px;
 | |
|         border-radius: 9999px;
 | |
|         overflow-x: hidden;
 | |
|         position: relative;
 | |
|     }
 | |
| </style><div class="box"></div>
 |