summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1677568-1.html
blob: e876692b514f763ed5342a320bc94a2f8fe1c68e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!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 Firefox</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>