Changeset 207935 in webkit


Ignore:
Timestamp:
Oct 26, 2016, 10:46:15 PM (9 years ago)
Author:
mitz@apple.com
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.

Location:
trunk/Source/WebKit/ios
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ios/ChangeLog

    r204531 r207935  
     12016-10-26  Dan Bernstein  <mitz@apple.com>
     2
     3        Tried to fix the iOS build after r207934.
     4
     5        * WebCoreSupport/WebFrameIOS.mm:
     6        (-[WebFrame closestCaretRectInMarkedTextRangeForPoint:]): Removed commented-out code and
     7          a comment that had a typo in it and looked like a bad Doxygen trailing comment.
     8
    192016-08-16  Myles C. Maxfield  <mmaxfield@apple.com>
    210
  • trunk/Source/WebKit/ios/WebCoreSupport/WebFrameIOS.mm

    r200931 r207935  
    166166        if (pos == start || pos < start) {
    167167            start.setAffinity(UPSTREAM);
    168             //result = start.next().absoluteCaretBounds();
    169             result = start.absoluteCaretBounds(); //<rdar://problem/6716185>: Allow placing the caaret to the left of the first character.
     168            result = start.absoluteCaretBounds();
    170169        } else if (pos > end) {
    171170            end.setAffinity(DOWNSTREAM);
Note: See TracChangeset for help on using the changeset viewer.