| Index: third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/StylePropertySet.cpp b/third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| index 78a70e9dce6944681cfc7bfef88bb71297de0f92..0c5662fde1d1914f9de1eeeea22a8ff9989e03ad 100644
|
| --- a/third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| +++ b/third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| @@ -230,7 +230,7 @@ bool MutableStylePropertySet::removePropertyAtIndex(int propertyIndex,
|
|
|
| // A more efficient removal strategy would involve marking entries as empty
|
| // and sweeping them when the vector grows too big.
|
| - m_propertyVector.remove(propertyIndex);
|
| + m_propertyVector.erase(propertyIndex);
|
|
|
| return true;
|
| }
|
|
|