Chromium Code Reviews

Side by Side Diff: LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items-expected.html

Issue 543493004: New Test for 'vertical-align has no effect on a grid item' (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <link href='resources/grid.css' rel='stylesheet'>
4 <style>
5 .grid {
6 background-color:lightgrey;
7 }
8 </style>
9
10 <div class='grid'>
11
12 <!-- grid item: block child -->
13 <div id='item1'>block</div>
14
15 <!-- grid item: floated element; floating is ignored -->
16 <div id='item2' style='float: left;'>float</div>
17
18 <!-- grid item: anonymous block box around inline content -->
19 anonymous item 3
20
21 <!-- grid item: inline child -->
22 <span id='item4'>item 4</span>
23 </div>
OLDNEW

Powered by Google App Engine