| Index: Source/core/css/parser/SizesCalcParserTest.cpp
|
| diff --git a/Source/core/css/parser/SizesCalcParserTest.cpp b/Source/core/css/parser/SizesCalcParserTest.cpp
|
| index b43a1fd3e4ee7a9ae0fd7cae1e92190ccf94b49a..bc003f50489caa26717f76614d87adb260c1792b 100644
|
| --- a/Source/core/css/parser/SizesCalcParserTest.cpp
|
| +++ b/Source/core/css/parser/SizesCalcParserTest.cpp
|
| @@ -33,7 +33,7 @@ static void verifyCSSCalc(String text, double value, bool valid, unsigned fontSi
|
| {
|
| CSSLengthArray lengthArray;
|
| initLengthArray(lengthArray);
|
| - RefPtrWillBeRawPtr<CSSValue> cssValue = CSSParser::parseSingleValue(CSSPropertyLeft, text);
|
| + RefPtr<CSSValue> cssValue = CSSParser::parseSingleValue(CSSPropertyLeft, text);
|
| CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(cssValue.get());
|
| if (primitiveValue)
|
| primitiveValue->accumulateLengthArray(lengthArray);
|
|
|