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

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

Issue 2769793002: Implement CSS: scroll-boundary-behavior (Closed)
Patch Set: Merge branch 'master' of https://chromium.googlesource.com/chromium/src into scroll-boundary 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 1592 matching lines...) Expand 10 before | Expand all | Expand 10 after
1603 converter: "convertLengthOrAuto", 1603 converter: "convertLengthOrAuto",
1604 interpolable: true, 1604 interpolable: true,
1605 svg: true, 1605 svg: true,
1606 }, 1606 },
1607 { 1607 {
1608 name: "scroll-behavior", 1608 name: "scroll-behavior",
1609 runtime_flag: "CSSOMSmoothScroll", 1609 runtime_flag: "CSSOMSmoothScroll",
1610 type_name: "ScrollBehavior", 1610 type_name: "ScrollBehavior",
1611 }, 1611 },
1612 { 1612 {
1613 name: "scroll-boundary-behavior",
1614 type_name: "ScrollBoundaryBehavior",
1615 },
1616 {
1613 name: "scroll-snap-type", 1617 name: "scroll-snap-type",
1614 runtime_flag: "CSSScrollSnapPoints", 1618 runtime_flag: "CSSScrollSnapPoints",
1615 type_name: "ScrollSnapType", 1619 type_name: "ScrollSnapType",
1616 }, 1620 },
1617 { 1621 {
1618 name: "scroll-snap-points-x", 1622 name: "scroll-snap-points-x",
1619 converter: "convertSnapPoints", 1623 converter: "convertSnapPoints",
1620 runtime_flag: "CSSScrollSnapPoints", 1624 runtime_flag: "CSSScrollSnapPoints",
1621 }, 1625 },
1622 { 1626 {
(...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after
3156 { 3160 {
3157 name: "-webkit-transition-timing-function", 3161 name: "-webkit-transition-timing-function",
3158 alias_for: "transition-timing-function", 3162 alias_for: "transition-timing-function",
3159 }, 3163 },
3160 { 3164 {
3161 name: "-webkit-user-select", 3165 name: "-webkit-user-select",
3162 alias_for: "user-select", 3166 alias_for: "user-select",
3163 }, 3167 },
3164 ], 3168 ],
3165 } 3169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698