| 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 25 matching lines...) Expand all Loading... |
| 36 #include "core/animation/CompositorAnimations.h" | 36 #include "core/animation/CompositorAnimations.h" |
| 37 #include "core/animation/DocumentTimeline.h" | 37 #include "core/animation/DocumentTimeline.h" |
| 38 #include "core/animation/KeyframeEffectModel.h" | 38 #include "core/animation/KeyframeEffectModel.h" |
| 39 #include "core/animation/css/CSSAnimatableValueFactory.h" | 39 #include "core/animation/css/CSSAnimatableValueFactory.h" |
| 40 #include "core/animation/css/CSSAnimationDataList.h" | 40 #include "core/animation/css/CSSAnimationDataList.h" |
| 41 #include "core/animation/css/CSSPropertyEquality.h" | 41 #include "core/animation/css/CSSPropertyEquality.h" |
| 42 #include "core/css/CSSKeyframeRule.h" | 42 #include "core/css/CSSKeyframeRule.h" |
| 43 #include "core/css/resolver/StyleResolver.h" | 43 #include "core/css/resolver/StyleResolver.h" |
| 44 #include "core/dom/Element.h" | 44 #include "core/dom/Element.h" |
| 45 #include "core/dom/PseudoElement.h" | 45 #include "core/dom/PseudoElement.h" |
| 46 #include "core/events/ThreadLocalEventNames.h" | |
| 47 #include "core/events/TransitionEvent.h" | 46 #include "core/events/TransitionEvent.h" |
| 48 #include "core/events/WebKitAnimationEvent.h" | 47 #include "core/events/WebKitAnimationEvent.h" |
| 49 #include "core/frame/UseCounter.h" | 48 #include "core/frame/UseCounter.h" |
| 50 #include "core/rendering/RenderLayer.h" | 49 #include "core/rendering/RenderLayer.h" |
| 51 #include "core/rendering/RenderObject.h" | 50 #include "core/rendering/RenderObject.h" |
| 52 #include "core/rendering/style/KeyframeList.h" | 51 #include "core/rendering/style/KeyframeList.h" |
| 53 #include "platform/animation/TimingFunction.h" | 52 #include "platform/animation/TimingFunction.h" |
| 54 #include "public/platform/Platform.h" | 53 #include "public/platform/Platform.h" |
| 55 #include "wtf/BitArray.h" | 54 #include "wtf/BitArray.h" |
| 56 #include "wtf/HashSet.h" | 55 #include "wtf/HashSet.h" |
| (...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |