summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/315920-26.html
blob: 161e5fcac2113aabf723975659dd72157b34cade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <style>
      span {color: red}
      #one:checked + span {color: green}
      #two:default + span {color: green}
    </style>
  </head>

  <body onload='document.getElementById("one").setAttribute("type", "checkbox");
                document.getElementById("two").setAttribute("type", "checkbox");
                document.documentElement.removeAttribute("class");'>
    <div>
      <input type="text" id="one" checked="checked"/>
      <span>Should be no red </span>
    </div>
    <div>
      <input type="text" id="two" checked="checked"/>
      <span>Should be no red </span>
    </div>
  </body>
</html>