Index: third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp |
diff --git a/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp b/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp |
index 0491cd07d4b7ad94e7729b11a84e526dcd3824e5..83cbb6a7f139982068f98c90c98461921f66865e 100644 |
--- a/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp |
+++ b/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp |
@@ -62,11 +62,11 @@ class StyleAttributeMutationScope { |
++s_scopeCount; |
if (s_scopeCount != 1) { |
- ASSERT(s_currentDecl == decl); |
+ DCHECK_EQ(s_currentDecl, decl); |
return; |
} |
- ASSERT(!s_currentDecl); |
+ DCHECK(!s_currentDecl); |
s_currentDecl = decl; |
if (!s_currentDecl->parentElement()) |