Index: LayoutTests/css3/flexbox/vertical-align-do-not-effect-flex-items.html |
diff --git a/LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items.html b/LayoutTests/css3/flexbox/vertical-align-do-not-effect-flex-items.html |
similarity index 50% |
copy from LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items.html |
copy to LayoutTests/css3/flexbox/vertical-align-do-not-effect-flex-items.html |
index 3230a3a9f6b21f238acf9703f7553a2a6a00b3d6..e26054d7a02237a47b90b176958a3cb240ad2a56 100644 |
--- a/LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items.html |
+++ b/LayoutTests/css3/flexbox/vertical-align-do-not-effect-flex-items.html |
@@ -1,7 +1,8 @@ |
<!DOCTYPE html> |
-<link href='resources/grid.css' rel='stylesheet'> |
+<link href='resources/flexbox.css' rel='stylesheet'> |
+ |
<style> |
-.grid { |
+.flexbox { |
background-color: lightgrey; |
} |
#item1 { |
@@ -12,14 +13,14 @@ |
} |
</style> |
-<p>This test checks that vertical-align should have no effect on a grid item |
-i.e grid items' content should not be shifted by the vertical-align</p> |
+<p>This test checks that vertical-align should have no effect on a flex item |
+i.e flex items' content should not be shifted by the vertical-align</p> |
-<div class='grid'> |
- <!-- grid item: block child --> |
+<div class='flexbox'> |
+ <!-- flex item: block child --> |
<div id='item1'>block</div> |
- <!-- grid item: anonymous block box around inline content --> |
+ <!-- flex item: anonymous block box around inline content --> |
anonymous item 2 |
- <!-- grid item: inline child --> |
+ <!-- flex item: inline child --> |
<span id='item3'>item 3</span> |
</div> |