Chromium Code Reviews| Index: Source/core/css/CSSPropertySourceData.cpp |
| diff --git a/Source/core/css/CSSPropertySourceData.cpp b/Source/core/css/CSSPropertySourceData.cpp |
| index 6a5ff1b31bf0cd5e9a67fe4a7aa0db1ede230da9..7ead29b2e97c57a38a4f1b1eea71f9d87cd3ed18 100644 |
| --- a/Source/core/css/CSSPropertySourceData.cpp |
| +++ b/Source/core/css/CSSPropertySourceData.cpp |
| @@ -111,7 +111,7 @@ String CSSPropertySourceData::toString() const |
| unsigned CSSPropertySourceData::hash() const |
|
vsevik
2014/03/13 10:44:51
Can we replace it with equals?
|
| { |
| - return StringHash::hash(name) + 3 * StringHash::hash(value) + 7 * important + 13 * parsedOk + 31; |
| + return StringHash::hash(name) + 3 * StringHash::hash(value) + 7 * important + 13 * parsedOk + 31 * disabled + 71; |
| } |
| // Global init routines |