Changeset 243648 in webkit
- Timestamp:
- Mar 29, 2019, 10:44:14 AM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
platform/TouchAction.h (modified) (1 diff)
-
rendering/style/StyleRareNonInheritedData.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r243647 r243648 1 2019-03-29 Antoine Quint <graouts@apple.com> 2 3 WebKitTestRunner crashes when running pointerevents/ios/touch-action-none-in-overflow-scrolling-touch.html 4 https://bugs.webkit.org/show_bug.cgi?id=196345 5 6 Reviewed by Dean Jackson. 7 8 An enum used within a WTF::OptionSet needs to have only power-of-two values that are larger than 0. 9 10 * platform/TouchAction.h: 11 * rendering/style/StyleRareNonInheritedData.h: 12 1 13 2019-03-29 Michael Catanzaro <mcatanzaro@igalia.com> 2 14 -
trunk/Source/WebCore/platform/TouchAction.h
r240472 r243648 31 31 32 32 enum class TouchAction : uint8_t { 33 Auto = 0,34 None = 1 << 0,35 Manipulation = 1 << 1,36 PanX = 1 << 2,37 PanY = 1 << 3,38 PinchZoom = 1 << 4,33 Auto = 1 << 0, 34 None = 1 << 1, 35 Manipulation = 1 << 2, 36 PanX = 1 << 3, 37 PanY = 1 << 4, 38 PinchZoom = 1 << 5, 39 39 }; 40 40 -
trunk/Source/WebCore/rendering/style/StyleRareNonInheritedData.h
r240472 r243648 176 176 177 177 #if ENABLE(POINTER_EVENTS) 178 unsigned touchActions : 5; // TouchAction178 unsigned touchActions : 6; // TouchAction 179 179 #endif 180 180
Note:
See TracChangeset
for help on using the changeset viewer.