Changeset 178617 in webkit


Ignore:
Timestamp:
Jan 16, 2015 5:49:53 PM (9 years ago)
Author:
Brent Fulgham
Message:

[Mac] Correct infinite loop in Wheel Handler code in EventHandlerMac
https://bugs.webkit.org/show_bug.cgi?id=140564
<rdar://problem/19386426.

Reviewed by Dean Jackson.

  • page/mac/EventHandlerMac.mm:

(WebCore::latchingIsLockedToAncestorOfThisFrame): Put missing assignment
back into the loop!

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r178613 r178617  
     12015-01-16  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Mac] Correct infinite loop in Wheel Handler code in EventHandlerMac
     4        https://bugs.webkit.org/show_bug.cgi?id=140564
     5        <rdar://problem/19386426.
     6
     7        Reviewed by Dean Jackson.
     8
     9        * page/mac/EventHandlerMac.mm:
     10        (WebCore::latchingIsLockedToAncestorOfThisFrame): Put missing assignment
     11        back into the loop!
     12
    1132015-01-16  Zalan Bujtas  <zalan@apple.com>
    214
  • trunk/Source/WebCore/page/mac/EventHandlerMac.mm

    r177912 r178617  
    835835        return false;
    836836
    837     for (Frame* ancestor = frame.tree().parent(); ancestor; ancestor->tree().parent()) {
     837    for (Frame* ancestor = frame.tree().parent(); ancestor; ancestor = ancestor->tree().parent()) {
    838838        if (ancestor == latchedState->frame())
    839839            return true;
Note: See TracChangeset for help on using the changeset viewer.