Title: [224748] trunk/Source/WebCore
Revision
224748
Author
[email protected]
Date
2017-11-13 00:23:45 -0800 (Mon, 13 Nov 2017)

Log Message

Unreviewed. Fix debug build with Touch Events enabled after r224740.

* dom/EventContext.cpp:
(WebCore::TouchEventContext::checkReachability const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (224747 => 224748)


--- trunk/Source/WebCore/ChangeLog	2017-11-13 07:54:55 UTC (rev 224747)
+++ trunk/Source/WebCore/ChangeLog	2017-11-13 08:23:45 UTC (rev 224748)
@@ -1,3 +1,10 @@
+2017-11-13  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix debug build with Touch Events enabled after r224740.
+
+        * dom/EventContext.cpp:
+        (WebCore::TouchEventContext::checkReachability const):
+
 2017-11-12  Maciej Stachowiak  <[email protected]>
 
         Remove support for UTF-32 variant text encodings

Modified: trunk/Source/WebCore/dom/EventContext.cpp (224747 => 224748)


--- trunk/Source/WebCore/dom/EventContext.cpp	2017-11-13 07:54:55 UTC (rev 224747)
+++ trunk/Source/WebCore/dom/EventContext.cpp	2017-11-13 08:23:45 UTC (rev 224748)
@@ -120,7 +120,7 @@
 {
     size_t length = touchList->length();
     for (size_t i = 0; i < length; ++i)
-        ASSERT(!isUnreachableNode(downcast<Node>(touchList->item(i)->target())->get()));
+        ASSERT(!isUnreachableNode(downcast<Node>(touchList->item(i)->target())));
 }
 
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to