first-line-and-placeholder.html (596B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>Interaction of ::first-line and ::placeholder</title> 4 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#placeholder-pseudo"> 5 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo"> 6 <link rel="match" href="first-line-and-placeholder-ref.html"> 7 <meta name="assert" content="Tests ::placeholder interaction with ::first-line pseudo element"> 8 <style> 9 input::first-line { 10 background-color: initial; 11 } 12 13 input::placeholder { 14 color: red; 15 } 16 </style> 17 <form> 18 <input placeholder="this text should be red"> 19 </form>