tenfourfox/layout/reftests/bugs/315920-18f.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
615 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style>
label {color: red}
input[src*="solidblue"]:not(:-moz-broken) + label {color: green}
input, 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">
<input type="image" src="no-such-scheme:nothing" id="ffximage"/>
<label for="ffximage">Text should be green</label>
</body>
</html>