summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/315920-22-ref.html
blob: e06aa6223e3b88f9cfec85bb01975a163491dd51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
  <head>
    <style>
      label {color: green}
    </style>
  </head>
  <body>
    <div>
      <input id="one" disabled="disabled"/>
      <label for="one">Should be no red</label>
    </div>
    <div>
      <input id="two"/>
      <label for="two">Should be no red</label>
    </div>
  </body>
</html>