Title: [174010] trunk/Source/WebCore
Revision
174010
Author
[email protected]
Date
2014-09-26 10:02:37 -0700 (Fri, 26 Sep 2014)

Log Message

iOS build fix following r173989.

* page/ios/FrameIOS.mm:
(WebCore::ancestorRespondingToClickEvents):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (174009 => 174010)


--- trunk/Source/WebCore/ChangeLog	2014-09-26 16:58:41 UTC (rev 174009)
+++ trunk/Source/WebCore/ChangeLog	2014-09-26 17:02:37 UTC (rev 174010)
@@ -1,3 +1,10 @@
+2014-09-26  Dan Bernstein  <[email protected]>
+
+        iOS build fix following r173989.
+
+        * page/ios/FrameIOS.mm:
+        (WebCore::ancestorRespondingToClickEvents):
+
 2014-09-26  Javier Fernandez  <[email protected]>
 
         [CSS Grid Layout] Empty string case already covered by containesOnlyWhiteSpace.

Modified: trunk/Source/WebCore/page/ios/FrameIOS.mm (174009 => 174010)


--- trunk/Source/WebCore/page/ios/FrameIOS.mm	2014-09-26 16:58:41 UTC (rev 174009)
+++ trunk/Source/WebCore/page/ios/FrameIOS.mm	2014-09-26 17:02:37 UTC (rev 174010)
@@ -337,7 +337,7 @@
             pointerCursorStillValid = false;
 
         // If we haven't reached the body, and we are still paying attention to pointer cursors, and the node has a pointer cursor...
-        if (pointerCursorStillValid && node->renderStyle() && node->renderStyle()->cursor() == CURSOR_POINTER)
+        if (pointerCursorStillValid && node->renderStyle() && node->renderStyle()->cursor() == CursorPointer)
             pointerCursorNode = node;
         // We want the lowest unbroken chain of pointer cursors.
         else if (pointerCursorNode)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to