summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/columns/geometry-map-paginated-assert.html
blob: 901771a0ceb04965198e70b53657eec0bda5ef4a (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
<html style="overflow: -webkit-paged-x;">
<head>
    <script>
        if (window.testRunner)
          testRunner.dumpAsText();
    </script>
    <style>
    .spacer {
      height: 350px;
      width: 100%;
      margin: 10px;
      background-color: silver;
    }

    .box {
      height: 100px;
      width: 100px;
      margin: 10px;
      background-color: blue;
    }
    .composited {
      transform: translateZ(0);
    }
    </style>
</head>
<body>

  <p>This test should not assert.</p>
  <div class="spacer"></div>
  <div class="spacer"></div>
  <div class="composited box"></div>


</body>
</html>