RESOLVED FIXED 212075
[macOS] Drag and drop within a contenteditable area duplicates attachment-backed images
https://bugs.webkit.org/show_bug.cgi?id=212075
Summary [macOS] Drag and drop within a contenteditable area duplicates attachment-bac...
Wenson Hsieh
Reported 2020-05-19 08:27:14 PDT
Attachments
Patch (12.61 KB, patch)
2020-05-19 09:32 PDT, Wenson Hsieh
aestes: review+
Fix WPE build (12.74 KB, patch)
2020-05-19 10:34 PDT, Wenson Hsieh
no flags
Wenson Hsieh
Comment 1 2020-05-19 09:32:23 PDT
Andy Estes
Comment 2 2020-05-19 10:00:15 PDT
Comment on attachment 399742 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=399742&action=review > Source/WebKit/UIProcess/WebPageProxy.cpp:2458 > + m_mouseEventQueue.takeLast(); Maybe you want removeLast instead since you aren’t actually taking?
Wenson Hsieh
Comment 3 2020-05-19 10:34:27 PDT
Created attachment 399749 [details] Fix WPE build
Wenson Hsieh
Comment 4 2020-05-19 10:35:11 PDT
Comment on attachment 399742 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=399742&action=review >> Source/WebKit/UIProcess/WebPageProxy.cpp:2458 >> + m_mouseEventQueue.takeLast(); > > Maybe you want removeLast instead since you aren’t actually taking? Good call — changed this to: while (m_mouseEventQueue.size() > 1) m_mouseEventQueue.removeLast();
EWS
Comment 5 2020-05-19 11:40:27 PDT
Committed r261875: <https://trac.webkit.org/changeset/261875> All reviewed patches have been landed. Closing bug and clearing flags on attachment 399749 [details].
Note You need to log in before you can comment on or make changes to this bug.