Title: [148039] trunk/Source/WebCore
Revision
148039
Author
[email protected]
Date
2013-04-09 12:55:01 -0700 (Tue, 09 Apr 2013)

Log Message

AX: Bounding paths should be made available through accessibility
https://bugs.webkit.org/show_bug.cgi?id=113817

Reviewed by Tim Horton.

Minor fix from review feedback.

* accessibility/mac/WebAccessibilityObjectWrapperMac.mm:
(-[WebAccessibilityObjectWrapper convertPointToScreenSpace:]):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (148038 => 148039)


--- trunk/Source/WebCore/ChangeLog	2013-04-09 19:48:01 UTC (rev 148038)
+++ trunk/Source/WebCore/ChangeLog	2013-04-09 19:55:01 UTC (rev 148039)
@@ -1,3 +1,15 @@
+2013-04-09  Chris Fleizach  <[email protected]>
+
+        AX: Bounding paths should be made available through accessibility
+        https://bugs.webkit.org/show_bug.cgi?id=113817
+
+        Reviewed by Tim Horton.
+
+        Minor fix from review feedback.
+
+        * accessibility/mac/WebAccessibilityObjectWrapperMac.mm:
+        (-[WebAccessibilityObjectWrapper convertPointToScreenSpace:]):
+
 2013-04-09  Tim Horton  <[email protected]>
 
         [wk2] IconDatabase images should be decoded in the WebProcess

Modified: trunk/Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapperMac.mm (148038 => 148039)


--- trunk/Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapperMac.mm	2013-04-09 19:48:01 UTC (rev 148038)
+++ trunk/Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapperMac.mm	2013-04-09 19:55:01 UTC (rev 148039)
@@ -1509,7 +1509,7 @@
             }
         }
         
-        IntPoint intPoint = (IntPoint)point;
+        IntPoint intPoint = IntPoint(point);
         if (scrollView)
             intPoint = scrollView->contentsToRootView(intPoint);
         
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to