mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:02:44 +00:00 
			
		
		
		
	 1f69e9cddf
			
		
	
	
		1f69e9cddf
		
	
	
	
	
		
			
			This fixes an issue where the value would be out of sync with reality in anonymous wrapper block boxes, since we forgot to compute m_visible after assigning the computed values to them. Fixes #21106
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			234 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			234 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <link rel="match" href="reference/anonymous-wrapper-css-visibility-ref.html" />
 | |
| <style>
 | |
| body {
 | |
|   visibility: hidden;
 | |
| }
 | |
| body:after {
 | |
|   visibility: visible;
 | |
|   display: block;
 | |
|   content: "Visible";
 | |
| }
 | |
| </style><body>Hidden
 |