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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/scrollbar-damage-and-full-viewport-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 <style> 2 <style>
3 /* To ensure full viewport repaint when viewport is resized. */ 3 /* To ensure full viewport repaint when viewport is resized. */
4 body { 4 body {
5 background-image: linear-gradient(red, blue); 5 background-image: linear-gradient(red, blue);
6 background-attachment: fixed; 6 background-attachment: fixed;
7 margin: 0; 7 margin: 0;
8 } 8 }
9 #container { 9 #container {
10 width: 200px; 10 width: 200px;
(...skipping 24 matching lines...) Expand all
35 runRepaintAndPixelTest(); 35 runRepaintAndPixelTest();
36 }; 36 };
37 </script> 37 </script>
38 <div style="height: 50px"> 38 <div style="height: 50px">
39 Tests if scrollbar damage flag is cleared during a full viewport invalidation. 39 Tests if scrollbar damage flag is cleared during a full viewport invalidation.
40 Passes if the result repaint rects contain the horizontal scrollbar but not the vertical scrollbar. 40 Passes if the result repaint rects contain the horizontal scrollbar but not the vertical scrollbar.
41 </div> 41 </div>
42 <div id="container"> 42 <div id="container">
43 <div id="child"></div> 43 <div id="child"></div>
44 </div> 44 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698