[Webkit-unassigned] [Bug 199269] New: Computation of nested touch-action elements is wrong
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Jun 27 05:28:52 PDT 2019
https://bugs.webkit.org/show_bug.cgi?id=199269
Bug ID: 199269
Summary: Computation of nested touch-action elements is wrong
Product: WebKit
Version: WebKit Nightly Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: UI Events
Assignee: webkit-unassigned at lists.webkit.org
Reporter: graouts at apple.com
Created attachment 373021
--> https://bugs.webkit.org/attachment.cgi?id=373021&action=review
Layout test
The following will yield a "touch-action: none" event region for the innermost <div>:
<style>
div {
position: absolute;
top: 0;
left: 0;
width: 400px;
height: 400px;
}
.manipulation {
touch-action: manipulation;
}
.pan-y {
touch-action: pan-y;
}
</style>
<div class="manipulation">
<div class="pan-y">
<div class="manipulation"></div>
</div>
</div>
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20190627/50288bd6/attachment-0001.html>
More information about the webkit-unassigned
mailing list