зеркало из https://github.com/mozilla/gecko-dev.git
30 строки
649 B
HTML
30 строки
649 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0px;
|
|
}
|
|
div {
|
|
width:100px;
|
|
height:100px;
|
|
display: inline-block;
|
|
position:absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="position:fixed;" class="reftest-display-list">
|
|
<div style="background-color:green;" class="reftest-no-display-list"></div>
|
|
</div>
|
|
<div id="second" style="background-color:red; top: 110px;"></div>
|
|
</body>
|
|
<script>
|
|
function doTest() {
|
|
document.getElementById("second").style.backgroundColor = "green";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
window.addEventListener("MozReftestInvalidate", doTest);
|
|
</script>
|
|
</html>
|