| Index: Source/core/events/EventDispatcher.cpp
|
| diff --git a/Source/core/events/EventDispatcher.cpp b/Source/core/events/EventDispatcher.cpp
|
| index 3e875ed20aa23158667beea48441e55292c02930..b9c64a68870b2ccc612f67737b07f9183d440d2e 100644
|
| --- a/Source/core/events/EventDispatcher.cpp
|
| +++ b/Source/core/events/EventDispatcher.cpp
|
| @@ -76,7 +76,7 @@ void EventDispatcher::dispatchSimulatedClick(Node* node, Event* underlyingEvent,
|
| // This persistent vector doesn't cause leaks, because added Nodes are removed
|
| // before dispatchSimulatedClick() returns. This vector is here just to prevent
|
| // the code from running into an infinite recursion of dispatchSimulatedClick().
|
| - DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<WillBeHeapHashSet<RawPtrWillBeMember<Node> > >, nodesDispatchingSimulatedClicks, (adoptPtrWillBeNoop(new WillBeHeapHashSet<RawPtrWillBeMember<Node> >())));
|
| + DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<WillBeHeapHashSet<RawPtrWillBeMember<Node>>>, nodesDispatchingSimulatedClicks, (adoptPtrWillBeNoop(new WillBeHeapHashSet<RawPtrWillBeMember<Node>>())));
|
|
|
| if (isDisabledFormControl(node))
|
| return;
|
|
|