Index: Source/core/css/CSSKeyframeRule.h |
diff --git a/Source/core/css/CSSKeyframeRule.h b/Source/core/css/CSSKeyframeRule.h |
index 991c1a16f26413128c8b0123f409a9c06b8be1cd..7776312703e87a5f987bed0ab1db941731dd75a7 100644 |
--- a/Source/core/css/CSSKeyframeRule.h |
+++ b/Source/core/css/CSSKeyframeRule.h |
@@ -66,6 +66,8 @@ public: |
static PassOwnPtr<Vector<double> > createKeyList(CSSParserValueList*); |
+ bool operator== (const StyleKeyframe& other) const { return keys() == keys() && cssText() == other.cssText(); } |
dstockwell
2014/12/29 23:16:33
This seems expensive, as cssText() builds a new st
shend
2014/12/30 00:03:40
Removed.
|
+ |
private: |
StyleKeyframe(); |