summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/352980-3c.html
blob: 81f39b5c64281c38cbc86305b04f3b190f21941a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
 <head>
  <style>
   span { color: red }
   :default + span { color: green }
   span.reverse { color: green }
   :default + span.reverse { color: red }
   input { display: none }
  </style>
 </head>
 <body onload="document.getElementById('foo').type = 'submit';
               document.getElementById('bar').type = ''">
  <form>
    <input id="bar" type="image"><span class="reverse">This should be green</span>
    <input id="foo"><span>This should be green</span>
    <input type="submit"><span class="reverse">This should be green</span>
  </form>
 </body>
</html>