Changeset 207823 in webkit
- Timestamp:
- Oct 25, 2016, 9:34:32 AM (9 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r207822 r207823 1 2016-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 1 14 2016-10-25 Jonathan Bedard <jbedard@apple.com> 2 15 -
trunk/Source/WebKit2/Platform/spi/ios/UIKitSPI.h
r207494 r207823 655 655 UITouchPhase phase; 656 656 #if __IPHONE_OS_VERSION_MIN_REQUIRED > 100000 657 // FIXME: Uncomment this once UIKit is updated (rdar://problem/28555313). 658 // CGFloat majorRadiusInScreenCoordinates; 657 CGFloat majorRadiusInScreenCoordinates; 659 658 CGFloat force; 660 659 CGFloat altitudeAngle; -
trunk/Source/WebKit2/Shared/ios/NativeWebTouchEventIOS.mm
r207494 r207823 104 104 WebPlatformTouchPoint platformTouchPoint = WebPlatformTouchPoint(identifier, location, phase); 105 105 #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); 109 108 platformTouchPoint.setRotationAngle(0); // Not available in _UIWebTouchEvent yet. 110 109 platformTouchPoint.setForce(touchPoint.force);
Note:
See TracChangeset
for help on using the changeset viewer.