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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/positioned-list-offset-change-repaint.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> 2 <html>
3 <style> 3 <style>
4 ul { 4 ul {
5 width: 978px; 5 width: 978px;
6 position: absolute; 6 position: absolute;
7 left: -2070px; 7 left: -2070px;
8 } 8 }
9 9
10 li { 10 li {
(...skipping 29 matching lines...) Expand all
40 } 40 }
41 41
42 function repaintTest() { 42 function repaintTest() {
43 var elSlider = document.getElementById("list"); 43 var elSlider = document.getElementById("list");
44 elSlider.style.left = "690px"; 44 elSlider.style.left = "690px";
45 }; 45 };
46 46
47 window.addEventListener("load", setUp, false); 47 window.addEventListener("load", setUp, false);
48 </script> 48 </script>
49 </body></html> 49 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698