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

Unified Diff: third_party/WebKit/Source/core/css/CSSPropertyEquality.h

Issue 2730683002: Add CSS Transition support to registered custom properties (Closed)
Patch Set: comments Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/CSSPropertyEquality.h
diff --git a/third_party/WebKit/Source/core/css/CSSPropertyEquality.h b/third_party/WebKit/Source/core/css/CSSPropertyEquality.h
index d70e8cfcd1b162315aa77f95e1143bdf3d81f3f8..bf75be335cccf90070627e2abeb4f1595e149fdf 100644
--- a/third_party/WebKit/Source/core/css/CSSPropertyEquality.h
+++ b/third_party/WebKit/Source/core/css/CSSPropertyEquality.h
@@ -7,6 +7,7 @@
#include "core/CSSPropertyNames.h"
#include "wtf/Allocator.h"
+#include "wtf/text/AtomicString.h"
namespace blink {
@@ -19,6 +20,11 @@ class CSSPropertyEquality {
static bool propertiesEqual(CSSPropertyID,
const ComputedStyle&,
const ComputedStyle&);
+
+ static bool registeredCustomPropertiesEqual(
+ const WTF::AtomicString& propertyName,
+ const ComputedStyle&,
+ const ComputedStyle&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698