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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/table-with-padding-row-invalidation.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 body { 3 body {
4 margin: 0; 4 margin: 0;
5 } 5 }
6 6
7 table { 7 table {
8 border-collapse: collapse; 8 border-collapse: collapse;
9 padding: 4px; 9 padding: 4px;
10 } 10 }
(...skipping 21 matching lines...) Expand all
32 <script> 32 <script>
33 repaintTest = function() { 33 repaintTest = function() {
34 var row = document.getElementsByTagName("tr")[0]; 34 var row = document.getElementsByTagName("tr")[0];
35 row.style.background = "green"; 35 row.style.background = "green";
36 } 36 }
37 37
38 runAfterLayoutAndPaint(function() { 38 runAfterLayoutAndPaint(function() {
39 runRepaintAndPixelTest(); 39 runRepaintAndPixelTest();
40 }); 40 });
41 </script> 41 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698