OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 case CSSPropertyWebkitMaskBoxImageSlice: | 854 case CSSPropertyWebkitMaskBoxImageSlice: |
855 case CSSPropertyWebkitMaskBoxImageSource: | 855 case CSSPropertyWebkitMaskBoxImageSource: |
856 case CSSPropertyWebkitMaskBoxImageWidth: | 856 case CSSPropertyWebkitMaskBoxImageWidth: |
857 case CSSPropertyWebkitMaskImage: | 857 case CSSPropertyWebkitMaskImage: |
858 case CSSPropertyWebkitMaskPositionX: | 858 case CSSPropertyWebkitMaskPositionX: |
859 case CSSPropertyWebkitMaskPositionY: | 859 case CSSPropertyWebkitMaskPositionY: |
860 case CSSPropertyWebkitMaskSize: | 860 case CSSPropertyWebkitMaskSize: |
861 case CSSPropertyWebkitPerspective: | 861 case CSSPropertyWebkitPerspective: |
862 case CSSPropertyWebkitPerspectiveOriginX: | 862 case CSSPropertyWebkitPerspectiveOriginX: |
863 case CSSPropertyWebkitPerspectiveOriginY: | 863 case CSSPropertyWebkitPerspectiveOriginY: |
864 case CSSPropertyShapeInside: | |
865 case CSSPropertyShapeOutside: | 864 case CSSPropertyShapeOutside: |
866 case CSSPropertyShapeMargin: | 865 case CSSPropertyShapeMargin: |
867 case CSSPropertyShapeImageThreshold: | 866 case CSSPropertyShapeImageThreshold: |
868 case CSSPropertyWebkitTextStrokeColor: | 867 case CSSPropertyWebkitTextStrokeColor: |
869 case CSSPropertyWebkitTransform: | 868 case CSSPropertyWebkitTransform: |
870 case CSSPropertyWebkitTransformOriginX: | 869 case CSSPropertyWebkitTransformOriginX: |
871 case CSSPropertyWebkitTransformOriginY: | 870 case CSSPropertyWebkitTransformOriginY: |
872 case CSSPropertyWebkitTransformOriginZ: | 871 case CSSPropertyWebkitTransformOriginZ: |
873 case CSSPropertyWidows: | 872 case CSSPropertyWidows: |
874 case CSSPropertyWidth: | 873 case CSSPropertyWidth: |
(...skipping 15 matching lines...) Expand all Loading... |
890 CSSPropertyID id = convertToCSSPropertyID(i); | 889 CSSPropertyID id = convertToCSSPropertyID(i); |
891 if (isAnimatableProperty(id)) | 890 if (isAnimatableProperty(id)) |
892 properties.append(id); | 891 properties.append(id); |
893 } | 892 } |
894 propertyShorthand = StylePropertyShorthand(CSSPropertyInvalid, propertie
s.begin(), properties.size()); | 893 propertyShorthand = StylePropertyShorthand(CSSPropertyInvalid, propertie
s.begin(), properties.size()); |
895 } | 894 } |
896 return propertyShorthand; | 895 return propertyShorthand; |
897 } | 896 } |
898 | 897 |
899 } // namespace WebCore | 898 } // namespace WebCore |
OLD | NEW |