summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/352980-1a.html
blob: 414ecea39c4ae646ec54c4853f1a9e4899453056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!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>
  <form>
    <input type="image"><span>This should be green</span>
  </form>
 </body>
</html>