mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:12:44 +00:00 
			
		
		
		
	 7e2308d290
			
		
	
	
		7e2308d290
		
	
	
	
	
		
			
			Spec defines `[LegacyNullToEmptyString]` on `value` argument of `setProperty` but since `internal_set` calls `setProperty` directly instead of using IDL generated binding, we need to make sure that null is treated as empty string. Fixes items grid loading on https://d.rsms.me/stuff/
		
			
				
	
	
		
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			266 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			266 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html><style>
 | |
| #box {
 | |
|     width: 100px;
 | |
|     height: 100px;
 | |
|     background-color: magenta;
 | |
| }
 | |
| </style><body><div id="box"></div></body><script>
 | |
| document.getElementById("box").style.display = "none";
 | |
| document.getElementById("box").style.display = null;</script> |