Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css-grid-layout / vertical-align-do-not-effect-grid-items-expected.html
1 <!DOCTYPE html>
2 <link href='resources/grid.css' rel='stylesheet'>
3
4 <style>
5 .grid {
6   background-color: lightgrey;
7 }
8 </style>
9
10 <p>This test checks that vertical-align should have no effect on a grid item
11 i.e grid items' content should not be shifted by the vertical-align</p>
12
13 <div class='grid'>
14   <!-- grid item: block child -->
15   <div>block</div>
16   <!-- grid item: anonymous block box around inline content -->
17   anonymous item 2
18   <!-- grid item: inline child -->
19   <span>item 3</span>
20 </div>