Changeset 278339 in webkit
- Timestamp:
- Jun 1, 2021, 11:45:42 PM (5 years ago)
- Location:
- branches/safari-611-branch/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
dom/EventContext.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-611-branch/Source/WebCore/ChangeLog
r277960 r278339 1 2021-06-01 Ryan Haddad <ryanhaddad@apple.com> 2 3 Cherry-pick r273486. rdar://problem/75902605 4 5 Unreviewed. GLib debug buildfix after r273477 6 7 * dom/EventContext.cpp: 8 (WebCore::EventContext::handleLocalEvents const): 9 10 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@273486 268f45cc-cd09-0410-ab3c-d52691b4dbfc 11 12 2021-02-25 Lauro Moura <lmoura@igalia.com> 13 14 Unreviewed. GLib debug buildfix after r273477 15 16 * dom/EventContext.cpp: 17 (WebCore::EventContext::handleLocalEvents const): 18 1 19 2021-05-24 Alan Coon <alancoon@apple.com> 2 20 -
branches/safari-611-branch/Source/WebCore/dom/EventContext.cpp
r273533 r278339 58 58 for (size_t i = 0; i < length; ++i) 59 59 ASSERT(!isUnreachableNode(downcast<Node>(touchList->item(i)->target()))); 60 } 61 checkReachability( m_touches);62 checkReachability( m_targetTouches);63 checkReachability( m_changedTouches);60 }; 61 checkReachability(*m_touches); 62 checkReachability(*m_targetTouches); 63 checkReachability(*m_changedTouches); 64 64 #endif 65 65
Note:
See TracChangeset
for help on using the changeset viewer.