Title: [134826] branches/safari-536.28-branch/Source/WebCore
Revision
134826
Author
[email protected]
Date
2012-11-15 13:36:25 -0800 (Thu, 15 Nov 2012)

Log Message

Merged r130449.  <rdar://problem/12536387>

Modified Paths

Diff

Modified: branches/safari-536.28-branch/Source/WebCore/ChangeLog (134825 => 134826)


--- branches/safari-536.28-branch/Source/WebCore/ChangeLog	2012-11-15 21:34:44 UTC (rev 134825)
+++ branches/safari-536.28-branch/Source/WebCore/ChangeLog	2012-11-15 21:36:25 UTC (rev 134826)
@@ -1,3 +1,19 @@
+2012-11-15  Lucas Forschler  <[email protected]>
+
+        Merge r130449
+
+    2012-10-04  Nate Chapin  <[email protected]>
+
+            Crash in EventHandler::mouseMoved().
+            https://bugs.webkit.org/show_bug.cgi?id=98460
+
+            Reviewed by Abhishek Arya.
+
+            No new tests, this fixes fast/events/mouse-moved-remove-frame-crash.html.
+
+            * page/EventHandler.cpp:
+            (WebCore::EventHandler::mouseMoved):
+
 2012-11-14  Simon Fraser  <[email protected]>
 
         <rdar://problem/12705908> Scrolling some versions of the facebook page is very slow

Modified: branches/safari-536.28-branch/Source/WebCore/page/EventHandler.cpp (134825 => 134826)


--- branches/safari-536.28-branch/Source/WebCore/page/EventHandler.cpp	2012-11-15 21:34:44 UTC (rev 134825)
+++ branches/safari-536.28-branch/Source/WebCore/page/EventHandler.cpp	2012-11-15 21:36:25 UTC (rev 134826)
@@ -1672,8 +1672,8 @@
 
 bool EventHandler::mouseMoved(const PlatformMouseEvent& event)
 {
+    RefPtr<FrameView> protector(m_frame->view());
     MaximumDurationTracker maxDurationTracker(&m_maxMouseMovedDuration);
-    RefPtr<FrameView> protector(m_frame->view());
 
 
 #if ENABLE(TOUCH_EVENTS)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to