Title: [207935] trunk/Source/WebKit/ios
Revision
207935
Author
[email protected]
Date
2016-10-26 22:46:15 -0700 (Wed, 26 Oct 2016)

Log Message

Tried to fix the iOS build after r207934.

* WebCoreSupport/WebFrameIOS.mm:
(-[WebFrame closestCaretRectInMarkedTextRangeForPoint:]): Removed commented-out code and
  a comment that had a typo in it and looked like a bad Doxygen trailing comment.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ios/ChangeLog (207934 => 207935)


--- trunk/Source/WebKit/ios/ChangeLog	2016-10-27 05:17:34 UTC (rev 207934)
+++ trunk/Source/WebKit/ios/ChangeLog	2016-10-27 05:46:15 UTC (rev 207935)
@@ -1,3 +1,11 @@
+2016-10-26  Dan Bernstein  <[email protected]>
+
+        Tried to fix the iOS build after r207934.
+
+        * WebCoreSupport/WebFrameIOS.mm:
+        (-[WebFrame closestCaretRectInMarkedTextRangeForPoint:]): Removed commented-out code and
+          a comment that had a typo in it and looked like a bad Doxygen trailing comment.
+
 2016-08-16  Myles C. Maxfield  <[email protected]>
 
         Migrate line breaking code from ints to Optional<unsigned>s

Modified: trunk/Source/WebKit/ios/WebCoreSupport/WebFrameIOS.mm (207934 => 207935)


--- trunk/Source/WebKit/ios/WebCoreSupport/WebFrameIOS.mm	2016-10-27 05:17:34 UTC (rev 207934)
+++ trunk/Source/WebKit/ios/WebCoreSupport/WebFrameIOS.mm	2016-10-27 05:46:15 UTC (rev 207935)
@@ -165,8 +165,7 @@
         
         if (pos == start || pos < start) {
             start.setAffinity(UPSTREAM);
-            //result = start.next().absoluteCaretBounds();
-            result = start.absoluteCaretBounds(); //<rdar://problem/6716185>: Allow placing the caaret to the left of the first character.
+            result = start.absoluteCaretBounds();
         } else if (pos > end) {
             end.setAffinity(DOWNSTREAM);
             result = end.absoluteCaretBounds();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to