Bug 575870 - Enable the firefox button on xp themed, classic, and aero basic. r=dao...
[mozilla-central.git] / layout / reftests / bugs / 352980-1i.html
blobe57fd96a414b2e9e6d4bc25b18f0413381c3ac82
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="var foo = document.getElementById('foo');
13 var bar = document.createElement('input');
14 bar.type = 'submit';
15 foo.appendChild(bar)">
16 <form id="foo">
17 <input type="image"><span>This should be green</span>
18 </form>
19 </body>
20 </html>