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

Side by Side Diff: LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items.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 unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <link href='resources/grid.css' rel='stylesheet'>
4 <style>
5 .grid {
6 background-color:lightgrey;
Julien - ping for review 2014/09/10 22:18:36 Nit: I like to put a space after the semi-colon li
Sunil Ratnu 2014/09/11 12:38:02 I've removed background-color in the latest patch.
Julien - ping for review 2014/09/11 18:24:20 I am fine with some colors to ease visual debuggin
7 }
8
9 #item4 {
Julien - ping for review 2014/09/10 22:18:37 With that declaration, only one grid item is actua
Sunil Ratnu 2014/09/11 12:38:02 Done.
10 vertical-align:20px;
11 }
12 </style>
13
Julien - ping for review 2014/09/10 22:18:36 The test should state what it's testing (aka descr
Sunil Ratnu 2014/09/11 12:38:01 Done.
14 <div class='grid'>
15
16 <!-- grid item: block child -->
17 <div id='item1'>block</div>
18
19 <!-- grid item: floated element; floating is ignored -->
Julien - ping for review 2014/09/10 22:18:36 This seems like it's testing something unrelated t
Sunil Ratnu 2014/09/11 12:38:02 Removed "floating is ignored" but keeping the styl
Julien - ping for review 2014/09/11 18:24:20 What do you call increased test coverage? If float
20 <div id='item2' style='float: left;'>float</div>
21
22 <!-- grid item: anonymous block box around inline content -->
23 anonymous item 3
24
25 <!-- grid item: inline child -->
26 <span id='item4'>item 4</span>
27 </div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/vertical-align-do-not-effect-grid-items-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698