Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: LayoutTests/compositing/rtl/rtl-iframe-relative.html

Issue 24438004: Rename testRunner.dumpAsText(true) to testRunner.dumpAsTextWithPixelResults() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more tests Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698