gecko-dev/layout/reftests/native-theme/checkbox-dynamic-1.html
Nazım Can Altınova 19a0e93729 Bug 1358710 - Unprefix -moz-linear-gradient / -moz-radial-gradient in unit tests r=dholbert
MozReview-Commit-ID: J2Tn8GKfKIN

--HG--
rename : layout/reftests/css-gradients/aja-linear-2a.html => layout/reftests/css-gradients/aja-linear-2.html
extra : rebase_source : 9c1869bddf2068cf68666e0815b8f9d9424fe76a
2017-04-24 15:54:51 +03:00

40 lines
855 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style>
#checkbox {
position: absolute;
left: 0px;
top: 0px;
background: linear-gradient(to right, white, brown);
}
#toremove {
position: absolute;
left: 0px;
top: 0px;
width: 100px;
height: 0px;
background: black;
}
</style>
</head>
<body>
<div id="checkbox">
<input type="checkbox">
</div>
<div id="toremove">
</div>
</body>
<script type="text/javascript">
var checkBox = document.getElementById("checkbox");
var toRemove = document.getElementById("toremove");
toRemove.style.height = checkBox.offsetHeight / 2 + 0.2 + "px";
function boom()
{
toRemove.remove();
document.documentElement.className = "";
}
window.addEventListener("MozReftestInvalidate", boom);
</script>
</html>