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