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

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

Issue 2783543002: Implemented parseSingleValue in CSSPropertyAPICounterIncrement. (Closed)
Patch Set: Changed CSSParserContext pointer to reference for compatibility with previous patch 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 899 matching lines...) Expand 10 before | Expand all | Expand 10 after
910 name: "content", 910 name: "content",
911 api_class: true, 911 api_class: true,
912 api_methods: ["parseSingleValue"], 912 api_methods: ["parseSingleValue"],
913 custom_all: true, 913 custom_all: true,
914 separator: ",", 914 separator: ",",
915 typedom_types: ["Image"], 915 typedom_types: ["Image"],
916 }, 916 },
917 { 917 {
918 name: "counter-increment", 918 name: "counter-increment",
919 api_class: true, 919 api_class: true,
920 api_methods: ["parseSingleValue"],
920 custom_all: true, 921 custom_all: true,
921 }, 922 },
922 { 923 {
923 name: "counter-reset", 924 name: "counter-reset",
924 api_class: true, 925 api_class: true,
925 custom_all: true, 926 custom_all: true,
926 }, 927 },
927 { 928 {
928 name: "cursor", 929 name: "cursor",
929 api_class: true, 930 api_class: true,
(...skipping 2253 matching lines...) Expand 10 before | Expand all | Expand 10 after
3183 { 3184 {
3184 name: "-webkit-transition-timing-function", 3185 name: "-webkit-transition-timing-function",
3185 alias_for: "transition-timing-function", 3186 alias_for: "transition-timing-function",
3186 }, 3187 },
3187 { 3188 {
3188 name: "-webkit-user-select", 3189 name: "-webkit-user-select",
3189 alias_for: "user-select", 3190 alias_for: "user-select",
3190 }, 3191 },
3191 ], 3192 ],
3192 } 3193 }
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