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

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

Issue 2824993002: Implemented CSSPropertyAPI for transform property. (Closed)
Patch Set: fixed if braces 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 1907 matching lines...) Expand 10 before | Expand all | Expand 10 after
1918 }, 1918 },
1919 { 1919 {
1920 name: "touch-action", 1920 name: "touch-action",
1921 api_class: true, 1921 api_class: true,
1922 api_methods: ["parseSingleValue"], 1922 api_methods: ["parseSingleValue"],
1923 converter: "ConvertFlags<TouchAction>", 1923 converter: "ConvertFlags<TouchAction>",
1924 type_name: "TouchAction", 1924 type_name: "TouchAction",
1925 }, 1925 },
1926 { 1926 {
1927 name: "transform", 1927 name: "transform",
1928 api_class: true,
1929 api_methods: ["parseSingleValue"],
1928 converter: "ConvertTransformOperations", 1930 converter: "ConvertTransformOperations",
1929 interpolable: true, 1931 interpolable: true,
1930 keywords: ["none"], 1932 keywords: ["none"],
1931 typedom_types: ["Transform"], 1933 typedom_types: ["Transform"],
1932 }, 1934 },
1933 { 1935 {
1934 name: "transform-box", 1936 name: "transform-box",
1935 field_template: "keyword", 1937 field_template: "keyword",
1936 keywords: ["border-box", "fill-box", "view-box"], 1938 keywords: ["border-box", "fill-box", "view-box"],
1937 default_value: "border-box", 1939 default_value: "border-box",
(...skipping 1253 matching lines...) Expand 10 before | Expand all | Expand 10 after
3191 { 3193 {
3192 name: "-webkit-transition-timing-function", 3194 name: "-webkit-transition-timing-function",
3193 alias_for: "transition-timing-function", 3195 alias_for: "transition-timing-function",
3194 }, 3196 },
3195 { 3197 {
3196 name: "-webkit-user-select", 3198 name: "-webkit-user-select",
3197 alias_for: "user-select", 3199 alias_for: "user-select",
3198 }, 3200 },
3199 ], 3201 ],
3200 } 3202 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/BUILD.gn ('k') | third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698