blob: 83ed9834d8f4742d17927e797ed8ae3533f6d132 [file] [log] [blame]
jchaffraix@webkit.orgb9f80b92011-12-15 17:55:47 +00001<!DOCTYPE html>
2<html>
3<head>
4 <style>
5 html { overflow: hidden; }
6 div { height: 100px; width: 100px; }
7 .fixed { position: fixed; }
8 .absolute { position: absolute; }
9 .green { background-color: green; }
10 .red { background-color: red; }
11 .composited { -webkit-transform: translateZ(0); }
12 </style>
13 <script type="text/javascript">
rniwa@webkit.org18904132012-06-11 18:29:22 +000014 if (window.testRunner)
15 testRunner.dumpAsText(true);
jchaffraix@webkit.orgb9f80b92011-12-15 17:55:47 +000016 function moveAbsoluteDiv()
17 {
18 document.getElementById('absoluteDiv').style.top = '700px';
19 }
20 window.addEventListener('load', moveAbsoluteDiv, false);
21 </script>
22</head>
23<body style="height:2000px;">
24 <!-- You should see 1 green rectangle in the output and no red. -->
25 <div style="top: 200px; left: 100px;" class="fixed red"></div>
26 <div id="absoluteDiv" style="top: 500px; left:100px;" class="absolute green composited"></div></div>
27 <script>
28 window.scrollTo(0, 500);
29 </script>
30</body>
31</html>