WebKit Bugzilla
Attachment 373003 Details for
Bug 199259
: pointerevents/ios/pointer-events-implicit-capture.html fails on iOS
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-199259-20190627080454.patch (text/plain), 2.11 KB, created by
Antoine Quint
on 2019-06-26 23:04:55 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Antoine Quint
Created:
2019-06-26 23:04:55 PDT
Size:
2.11 KB
patch
obsolete
>Subversion Revision: 246869 >diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog >index a5063343ad084b9f3565496a0c868ba16ff978d0..fafc4d7cf8182530de643515b99bf1b476624e17 100644 >--- a/LayoutTests/ChangeLog >+++ b/LayoutTests/ChangeLog >@@ -1,3 +1,17 @@ >+2019-06-26 Antoine Quint <graouts@apple.com> >+ >+ pointerevents/ios/pointer-events-implicit-capture.html fails on iOS >+ https://bugs.webkit.org/show_bug.cgi?id=199259 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ The assumptions made by this test were incorrect. The "gotpointercapture" event should not be dispatched >+ until the next pointer event is dispatched after setting pointer capture. Even though pointer capture is >+ set implicitly on "pointerdown" on non-mouse devices, the event will only be fired once a "pointermove" or >+ "pointerup" event is dispatched. >+ >+ * pointerevents/ios/pointer-events-implicit-capture.html: >+ > 2019-06-26 Simon Fraser <simon.fraser@apple.com> > > [Async overflow scrolling] Fix missing or misplaced content inside overflow:scroll >diff --git a/LayoutTests/pointerevents/ios/pointer-events-implicit-capture.html b/LayoutTests/pointerevents/ios/pointer-events-implicit-capture.html >index c2d66833281237f0f6d99147cf4002d067ea879f..470a29f27c2f947159f7ba324ba7bd9bb96ffc17 100644 >--- a/LayoutTests/pointerevents/ios/pointer-events-implicit-capture.html >+++ b/LayoutTests/pointerevents/ios/pointer-events-implicit-capture.html >@@ -28,10 +28,10 @@ target_test((target, test) => { > ]).then(() => { > eventTracker.assertMatchesEvents([ > { id: 1, type: "pointerdown" }, >- { id: 1, type: "gotpointercapture", isPrimary: true }, > { id: 2, type: "pointerdown" }, >- { id: 2, type: "gotpointercapture", isPrimary: false }, >+ { id: 1, type: "gotpointercapture", isPrimary: true }, > { id: 1, type: "pointermove" }, >+ { id: 2, type: "gotpointercapture", isPrimary: false }, > { id: 2, type: "pointermove" }, > { id: 1, type: "pointerup" }, > { id: 1, type: "lostpointercapture", isPrimary: true },
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 199259
: 373003