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

Side by Side Diff: LayoutTests/compositing/repaint/requires-backing-repaint.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, 3 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 .bar { 6 .bar {
7 width: 200px; 7 width: 200px;
8 height: 50px; 8 height: 50px;
9 margin-left: 50px; 9 margin-left: 50px;
10 background-color: gray; 10 background-color: gray;
(...skipping 15 matching lines...) Expand all
26 position: relative; 26 position: relative;
27 height: 50px; 27 height: 50px;
28 width: 100%; 28 width: 100%;
29 border: 2px solid black; 29 border: 2px solid black;
30 margin: 2px; 30 margin: 2px;
31 } 31 }
32 32
33 </style> 33 </style>
34 <script> 34 <script>
35 if (window.testRunner) { 35 if (window.testRunner) {
36 testRunner.dumpAsText(true); 36 testRunner.dumpAsTextWithPixelResults();
37 testRunner.waitUntilDone(); 37 testRunner.waitUntilDone();
38 } 38 }
39 39
40 function doTest() 40 function doTest()
41 { 41 {
42 var overflow = document.getElementById('overflow'); 42 var overflow = document.getElementById('overflow');
43 overflow.scrollTop = 50; 43 overflow.scrollTop = 50;
44 44
45 if (window.testRunner) 45 if (window.testRunner)
46 testRunner.display(); 46 testRunner.display();
(...skipping 13 matching lines...) Expand all
60 60
61 <div id="overflow"> 61 <div id="overflow">
62 <div></div> 62 <div></div>
63 <div></div> 63 <div></div>
64 <div></div> 64 <div></div>
65 <div></div> 65 <div></div>
66 <div></div> 66 <div></div>
67 </div> 67 </div>
68 </body> 68 </body>
69 </html> 69 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698