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

Side by Side Diff: LayoutTests/compositing/rtl/rtl-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 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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698