| 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 0f0348cfee915b0f9f45ea50a344e8389b4db0b6..daa3d18056c8311a194b8a59bfa2463a1eec38ee 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSKeywordValue.cpp
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "bindings/core/v8/ExceptionState.h"
|
| #include "core/css/CSSCustomIdentValue.h"
|
| -#include "core/css/parser/CSSParserString.h"
|
| #include "core/css/parser/CSSPropertyParser.h"
|
|
|
| namespace blink {
|
| @@ -27,9 +26,7 @@ const String& CSSKeywordValue::keywordValue() const
|
|
|
| CSSValueID CSSKeywordValue::keywordValueID() const
|
| {
|
| - CSSParserString cssKeywordString;
|
| - cssKeywordString.init(m_keywordValue);
|
| - return cssValueKeywordID(cssKeywordString);
|
| + return cssValueKeywordID(m_keywordValue);
|
| }
|
|
|
| CSSValue* CSSKeywordValue::toCSSValue() const
|
|
|