summaryrefslogtreecommitdiffstats
path: root/layout/reftests/async-scrolling/position-fixed-transformed-1.html
blob: 4f9cac419ec929cc4089ff35b2d96e78b287d610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html reftest-async-scroll
	  reftest-async-scroll-x="0"
	  reftest-async-scroll-y="200">
<head>
<style>
.fixedpos {
	transform: translateX(0px);
	position: fixed;
	top: 0;
	width: 100%;
	height: 100px;
	background: red;
}
.filler {
	height: 4000px;
}
</style>
</head>
<body>
<div class="fixedpos"></div>
<div class="filler"></div>
</body>
</html>