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