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

Unified 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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698