mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:42:44 +00:00 
			
		
		
		
	 4e383bdac1
			
		
	
	
		4e383bdac1
		
	
	
	
	
		
			
			Previously, a select element's text would initially be empty if the `selected` property was set on one of its options.
		
			
				
	
	
		
			5 lines
		
	
	
	
		
			115 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
	
		
			115 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <select>
 | |
|     <option>Option 1</option>
 | |
|     <option selected="selected">Option 2</option>
 | |
| </select>
 |