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

Side by Side Diff: LayoutTests/fast/repaint/table-overflow-hidden-in-overflow-hidden-scrolled.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 <html> 2 <html>
3 <head> 3 <head>
4 <link rel="stylesheet" href="resources/default.css"> 4 <link rel="stylesheet" href="resources/default.css">
5 <style> 5 <style>
6 #outer { 6 #outer {
7 position: relative; 7 position: relative;
8 overflow: hidden; 8 overflow: hidden;
9 height: 200px; 9 height: 200px;
10 } 10 }
(...skipping 14 matching lines...) Expand all
25 .red { 25 .red {
26 background-color: red; 26 background-color: red;
27 } 27 }
28 28
29 .green { 29 .green {
30 background-color: green; 30 background-color: green;
31 } 31 }
32 </style> 32 </style>
33 <script> 33 <script>
34 if (window.testRunner) { 34 if (window.testRunner) {
35 testRunner.dumpAsText(true); 35 testRunner.dumpAsTextWithPixelResults();
36 testRunner.waitUntilDone(); 36 testRunner.waitUntilDone();
37 } 37 }
38 38
39 function repaintTest() 39 function repaintTest()
40 { 40 {
41 window.location.hash = "#ucp"; 41 window.location.hash = "#ucp";
42 if (window.testRunner) 42 if (window.testRunner)
43 testRunner.notifyDone(); 43 testRunner.notifyDone();
44 } 44 }
45 45
(...skipping 15 matching lines...) Expand all
61 <div id="outer"> 61 <div id="outer">
62 <section> 62 <section>
63 <div class="innerWrapper"> 63 <div class="innerWrapper">
64 <div class="red"></div> 64 <div class="red"></div>
65 <table id="ucp" class="green"><td style="height: 190px"></td></t able> 65 <table id="ucp" class="green"><td style="height: 190px"></td></t able>
66 </div> 66 </div>
67 </section> 67 </section>
68 </div> 68 </div>
69 </body> 69 </body>
70 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698