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

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

Issue 2784443003: Implemented parseSingleValue in CSSPropertyAPICounterReset. (Closed)
Patch Set: Changed argument type from ponter to address as per change to earlier 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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 api_methods: ["parseSingleValue"],
921 custom_all: true, 921 custom_all: true,
922 }, 922 },
923 { 923 {
924 name: "counter-reset", 924 name: "counter-reset",
925 api_class: true, 925 api_class: true,
926 api_methods: ["parseSingleValue"],
926 custom_all: true, 927 custom_all: true,
927 }, 928 },
928 { 929 {
929 name: "cursor", 930 name: "cursor",
930 api_class: true, 931 api_class: true,
931 api_methods: ["parseSingleValue"], 932 api_methods: ["parseSingleValue"],
932 custom_all: true, 933 custom_all: true,
933 inherited: true, 934 inherited: true,
934 field_template: "keyword", 935 field_template: "keyword",
935 keywords: [ 936 keywords: [
(...skipping 2248 matching lines...) Expand 10 before | Expand all | Expand 10 after
3184 { 3185 {
3185 name: "-webkit-transition-timing-function", 3186 name: "-webkit-transition-timing-function",
3186 alias_for: "transition-timing-function", 3187 alias_for: "transition-timing-function",
3187 }, 3188 },
3188 { 3189 {
3189 name: "-webkit-user-select", 3190 name: "-webkit-user-select",
3190 alias_for: "user-select", 3191 alias_for: "user-select",
3191 }, 3192 },
3192 ], 3193 ],
3193 } 3194 }
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