summaryrefslogtreecommitdiffstats
path: root/layout/reftests/async-scrolling/offscreen-clipped-blendmode-ref.html
blob: 65660c6ca726132463cf408ac6bfdf14e37142e0 (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
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>Scrolled blend mode</title>

<style>

body {
  margin: 0;
  padding: 100px;
  height: 4000px;
  background: white;
}

#inner-contents {
  border: 1px solid black;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  margin-top: 1400px;
}

</style>

<div id="inner-contents"></div>

<script>

document.documentElement.scrollTop = 1200;

</script>