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

Side by Side Diff: Source/core/animation/css/CSSAnimations.cpp

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix more (all?) tests Created 6 years, 9 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 * 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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698