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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/scroll-relative-table-inside-table-cell.html

Issue 1972273002: Let repaint tests test pixels by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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 table { 6 table {
7 border-spacing: 0px; 7 border-spacing: 0px;
8 background: red; 8 background: red;
9 } 9 }
10 10
11 td { 11 td {
12 padding: 0px; 12 padding: 0px;
13 border: 2px solid green; 13 border: 2px solid green;
14 } 14 }
15 </style> 15 </style>
16 <script src="resources/text-based-repaint.js"></script> 16 <script src="resources/repaint.js"></script>
17 <script> 17 <script>
18 if (window.testRunner) 18 if (window.testRunner)
19 testRunner.dumpAsTextWithPixelResults(); 19 testRunner.dumpAsTextWithPixelResults();
20 20
21 function repaintTest() 21 function repaintTest()
22 { 22 {
23 var cell = document.getElementById("cellToScroll"); 23 var cell = document.getElementById("cellToScroll");
24 cell.scrollLeft = 1200; 24 cell.scrollLeft = 1200;
25 } 25 }
26 window.addEventListener("load", runRepaintTest, false); 26 window.addEventListener("load", runRepaintTest, false);
(...skipping 15 matching lines...) Expand all
42 <div class="absolute green" style="height: 450px; width: 450px; left : 500px; top: 0px"></div> 42 <div class="absolute green" style="height: 450px; width: 450px; left : 500px; top: 0px"></div>
43 </td> 43 </td>
44 </tr> 44 </tr>
45 </table> 45 </table>
46 <script> 46 <script>
47 // Make sure we scroll to the bottom of the page. 47 // Make sure we scroll to the bottom of the page.
48 window.scrollTo(950, 1250); 48 window.scrollTo(950, 1250);
49 </script> 49 </script>
50 </body> 50 </body>
51 </html> 51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698