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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSProperties.json5

Issue 2672693002: Moved display property to be generated in ComputedStyleBase. (Closed)
Patch Set: Rebase Created 3 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
1 { 1 {
2 // This file specifies all the CSS properties we support and the necessary 2 // This file specifies all the CSS properties we support and the necessary
3 // information for our code generation. The various supported arguments 3 // information for our code generation. The various supported arguments
4 // are described below with example usage 4 // are described below with example usage
5 5
6 parameters: { 6 parameters: {
7 // - alias_for: "other-property" 7 // - alias_for: "other-property"
8 // Properties specifying alias_for should be virtually identical to the 8 // Properties specifying alias_for should be virtually identical to the
9 // properties they alias. Minor parsing differences are allowed as long as 9 // properties they alias. Minor parsing differences are allowed as long as
10 // the CSSValues created are of the same format of the aliased property. 10 // the CSSValues created are of the same format of the aliased property.
(...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 converter: "convertLength", 947 converter: "convertLength",
948 interpolable: true, 948 interpolable: true,
949 svg: true, 949 svg: true,
950 }, 950 },
951 { 951 {
952 name: "d", 952 name: "d",
953 converter: "convertPathOrNone", 953 converter: "convertPathOrNone",
954 interpolable: true, 954 interpolable: true,
955 svg: true, 955 svg: true,
956 }, 956 },
957 "display", 957 {
958 name: "display",
959 initial_keyword: "inline",
960 field_template: 'keyword',
961 keywords: [
962 "inline", "block", "list-item", "inline-block", "table", "inline-table", "table-row-group", "table-header-group",
963 "table-footer-group", "table-row", "table-column-group", "table-column", "table-cell", "table-caption", "-webkit-box",
964 "-webkit-inline-box", "flex", "inline-flex", "grid", "inline-grid", "con tents", "flow-root", "none",
965 ],
966 },
958 { 967 {
959 name: "dominant-baseline", 968 name: "dominant-baseline",
960 inherited: true, 969 inherited: true,
961 svg: true, 970 svg: true,
962 }, 971 },
963 { 972 {
964 name: "empty-cells", 973 name: "empty-cells",
965 independent: true, 974 independent: true,
966 inherited: true, 975 inherited: true,
967 initial_keyword: "show", 976 initial_keyword: "show",
(...skipping 2188 matching lines...) Expand 10 before | Expand all | Expand 10 after
3156 { 3165 {
3157 name: "-webkit-transition-timing-function", 3166 name: "-webkit-transition-timing-function",
3158 alias_for: "transition-timing-function", 3167 alias_for: "transition-timing-function",
3159 }, 3168 },
3160 { 3169 {
3161 name: "-webkit-user-select", 3170 name: "-webkit-user-select",
3162 alias_for: "user-select", 3171 alias_for: "user-select",
3163 }, 3172 },
3164 ], 3173 ],
3165 } 3174 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698