| Index: third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| index 786449fb35c9431719650de6bd0a451cddff4080..c86eecd23bcb11405ff93ff668cc7856c6edd9dd 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| @@ -3089,7 +3089,7 @@ void PaintLayer::computeSelfHitTestRects(LayerHitTestRects& rects) const {
|
| if (const PaintLayer* parentLayer = parent()) {
|
| LayerHitTestRects::iterator iter = rects.find(parentLayer);
|
| if (iter == rects.end()) {
|
| - rects.add(parentLayer, Vector<LayoutRect>())
|
| + rects.insert(parentLayer, Vector<LayoutRect>())
|
| .storedValue->value.push_back(physicalBoundingBox(parentLayer));
|
| } else {
|
| iter->value.push_back(physicalBoundingBox(parentLayer));
|
|
|