summaryrefslogtreecommitdiffstats
path: root/gfx/tests/reftest/1765862.html
blob: 2f4546724f03eccd266f340ae743eb616a5613f2 (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
<!DOCTYPE html>
<html>
	<head>
		<style>
			.site-header {
				position: relative;
				z-index: 7;
			}
			.dropnav {
				visibility: hidden;
			}
			.dropnav:after {
				-webkit-backdrop-filter:blur(5px);
				backdrop-filter:blur(5px);
				content:"";
				height:calc(100vh - 70px);
				position:fixed;
				width:100%;
			}
		</style>
	</head>
	<body>
		<header class="site-header">
			<div class="dropnav">
				<span>App</span>
			</div>
		</header>
		<div style="position: relative; top: 100px; left: 100px; width: 200px; height: 200px; background: blue;"></div>
	</body>
</html>