summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/315920-18g.html
blob: b98e60ace9b3c7fee63a6d3e0d3f4fb8ebdb3540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <style>
      label {color: red}
      object[data*="solidblue"]:not(:-moz-broken) + label {color: green}
      object, img { display: none }
    </style>
  </head>
  <body onload='var i1 = document.getElementById("ffximage");
                i1.onload =
                  function() { document.documentElement.className = ""; };
                i1.setAttribute("data", "solidblue.png");'>
    <img src="solidblue.png">
    <object type="image/png" data="no-such-scheme:nothing" id="ffximage"></object>
    <label for="ffximage">Text should be green</label>
  </body>
</html>