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

Side by Side Diff: LayoutTests/fast/css-intrinsic-dimensions/resources/height-keyword-classes.css

Issue 13674002: Support intrinsic values for height, min-height and max-height (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: CSS table tests Created 7 years, 8 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
OLDNEW
(Empty)
1 /* In the current spec for heights, min-content, max-content and fit-content are
2 * equivalent.
3 * fill-available is different and similar to widths.
4 */
5
6 .min-content {
7 height: -webkit-min-content;
8 height: -moz-min-content;
9 height: min-content;
10 }
11
12 .max-content {
13 height: -webkit-max-content;
14 height: -moz-max-content;
15 height: max-content;
16 }
17
18 .fill-available {
19 height: -webkit-fill-available;
20 /* Firefox is missing the fill- prefix because they followed an older spec * /
21 height: -moz-available;
22 height: fill-available;
23 }
24
25 .fit-content {
26 height: -webkit-fit-content;
27 height: -moz-fit-content;
28 height: fit-content;
29 }
30
31 .max-height-min-content {
32 max-height: -webkit-min-content;
33 max-height: -moz-min-content;
34 max-height: min-content;
35 }
36
37 .max-height-max-content {
38 max-height: -webkit-max-content;
39 max-height: -moz-max-content;
40 max-height: max-content;
41 }
42
43 .max-height-fill-available {
44 max-height: -webkit-fill-available;
45 max-height: -moz-available;
46 max-height: fill-available;
47 }
48
49 .max-height-fit-content {
50 max-height: -webkit-fit-content;
51 max-height: -moz-fit-content;
52 max-height: fit-content;
53 }
54
55 .min-height-min-content {
56 min-height: -webkit-min-content;
57 min-height: -moz-min-content;
58 min-height: min-content;
59 }
60
61 .min-height-max-content {
62 min-height: -webkit-max-content;
63 min-height: -moz-max-content;
64 min-height: max-content;
65 }
66
67 .min-height-fill-available {
68 min-height: -webkit-fill-available;
69 min-height: -moz-available;
70 min-height: fill-available;
71 }
72
73 .min-height-fit-content {
74 min-height: -webkit-fit-content;
75 min-height: -moz-fit-content;
76 min-height: fit-content;
77 }
OLDNEW
« no previous file with comments | « LayoutTests/fast/css-intrinsic-dimensions/height-tables-expected.html ('k') | Source/WebCore/css/CSSParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698