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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/align-self-change-no-flex-expected.html

Issue 1994373002: Convert some repaint tests into ref tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 .container { 3 .container {
4 width: 200px; 4 width: 200px;
5 height: 300px; 5 height: 300px;
6 background-color: blue; 6 background-color: blue;
7 } 7 }
8 .item { 8 .item {
9 background-color: green; 9 background-color: green;
10 border: solid thin blue; 10 border: solid thin blue;
11 align-self: stretch; 11 align-self: stretch;
12 } 12 }
13 </style> 13 </style>
14 There should be no invalidations when align-self changes on a non-flex container . 14 There should be no invalidations when align-self changes on a non-flex container .
15 <div id="container"> 15 <div id="container">
16 <div class="item"> 16 <div class="item">
17 <div style="height: 100px"></div> 17 <div style="height: 100px"></div>
18 </div> 18 </div>
19 <div class="item"> 19 <div class="item">
20 <div style="height: 150px"></div> 20 <div style="height: 150px"></div>
21 </div> 21 </div>
22 </div> 22 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698