| Index: third_party/WebKit/Source/core/dom/NodeRareData.h
|
| diff --git a/third_party/WebKit/Source/core/dom/NodeRareData.h b/third_party/WebKit/Source/core/dom/NodeRareData.h
|
| index 7df8d9d527a52700368f3c764284f1502f327d7a..109c10a70261a86698f90c0e94eed3614ed04277 100644
|
| --- a/third_party/WebKit/Source/core/dom/NodeRareData.h
|
| +++ b/third_party/WebKit/Source/core/dom/NodeRareData.h
|
| @@ -143,7 +143,7 @@ class NodeRareData : public GarbageCollectedFinalized<NodeRareData>,
|
| }
|
| void setRestyleFlag(DynamicRestyleFlags mask) {
|
| m_restyleFlags |= mask;
|
| - RELEASE_ASSERT(m_restyleFlags);
|
| + CHECK(m_restyleFlags);
|
| }
|
| bool hasRestyleFlags() const { return m_restyleFlags; }
|
| void clearRestyleFlags() { m_restyleFlags = 0; }
|
|
|