summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/squashing/squash-overflow-hidden-contents.html
blob: ead851999258ee7885dd9a59d0328896ff7b9824 (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
<!DOCTYPE html>
<style type="text/css" media="screen">
  .container {
    display: inline-block;
    width: 200px; 
    height: 200px; 
    overflow: hidden;
    margin: 10px;
    border: 1px solid black;
  }
  
  .inner {
    width: 100%;
    height: 1000px;
    background-color: blue;
  }
  
  .compositing {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    transform: translateZ(0);
  }
</style>
<!-- Go into compositing. -->
<div class="compositing"></div>

<!-- Test repainting when the graphicsLayer offsetFromRenderer changes -->
<!-- You should see one green square, and no red -->
<div class="container" style="position: relative;">
  <div class="inner" style="position: relative;">
  </div>
</div>