Changeset 196009 in webkit


Ignore:
Timestamp:
Feb 2, 2016 8:16:32 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

REGRESSION(r195899): ASSERTION FAILED: is<Target>(source) in EventPath::retargetTouch() since r195899
https://bugs.webkit.org/show_bug.cgi?id=153741

Patch by Adrien Plazas <aplazas@igalia.com> on 2016-02-02
Reviewed by Ryosuke Niwa.

  • dom/EventDispatcher.cpp:

(WebCore::EventPath::retargetTouch):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r195999 r196009  
     12016-02-02  Adrien Plazas  <aplazas@igalia.com>
     2
     3        REGRESSION(r195899): ASSERTION FAILED: is<Target>(source) in EventPath::retargetTouch() since r195899
     4        https://bugs.webkit.org/show_bug.cgi?id=153741
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * dom/EventDispatcher.cpp:
     9        (WebCore::EventPath::retargetTouch):
     10
    1112016-02-01  Joseph Pecoraro  <pecoraro@apple.com>
    212
  • trunk/Source/WebCore/dom/EventDispatcher.cpp

    r195899 r196009  
    550550        return;
    551551
    552     RelatedNodeRetargeter retargeter(*targetNode, downcast<MouseOrFocusEventContext>(*m_path[0]).node()->treeScope());
     552    RelatedNodeRetargeter retargeter(*targetNode, m_path[0]->node()->treeScope());
    553553    TreeScope* previousTreeScope = nullptr;
    554554    for (auto& context : m_path) {
Note: See TracChangeset for help on using the changeset viewer.