| 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 initial_keyword: "auto", |
| 760 keyword_only: true, |
| 761 keywords: [ |
| 762 "auto", "avoid", "avoid-column", "avoid-page", "column", "left", "page",
"recto", "right", "verso" |
| 763 ], |
| 759 type_name: "EBreakBetween", | 764 type_name: "EBreakBetween", |
| 760 }, | 765 }, |
| 761 { | 766 { |
| 762 name: "break-before", | 767 name: "break-before", |
| 768 initial_keyword: "auto", |
| 769 keyword_only: true, |
| 770 keywords: [ |
| 771 "auto", "avoid", "avoid-column", "avoid-page", "column", "left", "page",
"recto", "right", "verso" |
| 772 ], |
| 763 type_name: "EBreakBetween", | 773 type_name: "EBreakBetween", |
| 764 }, | 774 }, |
| 765 { | 775 { |
| 766 name: "break-inside", | 776 name: "break-inside", |
| 767 type_name: "EBreakInside", | 777 initial_keyword: "auto", |
| 778 keyword_only: true, |
| 779 keywords: ["auto", "avoid", "avoid-column", "avoid-page"], |
| 768 }, | 780 }, |
| 769 { | 781 { |
| 770 name: "buffered-rendering", | 782 name: "buffered-rendering", |
| 771 svg: true, | 783 svg: true, |
| 772 }, | 784 }, |
| 773 { | 785 { |
| 774 name: "caption-side", | 786 name: "caption-side", |
| 775 independent: true, | 787 independent: true, |
| 776 inherited: true, | 788 inherited: true, |
| 777 initial_keyword: "top", | 789 initial_keyword: "top", |
| (...skipping 2193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2971 { | 2983 { |
| 2972 name: "-webkit-transition-timing-function", | 2984 name: "-webkit-transition-timing-function", |
| 2973 alias_for: "transition-timing-function", | 2985 alias_for: "transition-timing-function", |
| 2974 }, | 2986 }, |
| 2975 { | 2987 { |
| 2976 name: "-webkit-user-select", | 2988 name: "-webkit-user-select", |
| 2977 alias_for: "user-select", | 2989 alias_for: "user-select", |
| 2978 }, | 2990 }, |
| 2979 ], | 2991 ], |
| 2980 } | 2992 } |
| OLD | NEW |