summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/geometry/fixed-position-composited-page-scale-scroll.html
blob: 6618259bfb0168b2c9244f4d946bf5e844238e6d (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
<!DOCTYPE html>
<html>
<head>
<style>
.fixed-no-z-index {
  position: absolute;
  left: 10px;
}
.fixed-with-z-index {
  position: fixed;
  z-index: 1;
  left: 10px;
  transform:translateZ(0);
}
</style>
<script>
  if (window.internals && window.eventSender) {
    window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
    window.internals.setPageScaleFactor(2);
  }
  function test() {
    window.scrollTo(100,100);
    if (window.testRunner)
      testRunner.dumpAsText();
  }
</script>
</head>
<body onload="test();" style="width:2000px;height:2000px;">
<div class="fixed-no-z-index">This test should not hit an assertion in LayoutGeometryMap in debug builds</div><br>
<div class="fixed-with-z-index">This test should not hit an assertion in LayoutGeometryMap in debug builds</div>
</body>
</html>