Index: third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp |
diff --git a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp |
index e8b53dbc12661dec5cd34064fa434c41dba2baa9..452cd79e4b5f44cf4ed20fdcdaa21a19624527cc 100644 |
--- a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp |
+++ b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp |
@@ -96,9 +96,9 @@ void PaintWorkletGlobalScope::registerPaint(const String& name, |
for (const auto& property : properties) { |
CSSPropertyID propertyID = cssPropertyID(property); |
if (propertyID == CSSPropertyVariable) { |
- customInvalidationProperties.append(property); |
+ customInvalidationProperties.push_back(property); |
} else if (propertyID != CSSPropertyInvalid) { |
- nativeInvalidationProperties.append(propertyID); |
+ nativeInvalidationProperties.push_back(propertyID); |
} |
} |
} |