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

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

Issue 2211283003: Revert of Replace LayoutObject::skipInvalidationWhenLaidOutChildren() with painted... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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;
10 } 9 }
11 </style> 10 </style>
12 </head> 11 </head>
13 <body> 12 <body>
14 <div style="display: flex; flex-direction: column; height: 100%; background- color: blue"> 13 <div style="display: flex; flex-direction: column; height: 100%">
15 <div style="flex: 1"></div> 14 <div style="flex: 1"></div>
16 <div class='nested-row-flexbox'> 15 <div class='nested-row-flexbox'>
17 <div class="child"></div> 16 <div class="child"></div>
18 <div class="child" id="child-to-grow" style="margin-left: 40px"></di v> 17 <div class="child" id="child-to-grow" style="margin-left: 40px"></di v>
19 </div> 18 </div>
20 </div> 19 </div>
21 </body> 20 </body>
22 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698