| Index: Source/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp
|
| index e780214ff5872f2ee53d603785c2062b5520dbe9..b60db29bda7bf58e4b572b40352e61a6a7822fea 100644
|
| --- a/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -3760,7 +3760,7 @@ bool CSSPropertyParser::parseGridTrackRepeatFunction(CSSValueList& list)
|
|
|
| for (size_t i = 0; i < repetitions; ++i) {
|
| for (size_t j = 0; j < repeatedValues->length(); ++j)
|
| - list.append(repeatedValues->itemWithoutBoundsCheck(j));
|
| + list.append(repeatedValues->item(j));
|
| }
|
|
|
| // parseGridTrackSize iterated over the repeat arguments, move to the next value.
|
| @@ -7327,7 +7327,7 @@ PassRefPtrWillBeRawPtr<CSSFilterValue> CSSPropertyParser::parseBuiltinFilterArgu
|
| if (!shadowValueList || shadowValueList->length() != 1)
|
| return nullptr;
|
|
|
| - filterValue->append((shadowValueList.release())->itemWithoutBoundsCheck(0));
|
| + filterValue->append((shadowValueList.release())->item(0));
|
| break;
|
| }
|
| default:
|
|
|