Files
tubestation/layout/reftests/async-scrolling/position-fixed-inside-sticky-1-ref.html
Botond Ballo ff22a9e4cd Bug 1214151 - Reftest for the common case. r=mstange
MozReview-Commit-ID: 5zeuFwsx0l6
2016-06-29 18:23:28 -04:00

21 lines
273 B
HTML

<!DOCTYPE html>
<html>
<style>
body {
height: 4000px;
margin: 0;
overflow: hidden;
}
#fixed {
position: fixed;
top: 50px;
left: 50px;
width: 100px;
height: 100px;
box-sizing: border-box;
border: 1px solid blue;
}
</style>
<div id="fixed"></div>
</html>