| Index: third_party/WebKit/Source/core/html/HTMLDimension.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLDimension.cpp b/third_party/WebKit/Source/core/html/HTMLDimension.cpp
|
| index 21cf532b85eabe4949fa03c2a66ba375a4e8fa71..9109a5a0b109df288ee3b13a460e771b7f249f4e 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLDimension.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLDimension.cpp
|
| @@ -75,7 +75,7 @@ static HTMLDimension parseDimension(const CharacterType* characters,
|
| (isASCIIDigit(characters[position]) ||
|
| isASCIISpace(characters[position]))) {
|
| if (isASCIIDigit(characters[position]))
|
| - fractionNumbers.append(characters[position]);
|
| + fractionNumbers.push_back(characters[position]);
|
| ++position;
|
| }
|
|
|
| @@ -138,12 +138,12 @@ Vector<HTMLDimension> parseListOfDimensions(const String& input) {
|
| if (nextComma == kNotFound)
|
| break;
|
|
|
| - parsedDimensions.append(
|
| + parsedDimensions.push_back(
|
| parseDimension(trimmedString, lastParsedIndex, nextComma));
|
| lastParsedIndex = nextComma + 1;
|
| }
|
|
|
| - parsedDimensions.append(
|
| + parsedDimensions.push_back(
|
| parseDimension(trimmedString, lastParsedIndex, trimmedString.length()));
|
| return parsedDimensions;
|
| }
|
|
|