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

Side by Side Diff: LayoutTests/compositing/repaint/newly-composited-on-scroll.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 <title>Reduction</title> 3 <title>Reduction</title>
4 <style> 4 <style>
5 #content-container { 5 #content-container {
6 position:absolute; 6 position:absolute;
7 top:48px; 7 top:48px;
8 bottom:0; 8 bottom:0;
9 left:0; 9 left:0;
10 right:0; 10 right:0;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 right:20px; 50 right:20px;
51 width:80px; 51 width:80px;
52 } 52 }
53 </style> 53 </style>
54 </head> 54 </head>
55 55
56 <script src="../../fast/repaint/resources/repaint.js"></script> 56 <script src="../../fast/repaint/resources/repaint.js"></script>
57 57
58 <script> 58 <script>
59 if (window.testRunner) { 59 if (window.testRunner) {
60 testRunner.dumpAsText(true); 60 testRunner.dumpAsTextWithPixelResults();
61 testRunner.waitUntilDone(); 61 testRunner.waitUntilDone();
62 } 62 }
63 63
64 function repaintTest() { 64 function repaintTest() {
65 if (window.testRunner) 65 if (window.testRunner)
66 testRunner.display(); 66 testRunner.display();
67 67
68 document.getElementById('overflow').scrollTop = 30; 68 document.getElementById('overflow').scrollTop = 30;
69 if (window.testRunner) 69 if (window.testRunner)
70 testRunner.display(); 70 testRunner.display();
(...skipping 16 matching lines...) Expand all
87 87
88 <div style="background-color:purple; width:50px; height:300p x;"></div> 88 <div style="background-color:purple; width:50px; height:300p x;"></div>
89 <br/> 89 <br/>
90 <div style="width:500px; height:50px; background-color:green ;"></div> 90 <div style="width:500px; height:50px; background-color:green ;"></div>
91 </div> 91 </div>
92 </div> 92 </div>
93 </div> 93 </div>
94 </div> 94 </div>
95 </body> 95 </body>
96 </html> 96 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698