summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/315920-18e.html
blob: f1b9dc589e31346e27d00f769a48fb21abb7d85e (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}
      img[src*="solidblue"]:not(:-moz-broken) + label {color: green}
      img { display: none; }
    </style>
  </head>
  <body onload='var i1 = document.getElementById("ffximage");
                i1.onload =
                  function() { document.documentElement.className = ""; };
                i1.setAttribute("src", "solidblue.png");'>
    <img src="solidblue.png">
    <img src="no-such-scheme:nothing" id="ffximage"/>
    <label for="ffximage">Text should be green</label>
  </body>
</html>