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

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

Issue 2801023002: Revert of Implemented parseSingleValue in CSSPropertyAPICounterIncrement. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 name: "content", 904 name: "content",
905 api_class: true, 905 api_class: true,
906 api_methods: ["parseSingleValue"], 906 api_methods: ["parseSingleValue"],
907 custom_all: true, 907 custom_all: true,
908 separator: ",", 908 separator: ",",
909 typedom_types: ["Image"], 909 typedom_types: ["Image"],
910 }, 910 },
911 { 911 {
912 name: "counter-increment", 912 name: "counter-increment",
913 api_class: true, 913 api_class: true,
914 api_methods: ["parseSingleValue"],
915 custom_all: true, 914 custom_all: true,
916 }, 915 },
917 { 916 {
918 name: "counter-reset", 917 name: "counter-reset",
919 api_class: true, 918 api_class: true,
920 custom_all: true, 919 custom_all: true,
921 }, 920 },
922 { 921 {
923 name: "cursor", 922 name: "cursor",
924 api_class: true, 923 api_class: true,
(...skipping 2241 matching lines...) Expand 10 before | Expand all | Expand 10 after
3166 { 3165 {
3167 name: "-webkit-transition-timing-function", 3166 name: "-webkit-transition-timing-function",
3168 alias_for: "transition-timing-function", 3167 alias_for: "transition-timing-function",
3169 }, 3168 },
3170 { 3169 {
3171 name: "-webkit-user-select", 3170 name: "-webkit-user-select",
3172 alias_for: "user-select", 3171 alias_for: "user-select",
3173 }, 3172 },
3174 ], 3173 ],
3175 } 3174 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698