Index: Source/core/editing/FrameSelection.cpp |
diff --git a/Source/core/editing/FrameSelection.cpp b/Source/core/editing/FrameSelection.cpp |
index 7427627bec55cb9841ddb15d3c94aaa91ded876f..74ef33ceb09ee04bd4810bdd7c24abe4ec07b5c0 100644 |
--- a/Source/core/editing/FrameSelection.cpp |
+++ b/Source/core/editing/FrameSelection.cpp |
@@ -296,6 +296,7 @@ void FrameSelection::setSelection(const VisibleSelection& newSelection, SetSelec |
notifyAccessibilityForSelectionChange(); |
notifyCompositorForSelectionChange(); |
+ notifyEventHandlerForSelectionChange(); |
m_frame->domWindow()->enqueueDocumentEvent(Event::create(EventTypeNames::selectionchange)); |
} |
@@ -1464,6 +1465,11 @@ void FrameSelection::notifyCompositorForSelectionChange() |
scheduleVisualUpdate(); |
} |
+void FrameSelection::notifyEventHandlerForSelectionChange() |
+{ |
+ m_frame->eventHandler().notifySelectionChanged(); |
+} |
+ |
void FrameSelection::focusedOrActiveStateChanged() |
{ |
bool activeAndFocused = isFocusedAndActive(); |