Changeset 229940 in webkit


Ignore:
Timestamp:
Mar 23, 2018, 6:17:07 PM (7 years ago)
Author:
Megan Gardner
Message:

Enable unified text selection in select cases for gradual testing
https://bugs.webkit.org/show_bug.cgi?id=183967
<rdar://problem/38815328>

Reviewed by Tim Horton.

Enable in select places for a more gradual switch, as this is a big change and we want to make sure
it works before switching completely.

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView useSelectionAssistantWithGranularity:]):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r229936 r229940  
     12018-03-23  Megan Gardner  <megan_gardner@apple.com>
     2
     3        Enable unified text selection in select cases for gradual testing
     4        https://bugs.webkit.org/show_bug.cgi?id=183967
     5        <rdar://problem/38815328>
     6
     7        Reviewed by Tim Horton.
     8       
     9        Enable in select places for a more gradual switch, as this is a big change and we want to make sure
     10        it works before switching completely.
     11
     12        * UIProcess/ios/WKContentViewInteraction.mm:
     13        (-[WKContentView useSelectionAssistantWithGranularity:]):
     14
    1152018-03-23  John Wilander  <wilander@apple.com>
    216
  • trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm

    r229918 r229940  
    19041904- (void)useSelectionAssistantWithGranularity:(WKSelectionGranularity)selectionGranularity
    19051905{
     1906#if ENABLE(UNIFIED_TEXT_SELECTION)
     1907    selectionGranularity = WKSelectionGranularityCharacter;
     1908#endif
    19061909    if (selectionGranularity == WKSelectionGranularityDynamic) {
    19071910        if (_textSelectionAssistant) {
Note: See TracChangeset for help on using the changeset viewer.