| Index: third_party/WebKit/Source/core/paint/BoxPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/BoxPainter.cpp b/third_party/WebKit/Source/core/paint/BoxPainter.cpp
|
| index a58f9ca85b05d3bed0faf68caef6146940198add..fd646a7bf936b593a30901d92f05eaf77b1d5fe7 100644
|
| --- a/third_party/WebKit/Source/core/paint/BoxPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/BoxPainter.cpp
|
| @@ -271,7 +271,7 @@ bool BoxPainter::calculateFillLayerOcclusionCulling(
|
| bool isNonAssociative = false;
|
| for (auto currentLayer = &fillLayer; currentLayer;
|
| currentLayer = currentLayer->next()) {
|
| - reversedPaintList.append(currentLayer);
|
| + reversedPaintList.push_back(currentLayer);
|
| // Stop traversal when an opaque layer is encountered.
|
| // FIXME : It would be possible for the following occlusion culling test to
|
| // be more aggressive on layers with no repeat by testing whether the image
|
|
|