summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-scroll-snap/crashtests/fractional-covering-area-crash.html
blob: 6905b0fd394052d7c26e80857a05c212b1a3e7a4 (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
<!DOCTYPE HTML>
<html>
<style>
  #container {
    scroll-snap-type: both mandatory;
    overflow: overlay;
    position: absolute;
    height: 33554400px;
    width: 33554400px;
  }

  #area {
    scroll-snap-align: end;
    position: absolute;
    left: 33554400px;
    top: -57971.9px;
    width: 0px;
    height: 33554400px;
  }
</style>
<div id="container">
  <div id="area"></div>
</div>

</html>