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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
749 typedom_types: ["Length"], | 749 typedom_types: ["Length"], |
750 }, | 750 }, |
751 { | 751 { |
752 name: "box-shadow", | 752 name: "box-shadow", |
753 converter: "convertShadowList", | 753 converter: "convertShadowList", |
754 interpolable: true, | 754 interpolable: true, |
755 }, | 755 }, |
756 "box-sizing", | 756 "box-sizing", |
757 { | 757 { |
758 name: "break-after", | 758 name: "break-after", |
759 type_name: "EBreak", | 759 type_name: "EBreakBetween", |
760 }, | 760 }, |
761 { | 761 { |
762 name: "break-before", | 762 name: "break-before", |
763 type_name: "EBreak", | 763 type_name: "EBreakBetween", |
764 }, | 764 }, |
765 { | 765 { |
766 name: "break-inside", | 766 name: "break-inside", |
767 type_name: "EBreak", | 767 type_name: "EBreakInside", |
768 }, | 768 }, |
769 { | 769 { |
770 name: "buffered-rendering", | 770 name: "buffered-rendering", |
771 svg: true, | 771 svg: true, |
772 }, | 772 }, |
773 { | 773 { |
774 name: "caption-side", | 774 name: "caption-side", |
775 independent: true, | 775 independent: true, |
776 inherited: true, | 776 inherited: true, |
777 initial_keyword: "top", | 777 initial_keyword: "top", |
(...skipping 2193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2971 { | 2971 { |
2972 name: "-webkit-transition-timing-function", | 2972 name: "-webkit-transition-timing-function", |
2973 alias_for: "transition-timing-function", | 2973 alias_for: "transition-timing-function", |
2974 }, | 2974 }, |
2975 { | 2975 { |
2976 name: "-webkit-user-select", | 2976 name: "-webkit-user-select", |
2977 alias_for: "user-select", | 2977 alias_for: "user-select", |
2978 }, | 2978 }, |
2979 ], | 2979 ], |
2980 } | 2980 } |
OLD | NEW |