css-background.html (757B)
1 <!DOCTYPE html> 2 <html> 3 <!-- 4 This test checks that setting a background on a ::placeholder works. 5 However, given that it is not possible to do an actualy equality check, we 6 have te check that setting a background doesn't produce the same result 7 as not setting it. 8 --> 9 <style> 10 :-moz-any(input, textarea).color::placeholder { 11 background-color: blue; 12 } 13 :-moz-any(input, textarea).gradient::placeholder { 14 background: linear-gradient(to right, blue, white, red); 15 } 16 </style> 17 <body> 18 <input class="color" placeholder='foo'> 19 <textarea class="color" placeholder='foo'></textarea> 20 <input class="gradient" placeholder='foo'> 21 <textarea class="gradient" placeholder='foo'></textarea> 22 </body> 23 </html>