| Index: third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp b/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp
|
| index eb43610af9124e25044328740aba95c80ec669ad..8159b5c68a6ffaf771bf86cafc8901e5d331df90 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp
|
| @@ -21,6 +21,11 @@ CSSKeywordValue* CSSKeywordValue::create(const AtomicString& keyword,
|
| return new CSSKeywordValue(keyword);
|
| }
|
|
|
| +CSSKeywordValue* CSSKeywordValue::create(const AtomicString& keyword) {
|
| + DCHECK(!keyword.isEmpty());
|
| + return new CSSKeywordValue(keyword);
|
| +}
|
| +
|
| const AtomicString& CSSKeywordValue::keywordValue() const {
|
| return m_keywordValue;
|
| }
|
|
|