зеркало из https://github.com/mozilla/gecko-dev.git
35 строки
553 B
HTML
35 строки
553 B
HTML
<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>
|