Index: third_party/WebKit/Source/core/style/ShadowData.cpp |
diff --git a/third_party/WebKit/Source/core/style/ShadowData.cpp b/third_party/WebKit/Source/core/style/ShadowData.cpp |
index ee423f53361e67d3440fb79c286c604eedd19f41..d7b852042b7987a3691f26677f757a4952006319 100644 |
--- a/third_party/WebKit/Source/core/style/ShadowData.cpp |
+++ b/third_party/WebKit/Source/core/style/ShadowData.cpp |
@@ -34,7 +34,7 @@ bool ShadowData::operator==(const ShadowData& o) const { |
ShadowData ShadowData::blend(const ShadowData& from, |
double progress, |
const Color& currentColor) const { |
- ASSERT(style() == from.style()); |
+ DCHECK_EQ(style(), from.style()); |
return ShadowData(blink::blend(from.location(), location(), progress), |
clampTo(blink::blend(from.blur(), blur(), progress), 0.0f), |
blink::blend(from.spread(), spread(), progress), style(), |