summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1677568-1-ref.html
blob: 6b80c452070d3f0de3e6a563281571e9c42d35c7 (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
<!DOCTYPE html>
<html>
<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 style="color: rgb(0, 86, 179);" href="#">i vanish on-hover in Firefox</a>
					</div>
				</div>
			</div>
		</div>


</body></html>