зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
454 B
HTML
21 строка
454 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="reftest-wait">
|
|
<body>
|
|
<div style="opacity:0.5" id="hi">
|
|
<div style="position:fixed; width:200px; height:200px; background-color:blue"></div>
|
|
</div>
|
|
|
|
<script>
|
|
|
|
function doTest()
|
|
{
|
|
var opacityElement = document.getElementById("hi");
|
|
opacityElement.style.left = '100px';
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
document.addEventListener("MozReftestInvalidate", doTest);
|
|
</script>
|
|
</body>
|
|
</html>
|