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

Side by Side Diff: LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html

Issue 493683002: [CSS Grid Layout] Test coverage for column-* properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/column-property-should-not-apply-on-grid-container-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 {
7 -webkit-column-width: 1em;
8 -moz-column-width: 1em;
9 column-width: 1em;
10 }
11 .inline-grid
12 {
13 -webkit-column-width: 1em;
14 -moz-column-width: 1em;
15 column-width: 1em;
Julien - ping for review 2014/08/20 18:14:48 Let's get rid of the implicit assumption that the
Sunil Ratnu 2014/08/21 05:11:17 Thanks Julien for the review. I have made the sugg
16 }
17 </style>
18
19 <body>
20
21 <div class='grid'>
22 AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDD
23 </div>
24
25 <div class='inline-grid'>
26 AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDD
27 </div>
28
29 </body>
30 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698