Bug 575870 - Enable the firefox button on xp themed, classic, and aero basic. r=dao...
[mozilla-central.git] / layout / reftests / bugs / 352980-3e.html
blob7482774bfa0735606a9ec4097a5cb5f995571bee
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 span { color: red }
6 :default + span { color: green }
7 span.reverse { color: green }
8 :default + span.reverse { color: red }
9 input { display: none }
10 </style>
11 </head>
12 <body onload="document.getElementById('foo').type = 'image';
13 document.getElementById('bar').type = ''">
14 <form>
15 <input id="bar" type="submit"><span class="reverse">This should be green</span>
16 <input id="foo"><span>This should be green</span>
17 <input type="image"><span class="reverse">This should be green</span>
18 </form>
19 </body>
20 </html>