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

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

Issue 2669433002: Moved table-layout property to be generated in ComputedStyleBase. (Closed)
Patch Set: Rebase correctly Created 3 years, 10 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 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after
1533 interpolable: true, 1533 interpolable: true,
1534 svg: true, 1534 svg: true,
1535 }, 1535 },
1536 { 1536 {
1537 name: "stroke-width", 1537 name: "stroke-width",
1538 converter: "convertUnzoomedLength", 1538 converter: "convertUnzoomedLength",
1539 inherited: true, 1539 inherited: true,
1540 interpolable: true, 1540 interpolable: true,
1541 svg: true, 1541 svg: true,
1542 }, 1542 },
1543 "table-layout", 1543 {
1544 name: "table-layout",
1545 initial_keyword: "auto",
1546 keyword_only: true,
1547 keywords: [
1548 "auto", "fixed"
1549 ]
1550 },
1544 { 1551 {
1545 name: "tab-size", 1552 name: "tab-size",
1546 api_class: true, 1553 api_class: true,
1547 converter: "convertLengthOrTabSpaces", 1554 converter: "convertLengthOrTabSpaces",
1548 inherited: true, 1555 inherited: true,
1549 type_name: "TabSize", 1556 type_name: "TabSize",
1550 }, 1557 },
1551 { 1558 {
1552 name: "text-align", 1559 name: "text-align",
1553 custom_value: true, 1560 custom_value: true,
(...skipping 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after
2814 { 2821 {
2815 name: "-webkit-transition-timing-function", 2822 name: "-webkit-transition-timing-function",
2816 alias_for: "transition-timing-function", 2823 alias_for: "transition-timing-function",
2817 }, 2824 },
2818 { 2825 {
2819 name: "-webkit-user-select", 2826 name: "-webkit-user-select",
2820 alias_for: "user-select", 2827 alias_for: "user-select",
2821 }, 2828 },
2822 ], 2829 ],
2823 } 2830 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698