Index: Source/core/animation/Timing.h |
diff --git a/Source/core/animation/Timing.h b/Source/core/animation/Timing.h |
index 5c22403965eacca40ed48c39bf1b98579988ac9e..901674cdbada0fbe9cbb9bc5865b61ccd439ef92 100644 |
--- a/Source/core/animation/Timing.h |
+++ b/Source/core/animation/Timing.h |
@@ -93,7 +93,8 @@ struct Timing { |
return startDelay == other.startDelay && endDelay == other.endDelay |
&& fillMode == other.fillMode && iterationStart == other.iterationStart |
&& iterationCount == other.iterationCount && iterationDuration == other.iterationDuration |
- && playbackRate == other.playbackRate && direction == other.direction; |
+ && playbackRate == other.playbackRate && direction == other.direction |
+ && *timingFunction == *other.timingFunction; |
shans
2015/01/14 00:26:19
Does this use pointer comparison, or the reference
shend
2015/01/14 00:42:03
Reference equality: it needs to check if the type/
|
} |
bool operator!=(const Timing &other) const |