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

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

Issue 2860743004: Disable inheritance propagation for text-align. (Closed)
Patch Set: Fixed test expectation. 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 1808 matching lines...) Expand 10 before | Expand all | Expand 10 after
1819 name: "tab-size", 1819 name: "tab-size",
1820 api_class: true, 1820 api_class: true,
1821 api_methods: ["parseSingleValue"], 1821 api_methods: ["parseSingleValue"],
1822 converter: "ConvertLengthOrTabSpaces", 1822 converter: "ConvertLengthOrTabSpaces",
1823 inherited: true, 1823 inherited: true,
1824 type_name: "TabSize", 1824 type_name: "TabSize",
1825 }, 1825 },
1826 { 1826 {
1827 name: "text-align", 1827 name: "text-align",
1828 custom_value: true, 1828 custom_value: true,
1829 independent: true, 1829 independent: false,
1830 inherited: true, 1830 inherited: true,
1831 default_value: "start", 1831 default_value: "start",
1832 field_template: "keyword", 1832 field_template: "keyword",
1833 getter: "GetTextAlign", 1833 getter: "GetTextAlign",
1834 keywords: [ 1834 keywords: [
1835 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk itCenter", "start", "end", 1835 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk itCenter", "start", "end",
1836 ], 1836 ],
1837 }, 1837 },
1838 { 1838 {
1839 name: "text-align-last", 1839 name: "text-align-last",
(...skipping 1383 matching lines...) Expand 10 before | Expand all | Expand 10 after
3223 { 3223 {
3224 name: "-webkit-transition-timing-function", 3224 name: "-webkit-transition-timing-function",
3225 alias_for: "transition-timing-function", 3225 alias_for: "transition-timing-function",
3226 }, 3226 },
3227 { 3227 {
3228 name: "-webkit-user-select", 3228 name: "-webkit-user-select",
3229 alias_for: "user-select", 3229 alias_for: "user-select",
3230 }, 3230 },
3231 ], 3231 ],
3232 } 3232 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698