summaryrefslogtreecommitdiffstats
path: root/layout/reftests/async-scrolling/opaque-fractional-displayport-1.html
blob: 8a73a7f3097f89b9b96371b251d6d1455cdb3ee3 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en" reftest-async-scroll>
<meta charset="utf-8">
<title>Make sure the scrolled layer is opaque even if the scrolled area is fractional</title>

<style>

body {
  margin: 0;
}

.scrollbox {
  margin: 50px;
  width: 200px;
  height: 200px;
  overflow: auto;

  /* Make the background "non-uniform" so that the scrolled layer does not
   * pull up a background color. */
  background: linear-gradient(to bottom, white, transparent);
}

.scrolled-contents {
  height: 300.2px;
  background-color: lime;
  box-sizing: border-box;
}

.transparent-overlap-of-fractional-edge {
  margin: 0 20px;
  height: 40px;
  /* This element has a box-shadow that overlaps the bottom of the scrolled
   * area. Box shadows do not expand the scrollable area. */
  box-shadow: 0 280px rgba(0, 0, 255, 0.5);
}

</style>

<body>

<div class="scrollbox"
     reftest-displayport-x="0" reftest-displayport-y="0"
     reftest-displayport-w="200" reftest-displayport-h="300.2"
     reftest-async-scroll-x="0" reftest-async-scroll-y="0">
  <div class="scrolled-contents">
    <div class="transparent-overlap-of-fractional-edge reftest-opaque-layer">
      <!-- This element has the magic "reftest-opaque-layer" class which
           constitutes the actual test here. -->
    </div>
  </div>
</div>