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

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

Issue 2913703002: Make TextAlignLast an enum class. (Closed)
Patch Set: make enum class Created 3 years, 6 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 1997 matching lines...) Expand 10 before | Expand all | Expand 10 after
2008 getter: "GetTextAlign", 2008 getter: "GetTextAlign",
2009 keywords: [ 2009 keywords: [
2010 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk itCenter", "start", "end", 2010 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk itCenter", "start", "end",
2011 ], 2011 ],
2012 }, 2012 },
2013 { 2013 {
2014 name: "text-align-last", 2014 name: "text-align-last",
2015 inherited: true, 2015 inherited: true,
2016 field_template: "storage_only", 2016 field_template: "storage_only",
2017 type_name: "TextAlignLast", 2017 type_name: "TextAlignLast",
2018 default_value: "kTextAlignLastAuto", 2018 default_value: "TextAlignLast::kAuto",
2019 field_size: 3, 2019 field_size: 3,
2020 field_group: "rare-inherited", 2020 field_group: "rare-inherited",
2021 }, 2021 },
2022 { 2022 {
2023 name: "text-anchor", 2023 name: "text-anchor",
2024 inherited: true, 2024 inherited: true,
2025 svg: true, 2025 svg: true,
2026 }, 2026 },
2027 { 2027 {
2028 name: "text-combine-upright", 2028 name: "text-combine-upright",
(...skipping 1494 matching lines...) Expand 10 before | Expand all | Expand 10 after
3523 { 3523 {
3524 name: "-webkit-transition-timing-function", 3524 name: "-webkit-transition-timing-function",
3525 alias_for: "transition-timing-function", 3525 alias_for: "transition-timing-function",
3526 }, 3526 },
3527 { 3527 {
3528 name: "-webkit-user-select", 3528 name: "-webkit-user-select",
3529 alias_for: "user-select", 3529 alias_for: "user-select",
3530 }, 3530 },
3531 ], 3531 ],
3532 } 3532 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698