Index: Source/core/animation/EffectInput.cpp |
diff --git a/Source/core/animation/EffectInput.cpp b/Source/core/animation/EffectInput.cpp |
index 09254e9f91ba8e22bb5eecc7d40b0aa43839c673..90c5d57679c20f0f02a639ceddc275d623848ad7 100644 |
--- a/Source/core/animation/EffectInput.cpp |
+++ b/Source/core/animation/EffectInput.cpp |
@@ -39,7 +39,7 @@ |
#include "core/css/resolver/StyleResolver.h" |
#include "core/dom/Document.h" |
#include "core/dom/Element.h" |
-#include "core/dom/NodeLayoutStyle.h" |
+#include "core/dom/NodeComputedStyle.h" |
#include "wtf/NonCopyingSort.h" |
namespace blink { |
@@ -117,7 +117,7 @@ PassRefPtrWillBeRawPtr<AnimationEffect> EffectInput::convert(Element* element, c |
exceptionState.throwDOMException(NotSupportedError, "Additive animations are not supported."); |
return nullptr; |
} |
- keyframeEffectModel->forceConversionsToAnimatableValues(*element, element->layoutStyle()); |
+ keyframeEffectModel->forceConversionsToAnimatableValues(*element, element->computedStyle()); |
return keyframeEffectModel; |
} |