Changeset 207823 in webkit


Ignore:
Timestamp:
Oct 25, 2016, 9:34:32 AM (9 years ago)
Author:
Chris Dumez
Message:

Unreviewed, rolling out r207494.

iOS SDK has been updated on the bots now so rollout the
rollout

Reverted changeset:

"Unreviewed, rolling out r207413."
https://bugs.webkit.org/show_bug.cgi?id=163547
http://trac.webkit.org/changeset/207494

Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r207822 r207823  
     12016-10-25  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed, rolling out r207494.
     4
     5        iOS SDK has been updated on the bots now so rollout the
     6        rollout
     7
     8        Reverted changeset:
     9
     10        "Unreviewed, rolling out r207413."
     11        https://bugs.webkit.org/show_bug.cgi?id=163547
     12        http://trac.webkit.org/changeset/207494
     13
    1142016-10-25  Jonathan Bedard  <jbedard@apple.com>
    215
  • trunk/Source/WebKit2/Platform/spi/ios/UIKitSPI.h

    r207494 r207823  
    655655    UITouchPhase phase;
    656656#if __IPHONE_OS_VERSION_MIN_REQUIRED > 100000
    657     // FIXME: Uncomment this once UIKit is updated (rdar://problem/28555313).
    658     // CGFloat majorRadiusInScreenCoordinates;
     657    CGFloat majorRadiusInScreenCoordinates;
    659658    CGFloat force;
    660659    CGFloat altitudeAngle;
  • trunk/Source/WebKit2/Shared/ios/NativeWebTouchEventIOS.mm

    r207494 r207823  
    104104        WebPlatformTouchPoint platformTouchPoint = WebPlatformTouchPoint(identifier, location, phase);
    105105#if ENABLE(IOS_TOUCH_EVENTS)
    106         // FIXME: We should use touchPoint.majorRadiusInScreenCoordinates for radiusX / radiusY once it is available (rdar://problem/28555313).
    107         platformTouchPoint.setRadiusX(0);
    108         platformTouchPoint.setRadiusY(0);
     106        platformTouchPoint.setRadiusX(touchPoint.majorRadiusInScreenCoordinates);
     107        platformTouchPoint.setRadiusY(touchPoint.majorRadiusInScreenCoordinates);
    109108        platformTouchPoint.setRotationAngle(0); // Not available in _UIWebTouchEvent yet.
    110109        platformTouchPoint.setForce(touchPoint.force);
Note: See TracChangeset for help on using the changeset viewer.