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

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

Issue 2742253002: Move cursor property to be generated in ComputedStyleBase. (Closed)
Patch Set: Rebase 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 906 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 name: "counter-reset", 917 name: "counter-reset",
918 api_class: true, 918 api_class: true,
919 custom_all: true, 919 custom_all: true,
920 }, 920 },
921 { 921 {
922 name: "cursor", 922 name: "cursor",
923 api_class: true, 923 api_class: true,
924 api_methods: ["parseSingleValue"], 924 api_methods: ["parseSingleValue"],
925 custom_all: true, 925 custom_all: true,
926 inherited: true, 926 inherited: true,
927 field_template: "keyword",
928 keywords: [
929 "auto", "default", "none", "context-menu", "help", "pointer", "progress" , "wait", "cell", "crosshair",
930 "text", "vertical-text", "alias", "copy", "move", "no-drop", "not-allowe d", "e-resize", "n-resize",
931 "ne-resize", "nw-resize", "s-resize", "se-resize", "sw-resize", "w-resiz e", "ew-resize", "ns-resize",
932 "nesw-resize", "nwse-resize", "col-resize", "row-resize", "all-scroll", "zoom-in", "zoom-out",
933 "-webkit-grab", "-webkit-grabbing"
934 ],
935 initial_keyword: "auto",
927 }, 936 },
928 { 937 {
929 name: "cx", 938 name: "cx",
930 api_class: "CSSPropertyAPIStrokeOrLength", 939 api_class: "CSSPropertyAPIStrokeOrLength",
931 converter: "convertLength", 940 converter: "convertLength",
932 interpolable: true, 941 interpolable: true,
933 svg: true, 942 svg: true,
934 }, 943 },
935 { 944 {
936 name: "cy", 945 name: "cy",
(...skipping 2208 matching lines...) Expand 10 before | Expand all | Expand 10 after
3145 { 3154 {
3146 name: "-webkit-transition-timing-function", 3155 name: "-webkit-transition-timing-function",
3147 alias_for: "transition-timing-function", 3156 alias_for: "transition-timing-function",
3148 }, 3157 },
3149 { 3158 {
3150 name: "-webkit-user-select", 3159 name: "-webkit-user-select",
3151 alias_for: "user-select", 3160 alias_for: "user-select",
3152 }, 3161 },
3153 ], 3162 ],
3154 } 3163 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698