Changeset 207935 in webkit
- Timestamp:
- Oct 26, 2016, 10:46:15 PM (9 years ago)
- Location:
- trunk/Source/WebKit/ios
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ios/ChangeLog
r204531 r207935 1 2016-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 1 9 2016-08-16 Myles C. Maxfield <mmaxfield@apple.com> 2 10 -
trunk/Source/WebKit/ios/WebCoreSupport/WebFrameIOS.mm
r200931 r207935 166 166 if (pos == start || pos < start) { 167 167 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(); 170 169 } else if (pos > end) { 171 170 end.setAffinity(DOWNSTREAM);
Note:
See TracChangeset
for help on using the changeset viewer.