| Index: third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp
|
| index 1d92dc9fa9e171c716a78eef15867b582c31d41f..d8847a98be7b6806406adf92acbf0d51bd5c0dda 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp
|
| @@ -55,16 +55,6 @@
|
|
|
| namespace blink {
|
|
|
| -template <unsigned N>
|
| -static bool equalIgnoringCase(const CSSParserString& a, const char (&b)[N])
|
| -{
|
| - unsigned length = N - 1; // Ignore the trailing null character
|
| - if (a.length() != length)
|
| - return false;
|
| -
|
| - return a.is8Bit() ? WTF::equalIgnoringCase(b, a.characters8(), length) : WTF::equalIgnoringCase(b, a.characters16(), length);
|
| -}
|
| -
|
| void CSSPropertyParser::addProperty(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> value, bool important, bool implicit)
|
| {
|
| ASSERT(!isPropertyAlias(propId));
|
|
|