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

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

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. 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 1554 matching lines...) Expand 10 before | Expand all | Expand 10 after
1565 field_template: "keyword", 1565 field_template: "keyword",
1566 keywords: [ 1566 keywords: [
1567 "none", "auto", "stroke", "fill", "painted", "visible", "visibleStroke", "visibleFill", "visiblePainted", "bounding-box", "all", 1567 "none", "auto", "stroke", "fill", "painted", "visible", "visibleStroke", "visibleFill", "visiblePainted", "bounding-box", "all",
1568 ], 1568 ],
1569 }, 1569 },
1570 { 1570 {
1571 name: "position", 1571 name: "position",
1572 custom_inherit: true, 1572 custom_inherit: true,
1573 default_value: "static", 1573 default_value: "static",
1574 field_template: "keyword", 1574 field_template: "keyword",
1575 getter: "GetPosition",
1575 keywords: [ 1576 keywords: [
1576 "static", "relative", "absolute", "fixed", "sticky", 1577 "static", "relative", "absolute", "fixed", "sticky",
1577 ], 1578 ],
1578 }, 1579 },
1579 { 1580 {
1580 name: "quotes", 1581 name: "quotes",
1581 api_class: true, 1582 api_class: true,
1582 api_methods: ["parseSingleValue"], 1583 api_methods: ["parseSingleValue"],
1583 converter: "convertQuotes", 1584 converter: "convertQuotes",
1584 inherited: true, 1585 inherited: true,
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
1792 inherited: true, 1793 inherited: true,
1793 type_name: "TabSize", 1794 type_name: "TabSize",
1794 }, 1795 },
1795 { 1796 {
1796 name: "text-align", 1797 name: "text-align",
1797 custom_value: true, 1798 custom_value: true,
1798 independent: true, 1799 independent: true,
1799 inherited: true, 1800 inherited: true,
1800 default_value: "start", 1801 default_value: "start",
1801 field_template: "keyword", 1802 field_template: "keyword",
1803 getter: "GetTextAlign",
1802 keywords: [ 1804 keywords: [
1803 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk itCenter", "start", "end", 1805 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk itCenter", "start", "end",
1804 ], 1806 ],
1805 }, 1807 },
1806 { 1808 {
1807 name: "text-align-last", 1809 name: "text-align-last",
1808 inherited: true, 1810 inherited: true,
1809 type_name: "TextAlignLast", 1811 type_name: "TextAlignLast",
1810 }, 1812 },
1811 { 1813 {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
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",
1938 runtime_flag: "CSSTransformBox", 1940 runtime_flag: "CSSTransformBox",
1939 }, 1941 },
1940 { 1942 {
1941 name: "transform-origin", 1943 name: "transform-origin",
1942 api_class: true, 1944 api_class: true,
1943 api_methods: ["parseSingleValue"], 1945 api_methods: ["parseSingleValue"],
1944 converter: "convertTransformOrigin", 1946 converter: "ConvertTransformOrigin",
1947 getter: "GetTransformOrigin",
1945 interpolable: true, 1948 interpolable: true,
1946 }, 1949 },
1947 { 1950 {
1948 name: "transform-style", 1951 name: "transform-style",
1949 name_for_methods: "TransformStyle3D", 1952 name_for_methods: "TransformStyle3D",
1950 }, 1953 },
1951 { 1954 {
1952 name: "translate", 1955 name: "translate",
1953 api_class: true, 1956 api_class: true,
1954 api_methods: ["parseSingleValue"], 1957 api_methods: ["parseSingleValue"],
(...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after
3190 { 3193 {
3191 name: "-webkit-transition-timing-function", 3194 name: "-webkit-transition-timing-function",
3192 alias_for: "transition-timing-function", 3195 alias_for: "transition-timing-function",
3193 }, 3196 },
3194 { 3197 {
3195 name: "-webkit-user-select", 3198 name: "-webkit-user-select",
3196 alias_for: "user-select", 3199 alias_for: "user-select",
3197 }, 3200 },
3198 ], 3201 ],
3199 } 3202 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPrimitiveValueUnits.json5 ('k') | third_party/WebKit/Source/core/css/CSSRuleList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698