mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-10 00:50:38 +01:00
Fix debug assertion on right-click context menu.
This commit is contained in:
parent
10c1fd6b8d
commit
594fde704e
@ -256,4 +256,10 @@ patches = [
|
|||||||
'name': 'storage_partition_1973',
|
'name': 'storage_partition_1973',
|
||||||
'path': '../',
|
'path': '../',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
# Fix debug assertion on right-click context menu.
|
||||||
|
# https://codereview.chromium.org/2288083002
|
||||||
|
'name': 'webkit_eventhandler_2288083002',
|
||||||
|
'path': '../',
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
15
patch/patches/webkit_eventhandler_2288083002.patch
Normal file
15
patch/patches/webkit_eventhandler_2288083002.patch
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
diff --git third_party/WebKit/Source/core/input/EventHandler.cpp third_party/WebKit/Source/core/input/EventHandler.cpp
|
||||||
|
index 9c49350..aa5e6a9 100644
|
||||||
|
--- third_party/WebKit/Source/core/input/EventHandler.cpp
|
||||||
|
+++ third_party/WebKit/Source/core/input/EventHandler.cpp
|
||||||
|
@@ -2039,6 +2039,10 @@ WebInputEventResult EventHandler::sendContextMenuEvent(const PlatformMouseEvent&
|
||||||
|
LayoutPoint positionInContents = v->rootFrameToContents(event.position());
|
||||||
|
HitTestRequest request(HitTestRequest::Active);
|
||||||
|
MouseEventWithHitTestResults mev = m_frame->document()->prepareMouseEvent(request, positionInContents, event);
|
||||||
|
+ // Since |Document::prepareMouseEvent()| modifies layout tree for setting
|
||||||
|
+ // hover element, we need to update layout tree for requirement of
|
||||||
|
+ // |SelectionController::sendContextMenuEvent()|.
|
||||||
|
+ m_frame->document()->updateStyleAndLayoutIgnorePendingStylesheets();
|
||||||
|
|
||||||
|
selectionController().sendContextMenuEvent(mev, positionInContents);
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user