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

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

Issue 2867223002: Disable inheritance propagation for text-align. (Closed)
Patch Set: Created 3 years, 7 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 1777 matching lines...) Expand 10 before | Expand all | Expand 10 after
1788 name: "tab-size", 1788 name: "tab-size",
1789 api_class: true, 1789 api_class: true,
1790 api_methods: ["parseSingleValue"], 1790 api_methods: ["parseSingleValue"],
1791 converter: "ConvertLengthOrTabSpaces", 1791 converter: "ConvertLengthOrTabSpaces",
1792 inherited: true, 1792 inherited: true,
1793 type_name: "TabSize", 1793 type_name: "TabSize",
1794 }, 1794 },
1795 { 1795 {
1796 name: "text-align", 1796 name: "text-align",
1797 custom_value: true, 1797 custom_value: true,
1798 independent: true, 1798 independent: false,
1799 inherited: true, 1799 inherited: true,
1800 default_value: "start", 1800 default_value: "start",
1801 field_template: "keyword", 1801 field_template: "keyword",
1802 getter: "GetTextAlign", 1802 getter: "GetTextAlign",
1803 keywords: [ 1803 keywords: [
1804 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk itCenter", "start", "end", 1804 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk itCenter", "start", "end",
1805 ], 1805 ],
1806 }, 1806 },
1807 { 1807 {
1808 name: "text-align-last", 1808 name: "text-align-last",
(...skipping 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after
3191 { 3191 {
3192 name: "-webkit-transition-timing-function", 3192 name: "-webkit-transition-timing-function",
3193 alias_for: "transition-timing-function", 3193 alias_for: "transition-timing-function",
3194 }, 3194 },
3195 { 3195 {
3196 name: "-webkit-user-select", 3196 name: "-webkit-user-select",
3197 alias_for: "user-select", 3197 alias_for: "user-select",
3198 }, 3198 },
3199 ], 3199 ],
3200 } 3200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698