blob: 6852f2c60a6862d199de6c93e809645f821d5079 [file] [log] [blame]
simon.fraser@apple.com1df8de92012-10-25 00:50:02 +00001<!DOCTYPE html>
2
3<html>
4<head>
5 <style>
6 body {
7 height: 5000px;
8 }
9 </style>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13
14 function doTest()
15 {
16 window.scrollTo(0, 5000);
17 if (window.internals) {
18 document.getElementById('layers').innerText = internals.layerTreeAsText(document,
19 internals.LAYER_TREE_INCLUDES_VISIBLE_RECTS | internals.LAYER_TREE_INCLUDES_TILE_CACHES);
20 }
21 }
22 window.addEventListener('load', doTest, false);
23 </script>
24</head>
25<body>
26<pre id="layers">Layer tree goes here</p>
27</body>
28</html>