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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/vertical-overflow-parent.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 <html><head> 2 <html><head>
3 <style> 3 <style>
4 .container { 4 .container {
5 margin: 20px; 5 margin: 20px;
6 width: 300px; 6 width: 300px;
7 height: 200px; 7 height: 200px;
8 border: 1px solid black; 8 border: 1px solid black;
9 overflow: scroll; 9 overflow: scroll;
10 } 10 }
(...skipping 27 matching lines...) Expand all
38 var target = document.getElementsByClassName("target")[0]; 38 var target = document.getElementsByClassName("target")[0];
39 target.style.visibility = "visible"; 39 target.style.visibility = "visible";
40 }; 40 };
41 var container = document.getElementsByClassName("container")[0]; 41 var container = document.getElementsByClassName("container")[0];
42 runAfterLayoutAndPaint(function() { 42 runAfterLayoutAndPaint(function() {
43 container.scrollLeft = 0; 43 container.scrollLeft = 0;
44 runRepaintAndPixelTest(); 44 runRepaintAndPixelTest();
45 }); 45 });
46 </script> 46 </script>
47 </body></html> 47 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698