| Index: Source/core/css/parser/CSSPropertyParserTest.cpp
|
| diff --git a/Source/core/css/parser/CSSPropertyParserTest.cpp b/Source/core/css/parser/CSSPropertyParserTest.cpp
|
| index dc58ef3e9f609b957764f3feb1df5b032394f969..229a499001803e8214c5d14458adb573feed2fcd 100644
|
| --- a/Source/core/css/parser/CSSPropertyParserTest.cpp
|
| +++ b/Source/core/css/parser/CSSPropertyParserTest.cpp
|
| @@ -49,7 +49,7 @@ TEST(CSSPropertyParserTest, GridTrackLimits)
|
| };
|
|
|
| for (unsigned i = 0; i < WTF_ARRAY_LENGTH(testCases); ++i) {
|
| - RefPtrWillBeRawPtr<CSSValue> value = CSSParser::parseSingleValue(testCases[i].propertyID, testCases[i].input);
|
| + RefPtr<CSSValue> value = CSSParser::parseSingleValue(testCases[i].propertyID, testCases[i].input);
|
| ASSERT_TRUE(value);
|
| ASSERT_TRUE(value->isValueList());
|
| EXPECT_EQ(computeNumberOfTracks(toCSSValueList(value.get())), testCases[i].output);
|
|
|