Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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>