summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/reflections/nested-reflection-transition.html
blob: c51d4de853f2ae0fd2da78cc08ebed606a52d427 (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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <style>
  .outer {
    width: 120px;
    height: 230px;
    margin: 20px;
    border: 1px solid black;
    -webkit-box-reflect: right 10px;
  }
  
  .reflected {
    width: 100px;
    height: 100px;
    -webkit-box-reflect: below 10px;
  }

  #inner {
    margin: 10px;
    width: 100px;
    height: 100px;
    background-color: green;
    text-align: center;
    font-size: 50pt;
    -webkit-transition: -webkit-transform 1s linear;
  }
  
  .rotated {
    transform: rotate(90deg);
  }
  .composited {
    transform: translateZ(0);
  }
  </style>
  <script src="../../animations/resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script>
  <script type="text/javascript" charset="utf-8">

    const expectedValues = [
      // [time, element-id, property, expected-value, tolerance]
      [0.5, 'inner', '-webkit-transform.1', 0.76, 0.1],
    ];

    function setupTest()
    {
      document.getElementById('inner').className = 'rotated';
    }
    runTransitionTest(expectedValues, setupTest, undefined, true /* pixel test */);
  </script>
  </head>
<body>
  <div class="outer composited">
    <div class="reflected composited">
      <div id="inner">
        1
      </div>
    </div>
  </div>
  <div id="result"></div>
</body>
</html>