Changeset 277362 in webkit
- Timestamp:
- May 12, 2021, 1:09:06 AM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
Shared/RemoteLayerTree/RemoteScrollingCoordinatorTransaction.cpp (modified) (2 diffs)
-
Shared/WebCoreArgumentCoders.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r277357 r277362 1 2021-05-12 Martin Robinson <mrobinson@igalia.com> 2 3 REGRESSION(r277083): Proximity scroll snap is broken on iOS 4 https://bugs.webkit.org/show_bug.cgi?id=225649 5 6 Reviewed by Simon Fraser. 7 8 No new tests. iOS does not have great support for the event sending test 9 infrastructure used to test scroll snap. 10 11 * Shared/RemoteLayerTree/RemoteScrollingCoordinatorTransaction.cpp: 12 (ArgumentCoder<FloatScrollSnapOffsetsInfo>::encode): Include the snap type when encoding ScrollSnapOffsetsInfo. 13 (ArgumentCoder<FloatScrollSnapOffsetsInfo>::decode): Include the snap type when decoding ScrollSnapOffsetsInfo. 14 * Shared/WebCoreArgumentCoders.h: Added EnumTraits for ScrollSnapStrictness. 15 1 16 2021-05-11 Chris Dumez <cdumez@apple.com> 2 17 -
trunk/Source/WebKit/Shared/RemoteLayerTree/RemoteScrollingCoordinatorTransaction.cpp
r277093 r277362 551 551 encoder << info.horizontalSnapOffsets; 552 552 encoder << info.verticalSnapOffsets; 553 encoder << info.strictness; 553 554 encoder << info.snapAreas; 554 555 } … … 559 560 return false; 560 561 if (!decoder.decode(info.verticalSnapOffsets)) 562 return false; 563 if (!decoder.decode(info.strictness)) 561 564 return false; 562 565 if (!decoder.decode(info.snapAreas)) -
trunk/Source/WebKit/Shared/WebCoreArgumentCoders.h
r277313 r277362 1013 1013 #endif 1014 1014 1015 template<> struct EnumTraits<WebCore::ScrollSnapStrictness> { 1016 using values = EnumValues< 1017 WebCore::ScrollSnapStrictness, 1018 WebCore::ScrollSnapStrictness::None, 1019 WebCore::ScrollSnapStrictness::Proximity, 1020 WebCore::ScrollSnapStrictness::Mandatory 1021 >; 1022 }; 1023 1015 1024 } // namespace WTF
Note:
See TracChangeset
for help on using the changeset viewer.