34 lines
775 B
HTML
34 lines
775 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
a:hover { color: rgb(0, 86, 179); }
|
|
.d-relative { position: relative; }
|
|
.d-inline { display: inline;}
|
|
.d-flex { display: flex; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="d-flex">
|
|
<div>
|
|
<div class="d-inline d-relative">
|
|
<a href="#">
|
|
--
|
|
</a>
|
|
<div style="position: absolute; transform: translate(0px, 160px);">
|
|
<a id="target" href="#">i vanish on-hover in IceCat</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function doTest() {
|
|
var elem = document.getElementById("target");
|
|
elem.style.color = "rgb(0, 86, 179)";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
document.addEventListener("MozReftestInvalidate", doTest);
|
|
</script>
|
|
|
|
</body></html>
|