| Index: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 0732c06eb5025b3ba90d247a4df59c0367d4176e..eb5f3651ee15f8b772d62a6c99aade25cd5a7483 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -403,8 +403,8 @@ void CSSComputedStyleDeclaration::setCSSText(const String&, ExceptionState& exce
|
|
|
| static CSSValueID cssIdentifierForFontSizeKeyword(int keywordSize)
|
| {
|
| - ASSERT_ARG(keywordSize, keywordSize);
|
| - ASSERT_ARG(keywordSize, keywordSize <= 8);
|
| + DCHECK_NE(keywordSize, 0);
|
| + DCHECK_LE(keywordSize, 8);
|
| return static_cast<CSSValueID>(CSSValueXxSmall + keywordSize - 1);
|
| }
|
|
|
|
|