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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-painting-respect-dom-order-expected.html

Issue 2417853002: [css-grid] Implementing the grid's first line baseline. (Closed)
Patch Set: Patch rebased. Created 4 years, 1 month 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 <style> 4 <style>
5 .grid { 5 .grid {
6 display: inline-block; 6 display: block;
7 width: 300px; 7 width: 300px;
8 height: 175px; 8 height: 175px;
9 float: left;
9 } 10 }
10 11
11 .item { 12 .item {
12 width: 100px; 13 width: 100px;
13 height: 100px; 14 height: 100px;
14 } 15 }
15 16
16 .grid :nth-child(1) { 17 .grid :nth-child(1) {
17 background-color: #CCC; 18 background-color: #CCC;
18 } 19 }
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 <div class="item bothRowFirstColumn"></div> 144 <div class="item bothRowFirstColumn"></div>
144 <div class="item secondRowFirstColumn"></div> 145 <div class="item secondRowFirstColumn"></div>
145 </div> 146 </div>
146 <div id="grid6" class="grid"> 147 <div id="grid6" class="grid">
147 <div class="item bothRowFirstColumn"></div> 148 <div class="item bothRowFirstColumn"></div>
148 <div class="item secondRowFirstColumn"></div> 149 <div class="item secondRowFirstColumn"></div>
149 <div class="item firstRowFirstColumn"></div> 150 <div class="item firstRowFirstColumn"></div>
150 </div> 151 </div>
151 </body> 152 </body>
152 </html> 153 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698