| Index: LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items-expected.html
|
| diff --git a/LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items-expected.html b/LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4c34038ff771983b386336eb8418152df6d76bb2
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items-expected.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<link href='resources/grid.css' rel='stylesheet'>
|
| +<style>
|
| +.grid {
|
| + background-color:lightgrey;
|
| +}
|
| +</style>
|
| +
|
| +<div class='grid'>
|
| +
|
| + <!-- grid item: block child -->
|
| + <div id='item1'>block</div>
|
| +
|
| + <!-- grid item: floated element; floating is ignored -->
|
| + <div id='item2' style='float: left;'>float</div>
|
| +
|
| + <!-- grid item: anonymous block box around inline content -->
|
| + anonymous item 3
|
| +
|
| + <!-- grid item: inline child -->
|
| + <span id='item4'>item 4</span>
|
| +</div>
|
|
|