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

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: Incorporated review comments 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, .inline-grid
6 {
7 width: 20em;
8 -webkit-column-count: 2; /* Chrome, Safari, Opera */
9 -moz-column-count: 2; /* Firefox */
10 column-count: 2;
11
12 -webkit-column-gap: 100px; /* Chrome, Safari, Opera */
13 -moz-column-gap: 100px; /* Firefox */
14 column-gap: 100px;
15 }
16 </style>
17
18 <body>
19
20 <div class='grid'>
21 AAAAAAAAAA BBBBBBBBBB
Julien - ping for review 2014/08/21 15:23:48 I would have left the content untouched. The reaso
Sunil Ratnu 2014/08/22 04:57:30 Done.
22 </div>
23
24 <div class='inline-grid'>
25 AAAAAAAAAA BBBBBBBBBB
26 </div>
27
28 </body>
29 </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