Changeset 245659 in webkit
- Timestamp:
- May 22, 2019, 4:46:28 PM (7 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-block-expected.txt (modified) (1 diff)
-
fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-block.html (modified) (1 diff)
-
fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-document-expected.txt (modified) (1 diff)
-
fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-document.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r245656 r245659 1 2019-05-22 Simon Fraser <simon.fraser@apple.com> 2 3 <rdar://problem/50058173> REGRESSION (r243347) Layout tests fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on* are failing 4 5 Unreviewed test gardening. 6 7 I confirmed that “cancelable” is no longer true because 8 WebPageProxy::handleTouchEventSynchronously() is dispatching the events 9 asynchronously, so setCanPreventNativeGestures is set to false. 10 11 The exception is because the “touchEnd” event has no touches. 12 13 * fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-block-expected.txt: 14 * fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-block.html: 15 * fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-document-expected.txt: 16 * fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-document.html: 17 1 18 2019-05-22 Simon Fraser <simon.fraser@apple.com> 2 19 -
trunk/LayoutTests/fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-block-expected.txt
r202531 r245659 11 11 PASS document.getElementById('eventTarget').scrollTop is 0 12 12 PASS document.getElementById('eventTarget').scrollLeft is 0 13 Received cancelable event touchstart at 50, 150 14 Received cancelable event touchmove at 50, 50 13 Received event touchstart at 50, 150 14 Received event touchmove at 50, 50 15 Received event touchend 16 Dispatched Drag 15 17 PASS window.scrollX is 0 16 18 PASS window.scrollY is 0 -
trunk/LayoutTests/fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-block.html
r243347 r245659 46 46 47 47 function touchEventHandler(event) { 48 debug("Received" + (event.cancelable ? " cancelable" : "") + " event " + event.type + " at " + event.touches[0].clientX + ", " + event.touches[0].clientY); 48 if (event.touches.length) 49 debug("Received" + (event.cancelable ? " cancelable" : "") + " event " + event.type + " at " + event.touches[0].clientX + ", " + event.touches[0].clientY); 50 else 51 debug("Received" + (event.cancelable ? " cancelable" : "") + " event " + event.type); 49 52 } 50 53 eventTarget.addEventListener('touchstart', touchEventHandler, { 'passive': true }); -
trunk/LayoutTests/fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-document-expected.txt
r202531 r245659 11 11 PASS document.getElementById('eventTarget').scrollTop is 0 12 12 PASS document.getElementById('eventTarget').scrollLeft is 0 13 Received cancelable event touchstart at 50, 150 14 Received cancelable event touchmove at 50, 50 13 Received event touchstart at 50, 150 14 Received event touchmove at 50, 50 15 Received event touchend 16 Dispatched Drag 15 17 PASS window.scrollX is 0 16 18 PASS window.scrollY is 0 -
trunk/LayoutTests/fast/events/touch/ios/drag-block-without-overflow-scroll-and-passive-observer-on-document.html
r243347 r245659 46 46 47 47 function touchEventHandler(event) { 48 debug("Received" + (event.cancelable ? " cancelable" : "") + " event " + event.type + " at " + event.touches[0].clientX + ", " + event.touches[0].clientY); 48 if (event.touches.length) 49 debug("Received" + (event.cancelable ? " cancelable" : "") + " event " + event.type + " at " + event.touches[0].clientX + ", " + event.touches[0].clientY); 50 else 51 debug("Received" + (event.cancelable ? " cancelable" : "") + " event " + event.type); 49 52 } 50 53 document.addEventListener('touchstart', touchEventHandler, { 'passive': true });
Note:
See TracChangeset
for help on using the changeset viewer.