| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 body { | 4 body { |
| 5 direction: rtl; | 5 direction: rtl; |
| 6 overflow: hidden; | 6 overflow: hidden; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #indicator { | 9 #indicator { |
| 10 position: absolute; | 10 position: absolute; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 position: absolute; | 29 position: absolute; |
| 30 top: 10000px; | 30 top: 10000px; |
| 31 left: 0px; | 31 left: 0px; |
| 32 } | 32 } |
| 33 </style> | 33 </style> |
| 34 <script> | 34 <script> |
| 35 function doTest() { | 35 function doTest() { |
| 36 if (window.testRunner) { | 36 if (window.testRunner) { |
| 37 if (top == self) | 37 if (top == self) |
| 38 document.getElementById('layertree').innerText = window.internal
s.layerTreeAsText(document); | 38 document.getElementById('layertree').innerText = window.internal
s.layerTreeAsText(document); |
| 39 testRunner.dumpAsText(true); | 39 testRunner.dumpAsTextWithPixelResults(); |
| 40 } | 40 } |
| 41 } | 41 } |
| 42 window.addEventListener('load', doTest, false); | 42 window.addEventListener('load', doTest, false); |
| 43 </script> | 43 </script> |
| 44 <body> | 44 <body> |
| 45 <div id="indicator"></div> | 45 <div id="indicator"></div> |
| 46 <div id="layer"></div> | 46 <div id="layer"></div> |
| 47 | 47 |
| 48 <pre id="layertree"></pre> | 48 <pre id="layertree"></pre> |
| 49 </body> | 49 </body> |
| 50 </html> | 50 </html> |
| OLD | NEW |