Title: [200477] trunk/Source/WebCore
Revision
200477
Author
[email protected]
Date
2016-05-05 14:16:36 -0700 (Thu, 05 May 2016)

Log Message

iOS debug build fix after r200464.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (200476 => 200477)


--- trunk/Source/WebCore/ChangeLog	2016-05-05 21:00:27 UTC (rev 200476)
+++ trunk/Source/WebCore/ChangeLog	2016-05-05 21:16:36 UTC (rev 200477)
@@ -1,3 +1,10 @@
+2016-05-05  Ryosuke Niwa  <[email protected]>
+
+        iOS debug build fix after r200464.
+
+        * dom/EventContext.cpp:
+        (WebCore::TouchEventContext::checkReachability):
+
 2016-05-05  Simon Fraser  <[email protected]>
 
         Revert r200390, thus putting r199259 and r200161 and back.

Modified: trunk/Source/WebCore/dom/EventContext.cpp (200476 => 200477)


--- trunk/Source/WebCore/dom/EventContext.cpp	2016-05-05 21:00:27 UTC (rev 200476)
+++ trunk/Source/WebCore/dom/EventContext.cpp	2016-05-05 21:16:36 UTC (rev 200477)
@@ -128,7 +128,7 @@
 {
     size_t length = touchList->length();
     for (size_t i = 0; i < length; ++i)
-        ASSERT(isReachable(touchList->item(i)->target()->toNode()));
+        ASSERT(!isUnreachableNode(touchList->item(i)->target()->toNode()));
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to