Bug 80458 - REGRESSION(r96566): Cursor is I-beam upon dragging an attachment in mail
Summary: REGRESSION(r96566): Cursor is I-beam upon dragging an attachment in mail
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit Misc. (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-03-06 17:25 PST by Adele Peterson
Modified: 2012-03-19 13:02 PDT (History)
1 user (show)

See Also:


Attachments
patch (1.96 KB, patch)
2012-03-06 17:34 PST, Adele Peterson
mitz: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Adele Peterson 2012-03-06 17:25:40 PST
REGRESSION(r96566): Cursor is I-beam upon dragging an attachment in mail
Comment 1 Adele Peterson 2012-03-06 17:26:06 PST
<rdar://problem/10873195>
Comment 2 Adele Peterson 2012-03-06 17:34:00 PST
Created attachment 130489 [details]
patch
Comment 3 Adele Peterson 2012-03-07 09:24:37 PST
Committed revision 110063.
Comment 4 Konrad Piascik 2012-03-19 13:02:24 PDT
> Source/WebCore/page/EventHandler.cpp:1289
> +    if (m_mousePressed && m_mouseDownMayStartSelect && !m_mouseDownMayStartDrag && m_frame->selection()->isCaretOrRange() && !m_capturingMouseEventsNode)

This breaks ports that don't have DRAG_SUPPORT enabled since m_mouseDownMayStartDrag is declared behind the  #if ENABLE(DRAG_SUPPORT) flag.