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

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

Issue 2704343003: Catch up the spec update in CSS Rhythmic Sizing (Closed)
Patch Set: Sorted CSSProperties.json5 alphabetically (meade@'s nit) Created 3 years, 9 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 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 svg: true, 1163 svg: true,
1164 }, 1164 },
1165 { 1165 {
1166 name: "line-height", 1166 name: "line-height",
1167 converter: "convertLineHeight", 1167 converter: "convertLineHeight",
1168 getter: "specifiedLineHeight", 1168 getter: "specifiedLineHeight",
1169 inherited: true, 1169 inherited: true,
1170 interpolable: true, 1170 interpolable: true,
1171 }, 1171 },
1172 { 1172 {
1173 name: "line-height-step",
1174 api_class: true,
1175 api_methods: ["parseSingleValue"],
1176 converter: "convertComputedLength<uint8_t>",
1177 inherited: true,
1178 runtime_flag: "CSSSnapSize",
1179 },
1180 {
1173 name: "list-style-image", 1181 name: "list-style-image",
1174 api_class: "CSSPropertyAPIImage", 1182 api_class: "CSSPropertyAPIImage",
1175 api_methods: ["parseSingleValue"], 1183 api_methods: ["parseSingleValue"],
1176 custom_value: true, 1184 custom_value: true,
1177 inherited: true, 1185 inherited: true,
1178 interpolable: true, 1186 interpolable: true,
1179 typedom_types: ["Image"], 1187 typedom_types: ["Image"],
1180 }, 1188 },
1181 { 1189 {
1182 name: "list-style-position", 1190 name: "list-style-position",
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
1610 inherited: true, 1618 inherited: true,
1611 svg: true, 1619 svg: true,
1612 }, 1620 },
1613 { 1621 {
1614 name: "size", 1622 name: "size",
1615 api_class: true, 1623 api_class: true,
1616 api_methods: ["parseSingleValue"], 1624 api_methods: ["parseSingleValue"],
1617 custom_all: true, 1625 custom_all: true,
1618 }, 1626 },
1619 { 1627 {
1620 name: "snap-height",
1621 api_class: true,
1622 api_methods: ["parseSingleValue"],
1623 custom_all: true,
1624 inherited: true,
1625 runtime_flag: "CSSSnapSize",
1626 },
1627 {
1628 name: "speak", 1628 name: "speak",
1629 inherited: true, 1629 inherited: true,
1630 }, 1630 },
1631 { 1631 {
1632 name: "stop-color", 1632 name: "stop-color",
1633 api_class: "CSSPropertyAPIColor", 1633 api_class: "CSSPropertyAPIColor",
1634 api_methods: ["parseSingleValue"], 1634 api_methods: ["parseSingleValue"],
1635 converter: "convertColor", 1635 converter: "convertColor",
1636 interpolable: true, 1636 interpolable: true,
1637 svg: true, 1637 svg: true,
(...skipping 1453 matching lines...) Expand 10 before | Expand all | Expand 10 after
3091 { 3091 {
3092 name: "-webkit-transition-timing-function", 3092 name: "-webkit-transition-timing-function",
3093 alias_for: "transition-timing-function", 3093 alias_for: "transition-timing-function",
3094 }, 3094 },
3095 { 3095 {
3096 name: "-webkit-user-select", 3096 name: "-webkit-user-select",
3097 alias_for: "user-select", 3097 alias_for: "user-select",
3098 }, 3098 },
3099 ], 3099 ],
3100 } 3100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698