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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/repaint-on-margin-change-expected.html

Issue 2203933002: Replace LayoutObject::skipInvalidationWhenLaidOutChildren() with paintedOutputOfObjectHasNoEffect (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix first line invalidation issue Created 4 years, 4 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 <title>Test for repaint on margin change</title> 4 <title>Test for repaint on margin change</title>
5 <style> 5 <style>
6 .child { 6 .child {
7 height: 20px; 7 height: 20px;
8 width: 20px; 8 width: 20px;
9 background-color: green;
9 } 10 }
10 </style> 11 </style>
11 </head> 12 </head>
12 <body> 13 <body>
13 <div style="display: flex; flex-direction: column; height: 100%"> 14 <div style="display: flex; flex-direction: column; height: 100%; background- color: blue">
14 <div style="flex: 1"></div> 15 <div style="flex: 1"></div>
15 <div class='nested-row-flexbox'> 16 <div class='nested-row-flexbox'>
16 <div class="child"></div> 17 <div class="child"></div>
17 <div class="child" id="child-to-grow" style="margin-left: 40px"></di v> 18 <div class="child" id="child-to-grow" style="margin-left: 40px"></di v>
18 </div> 19 </div>
19 </div> 20 </div>
20 </body> 21 </body>
21 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698