simon.fraser@apple.com | 1df8de9 | 2012-10-25 00:50:02 +0000 | [diff] [blame] | 1 | <!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> |