| OLD | NEW |
| 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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 keyword_only: true, | 747 keyword_only: true, |
| 748 keywords: ["top", "bottom", "left", "right"], | 748 keywords: ["top", "bottom", "left", "right"], |
| 749 }, | 749 }, |
| 750 { | 750 { |
| 751 name: "caret-color", | 751 name: "caret-color", |
| 752 api_class: true, | 752 api_class: true, |
| 753 custom_all: true, | 753 custom_all: true, |
| 754 inherited: true, | 754 inherited: true, |
| 755 interpolable: true, | 755 interpolable: true, |
| 756 }, | 756 }, |
| 757 "clear", | 757 { |
| 758 name: "clear", |
| 759 initial_keyword: "none", |
| 760 keyword_only: true, |
| 761 keywords: ["none", "left", "right", "both"], |
| 762 }, |
| 758 { | 763 { |
| 759 name: "clip", | 764 name: "clip", |
| 760 api_class: true, | 765 api_class: true, |
| 761 converter: "convertClip", | 766 converter: "convertClip", |
| 762 custom_all: true, | 767 custom_all: true, |
| 763 interpolable: true, | 768 interpolable: true, |
| 764 }, | 769 }, |
| 765 { | 770 { |
| 766 name: "clip-path", | 771 name: "clip-path", |
| 767 api_class: true, | 772 api_class: true, |
| (...skipping 2040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2808 { | 2813 { |
| 2809 name: "-webkit-transition-timing-function", | 2814 name: "-webkit-transition-timing-function", |
| 2810 alias_for: "transition-timing-function", | 2815 alias_for: "transition-timing-function", |
| 2811 }, | 2816 }, |
| 2812 { | 2817 { |
| 2813 name: "-webkit-user-select", | 2818 name: "-webkit-user-select", |
| 2814 alias_for: "user-select", | 2819 alias_for: "user-select", |
| 2815 }, | 2820 }, |
| 2816 ], | 2821 ], |
| 2817 } | 2822 } |
| OLD | NEW |