mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:32:44 +00:00 
			
		
		
		
	 7bc5949e35
			
		
	
	
		7bc5949e35
		
	
	
	
	
		
			
			This matches if the element has a placeholder, and that placeholder is currently visible. This applies to `<input>` and `<textarea>` elements, but our `<textarea>` is very limited so does not support placeholders.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			230 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			230 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
| :placeholder-shown {
 | |
|     background-color: yellow;
 | |
| }
 | |
| </style>
 | |
| <input type="text" placeholder="hi">
 | |
| <input type="text" placeholder="hi" value="I like turtles">
 | |
| <input type="text">
 | |
| <input type="text" value="I like turtles">
 |