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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/repaint-on-margin-change-expected.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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Test for repaint on margin change</title>
5 <style>
6 .child {
7 height: 20px;
8 width: 20px;
9 background-color: green;
10 }
11 </style>
12 </head>
13 <body>
14 <div style="display: flex; flex-direction: column; height: 100%; background- color: blue">
15 <div style="flex: 1"></div>
16 <div class='nested-row-flexbox'>
17 <div class="child"></div>
18 <div class="child" id="child-to-grow" style="margin-left: 40px"></di v>
19 </div>
20 </div>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698