mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	 4011a107a4
			
		
	
	
		4011a107a4
		
	
	
	
	
		
			
			This patch implements "Overflow Viewport Propagation" from CSS-OVERFLOW. It fixes an issue where many websites were not scrollable because they had `overflow: scroll` on the body element and we didn't propagate it.
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			152 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			152 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html><style>
 | |
| html {
 | |
|     overflow: visible;
 | |
| }
 | |
| body {
 | |
|     overflow: scroll;
 | |
| }
 | |
| div {
 | |
|     width: 100px;
 | |
|     height: 2000px;
 | |
| }
 | |
| </style><body><div>
 |