| Index: third_party/WebKit/Source/core/dom/IntersectionObserver.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/IntersectionObserver.cpp b/third_party/WebKit/Source/core/dom/IntersectionObserver.cpp
|
| index 913662e99f0a8fac218b1e2a6bc110f15c901fa4..ec7cc632f2cd84873dbc6fd596675503715cdc26 100644
|
| --- a/third_party/WebKit/Source/core/dom/IntersectionObserver.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/IntersectionObserver.cpp
|
| @@ -256,7 +256,7 @@ void IntersectionObserver::observe(Element* target,
|
| IntersectionObservation* observation =
|
| new IntersectionObservation(*this, *target, shouldReportRootBounds);
|
| target->ensureIntersectionObserverData().addObservation(*observation);
|
| - m_observations.add(observation);
|
| + m_observations.insert(observation);
|
| if (FrameView* frameView = targetFrame->view())
|
| frameView->scheduleAnimation();
|
| }
|
|
|