Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<html class="reftest-wait">
<head>
<style>
div {
width: 100px;
height: 100px;
position:relative;
}
#first {
background-color: red;
z-index: 2;
}
#second {
top: -50px;
background-color: green;
z-index: 1;
}
</style>
<script>
function doTest()
{
document.getElementById("first").style.zIndex = 1;
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
<div id="first"></div>
<div id="second"></div>
</body>
</html>