Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <!DOCTYPE html>
2 <html>
3 <!--
4 This test checks that setting a background on a ::-moz-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::-moz-placeholder {
11 background-color: blue;
12 }
13 :-moz-any(input, textarea).gradient::-moz-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>