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

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: Cleanup 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 1599 matching lines...) Expand 10 before | Expand all | Expand 10 after
1610 inherited: true, 1610 inherited: true,
1611 svg: true, 1611 svg: true,
1612 }, 1612 },
1613 { 1613 {
1614 name: "size", 1614 name: "size",
1615 api_class: true, 1615 api_class: true,
1616 api_methods: ["parseSingleValue"], 1616 api_methods: ["parseSingleValue"],
1617 custom_all: true, 1617 custom_all: true,
1618 }, 1618 },
1619 { 1619 {
1620 name: "snap-height", 1620 name: "line-height-step",
meade_UTC10 2017/03/06 02:40:20 This should be in alphabetical order. Would you mi
kojii 2017/03/06 03:05:55 Done.
1621 api_class: true, 1621 api_class: true,
1622 api_methods: ["parseSingleValue"], 1622 api_methods: ["parseSingleValue"],
1623 custom_all: true, 1623 converter: "convertComputedLength<uint8_t>",
1624 inherited: true, 1624 inherited: true,
1625 runtime_flag: "CSSSnapSize", 1625 runtime_flag: "CSSSnapSize",
1626 }, 1626 },
1627 { 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",
(...skipping 1457 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