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

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

Issue 2786643003: Implement support for the 'transform-box' property (Closed)
Patch Set: Rebase; fix property spec; update histogram.xml 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 1911 matching lines...) Expand 10 before | Expand all | Expand 10 after
1922 type_name: "TouchAction", 1922 type_name: "TouchAction",
1923 }, 1923 },
1924 { 1924 {
1925 name: "transform", 1925 name: "transform",
1926 converter: "convertTransformOperations", 1926 converter: "convertTransformOperations",
1927 interpolable: true, 1927 interpolable: true,
1928 keywords: ["none"], 1928 keywords: ["none"],
1929 typedom_types: ["Transform"], 1929 typedom_types: ["Transform"],
1930 }, 1930 },
1931 { 1931 {
1932 name: "transform-box",
1933 field_template: "keyword",
1934 keywords: ["border-box", "fill-box", "view-box"],
1935 default_value: "border-box",
1936 runtime_flag: "CSSTransformBox",
1937 },
1938 {
1932 name: "transform-origin", 1939 name: "transform-origin",
1933 api_class: true, 1940 api_class: true,
1934 api_methods: ["parseSingleValue"], 1941 api_methods: ["parseSingleValue"],
1935 converter: "convertTransformOrigin", 1942 converter: "convertTransformOrigin",
1936 interpolable: true, 1943 interpolable: true,
1937 }, 1944 },
1938 { 1945 {
1939 name: "transform-style", 1946 name: "transform-style",
1940 name_for_methods: "TransformStyle3D", 1947 name_for_methods: "TransformStyle3D",
1941 }, 1948 },
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
3176 { 3183 {
3177 name: "-webkit-transition-timing-function", 3184 name: "-webkit-transition-timing-function",
3178 alias_for: "transition-timing-function", 3185 alias_for: "transition-timing-function",
3179 }, 3186 },
3180 { 3187 {
3181 name: "-webkit-user-select", 3188 name: "-webkit-user-select",
3182 alias_for: "user-select", 3189 alias_for: "user-select",
3183 }, 3190 },
3184 ], 3191 ],
3185 } 3192 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698