Bug 132038

Summary: Cursor doesn't change back to pointer when leaving Mail
Product: WebKit Reporter: Ryosuke Niwa <rniwa>
Component: UI EventsAssignee: Ryosuke Niwa <rniwa>
Status: RESOLVED FIXED    
Severity: Normal CC: ap, commit-queue, darin, enrica, mitz, sam
Priority: P2 Keywords: InRadar, Regression
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on: 132142    
Bug Blocks:    
Attachments:
Description Flags
Fixes the bug
none
Patch for landing
none
Fixes the bug
none
Patch
none
Fixed change logs
none
Reverted the refactroing per Andres' request andersca: review+

Description Ryosuke Niwa 2014-04-22 21:57:05 PDT
Reproduction steps:
1. Visit simple-rte.rniwa.com
2. Focus the textarea in the bottom. Observe that the cursor is now I-beam.
3. Move the cursor towards the right edge of the Safari window (but keep it inside the window).
4. Rapidly move the mouse cursor out of the window.

Expected result:
The cursor changes to pointer

Actual result:
The cursor remains I-beam.

<rdar://problem/15345851>
Comment 1 Ryosuke Niwa 2014-04-22 21:57:31 PDT
This bug is partially caused by http://trac.webkit.org/changeset/147739.
Comment 2 Ryosuke Niwa 2014-04-22 22:08:35 PDT
Created attachment 229955 [details]
Fixes the bug
Comment 3 Alexey Proskuryakov 2014-04-22 22:15:26 PDT
Comment on attachment 229955 [details]
Fixes the bug

View in context: https://bugs.webkit.org/attachment.cgi?id=229955&action=review

> Source/WebCore/page/EventHandler.cpp:1386
> +        bool editable = node ? node->hasEditableStyle() : false;

I think that "node && node->hasEditableStyle()" would be more readable than a ternary.
Comment 4 Ryosuke Niwa 2014-04-22 22:35:26 PDT
(In reply to comment #3)
> (From update of attachment 229955 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=229955&action=review
> 
> > Source/WebCore/page/EventHandler.cpp:1386
> > +        bool editable = node ? node->hasEditableStyle() : false;
> 
> I think that "node && node->hasEditableStyle()" would be more readable than a ternary.

Will fix. Thanks for the review!
Comment 5 Ryosuke Niwa 2014-04-22 22:35:48 PDT
Created attachment 229957 [details]
Patch for landing
Comment 6 WebKit Commit Bot 2014-04-22 23:11:50 PDT
Comment on attachment 229957 [details]
Patch for landing

Clearing flags on attachment: 229957

Committed r167700: <http://trac.webkit.org/changeset/167700>
Comment 7 WebKit Commit Bot 2014-04-22 23:11:54 PDT
All reviewed patches have been landed.  Closing bug.
Comment 8 Darin Adler 2014-04-24 08:50:09 PDT
Comment on attachment 229955 [details]
Fixes the bug

View in context: https://bugs.webkit.org/attachment.cgi?id=229955&action=review

> Source/WebKit/mac/ChangeLog:14
> +        Instead, check whether the NSWindow of the WebView is the key window or not since
> +        key window appears to control the cursor style in Cocoa as far as I've tested:
> +        https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/WinPanel/Concepts/ChangingMainKeyWindow.html

Did you retest the problems described in <rdar://problem/14619911> to see if it’s still fixed?
Comment 9 WebKit Commit Bot 2014-04-24 13:55:36 PDT
Re-opened since this is blocked by bug 132142
Comment 10 Ryosuke Niwa 2015-03-25 18:27:18 PDT
Created attachment 249459 [details]
Fixes the bug
Comment 11 Ryosuke Niwa 2015-03-26 12:47:25 PDT
Created attachment 249508 [details]
Patch
Comment 12 Ryosuke Niwa 2015-03-26 12:48:41 PDT
Created attachment 249509 [details]
Fixed change logs
Comment 13 Ryosuke Niwa 2015-03-26 14:41:42 PDT
Created attachment 249513 [details]
Reverted the refactroing per Andres' request
Comment 14 Ryosuke Niwa 2015-03-26 14:44:03 PDT
Committed r182026: <http://trac.webkit.org/changeset/182026>