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

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

Issue 2750843002: [css-align] Adapt content-alignment properties to the new baseline syntax (Closed)
Patch Set: Don't use raw pointers attributes on a GC managed class. 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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 name: "zoom", 524 name: "zoom",
525 api_class: true, 525 api_class: true,
526 api_methods: ["parseSingleValue"], 526 api_methods: ["parseSingleValue"],
527 custom_all: true, 527 custom_all: true,
528 is_descriptor: true, 528 is_descriptor: true,
529 priority: "High", 529 priority: "High",
530 }, 530 },
531 531
532 { 532 {
533 name: "align-content", 533 name: "align-content",
534 api_methods: ["parseSingleValue"],
534 api_class: "CSSPropertyAPIAlignOrJustifyContent", 535 api_class: "CSSPropertyAPIAlignOrJustifyContent",
535 converter: "convertContentAlignmentData", 536 converter: "convertContentAlignmentData",
536 initial: "initialContentAlignment", 537 initial: "initialContentAlignment",
537 }, 538 },
538 { 539 {
539 name: "align-items", 540 name: "align-items",
540 api_class: true, 541 api_class: true,
541 api_methods: ["parseSingleValue"], 542 api_methods: ["parseSingleValue"],
542 converter: "convertSelfOrDefaultAlignmentData", 543 converter: "convertSelfOrDefaultAlignmentData",
543 initial: "initialDefaultAlignment", 544 initial: "initialDefaultAlignment",
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
1134 api_methods: ["parseSingleValue"], 1135 api_methods: ["parseSingleValue"],
1135 converter: "convertImageOrientation", 1136 converter: "convertImageOrientation",
1136 inherited: true, 1137 inherited: true,
1137 name_for_methods: "RespectImageOrientation", 1138 name_for_methods: "RespectImageOrientation",
1138 runtime_flag: "ImageOrientation", 1139 runtime_flag: "ImageOrientation",
1139 }, 1140 },
1140 "isolation", 1141 "isolation",
1141 { 1142 {
1142 name: "justify-content", 1143 name: "justify-content",
1143 api_class: "CSSPropertyAPIAlignOrJustifyContent", 1144 api_class: "CSSPropertyAPIAlignOrJustifyContent",
1145 api_methods: ["parseSingleValue"],
1144 converter: "convertContentAlignmentData", 1146 converter: "convertContentAlignmentData",
1145 initial: "initialContentAlignment", 1147 initial: "initialContentAlignment",
1146 }, 1148 },
1147 { 1149 {
1148 name: "justify-items", 1150 name: "justify-items",
1149 api_class: true, 1151 api_class: true,
1150 api_methods: ["parseSingleValue"], 1152 api_methods: ["parseSingleValue"],
1151 converter: "convertSelfOrDefaultAlignmentData", 1153 converter: "convertSelfOrDefaultAlignmentData",
1152 initial: "initialSelfAlignment", 1154 initial: "initialSelfAlignment",
1153 runtime_flag: "CSSGridLayout", 1155 runtime_flag: "CSSGridLayout",
(...skipping 1989 matching lines...) Expand 10 before | Expand all | Expand 10 after
3143 { 3145 {
3144 name: "-webkit-transition-timing-function", 3146 name: "-webkit-transition-timing-function",
3145 alias_for: "transition-timing-function", 3147 alias_for: "transition-timing-function",
3146 }, 3148 },
3147 { 3149 {
3148 name: "-webkit-user-select", 3150 name: "-webkit-user-select",
3149 alias_for: "user-select", 3151 alias_for: "user-select",
3150 }, 3152 },
3151 ], 3153 ],
3152 } 3154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698