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

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

Issue 2786643003: Implement support for the 'transform-box' property (Closed)
Patch Set: Update existing tests to be compatible 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 1905 matching lines...) Expand 10 before | Expand all | Expand 10 after
1916 type_name: "TouchAction", 1916 type_name: "TouchAction",
1917 }, 1917 },
1918 { 1918 {
1919 name: "transform", 1919 name: "transform",
1920 converter: "convertTransformOperations", 1920 converter: "convertTransformOperations",
1921 interpolable: true, 1921 interpolable: true,
1922 keywords: ["none"], 1922 keywords: ["none"],
1923 typedom_types: ["Transform"], 1923 typedom_types: ["Transform"],
1924 }, 1924 },
1925 { 1925 {
1926 name: "transform-box",
1927 field_template: "keyword",
1928 keywords: ["border-box", "fill-box", "view-box"],
1929 initial_keyword: "border-box",
pdr. 2017/04/04 22:47:13 Because I took forever to review this, something c
fs 2017/04/05 08:48:17 Will fix.
1930 runtime_flag: "CSSTransformBox",
1931 },
1932 {
1926 name: "transform-origin", 1933 name: "transform-origin",
1927 api_class: true, 1934 api_class: true,
1928 api_methods: ["parseSingleValue"], 1935 api_methods: ["parseSingleValue"],
1929 converter: "convertTransformOrigin", 1936 converter: "convertTransformOrigin",
1930 interpolable: true, 1937 interpolable: true,
1931 }, 1938 },
1932 { 1939 {
1933 name: "transform-style", 1940 name: "transform-style",
1934 name_for_methods: "TransformStyle3D", 1941 name_for_methods: "TransformStyle3D",
1935 }, 1942 },
(...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after
3165 { 3172 {
3166 name: "-webkit-transition-timing-function", 3173 name: "-webkit-transition-timing-function",
3167 alias_for: "transition-timing-function", 3174 alias_for: "transition-timing-function",
3168 }, 3175 },
3169 { 3176 {
3170 name: "-webkit-user-select", 3177 name: "-webkit-user-select",
3171 alias_for: "user-select", 3178 alias_for: "user-select",
3172 }, 3179 },
3173 ], 3180 ],
3174 } 3181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698