WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED DUPLICATE of
bug 89556
89674
Cannot open calendar picker for input type=date using a touch tap gesture if TOUCH_ADJUSTMENT is enabled.
https://bugs.webkit.org/show_bug.cgi?id=89674
Summary
Cannot open calendar picker for input type=date using a touch tap gesture if ...
Kevin Ellis
Reported
2012-06-21 10:18:26 PDT
Cannot open calendar picker for input type=date using a touch tap gesture if TOUCH_ADJUSTMENT is enabled.
Attachments
Patch
(9.21 KB, patch)
2012-06-21 10:29 PDT
,
Kevin Ellis
no flags
Details
Formatted Diff
Diff
Patch
(9.60 KB, patch)
2012-06-22 07:06 PDT
,
Kevin Ellis
no flags
Details
Formatted Diff
Diff
Patch
(9.60 KB, patch)
2012-06-22 12:10 PDT
,
Kevin Ellis
no flags
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
Kevin Ellis
Comment 1
2012-06-21 10:29:15 PDT
Created
attachment 148831
[details]
Patch
Allan Sandfeld Jensen
Comment 2
2012-06-22 02:49:08 PDT
*** This bug has been marked as a duplicate of
bug 89556
***
Allan Sandfeld Jensen
Comment 3
2012-06-22 02:52:48 PDT
Comment on
attachment 148831
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=148831&action=review
Looks mostly good, but needs to be merged with my similar patch in 89556, and we need to decide if the returned targetNode should be the shadow-element or the shadow-ancestor.
> Source/WebCore/page/EventHandler.cpp:2493 > + bool success = findBestClickableCandidate(targetNode, targetPoint, touchCenter, touchRect, *nodeList.get()); > + if (success && targetNode) > + targetNode = targetNode->shadowAncestorNode(); > + return success;
I am unsure about this change. For point-adjustment it doesn't matter, but we want to fix the problem of performing unnecesary later hit-testing later and just use the found target node. If we return a shadowAncestorNode instead of the shadow element, we would have the same problem again then.
Kevin Ellis
Comment 4
2012-06-22 05:58:37 PDT
Comment on
attachment 148831
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=148831&action=review
>> Source/WebCore/page/EventHandler.cpp:2493 >> + return success; > > I am unsure about this change. For point-adjustment it doesn't matter, but we want to fix the problem of performing unnecesary later hit-testing later and just use the found target node. If we return a shadowAncestorNode instead of the shadow element, we would have the same problem again then.
Was erring on the side of caution. Without this node adjustment, we introduce a regression in touchadjustment/html_label.html. I see that you have addressed the change in behavior in your patch for 89556. Happy to back out the changes to event handler and land the test portion of the patch after your patch, or alternatively it might make sense to push this change in first and then back out the node adjustment in your more detailed patch. Option 3 is to merge the nested shadow node test into your patch.
Kevin Ellis
Comment 5
2012-06-22 07:06:24 PDT
Reopening to attach new patch.
Kevin Ellis
Comment 6
2012-06-22 07:06:27 PDT
Created
attachment 149020
[details]
Patch
Kevin Ellis
Comment 7
2012-06-22 07:11:31 PDT
Comment on
attachment 148831
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=148831&action=review
>>> Source/WebCore/page/EventHandler.cpp:2493 >>> + return success; >> >> I am unsure about this change. For point-adjustment it doesn't matter, but we want to fix the problem of performing unnecesary later hit-testing later and just use the found target node. If we return a shadowAncestorNode instead of the shadow element, we would have the same problem again then. > > Was erring on the side of caution. Without this node adjustment, we introduce a regression in touchadjustment/html_label.html. I see that you have addressed the change in behavior in your patch for 89556. Happy to back out the changes to event handler and land the test portion of the patch after your patch, or alternatively it might make sense to push this change in first and then back out the node adjustment in your more detailed patch. Option 3 is to merge the nested shadow node test into your patch.
Added FIXME to remove need for shadowAncestorNode.
Antonio Gomes
Comment 8
2012-06-22 11:27:10 PDT
Comment on
attachment 149020
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=149020&action=review
> Source/WebCore/page/EventHandler.cpp:2494 > + // FIXME: Should be able to handle targetNode being a shadow DOM node to avoid performing uncessary hit tests > + // in the case where further processing on the node is required. Returning the shadow ancestor prevents a > + // regression in touchadjustment/html-label.html. Some refinement is required to testing/internals to > + // handle targetNode being a shadow DOM node (see
bug 69556
).
This is supported in HitTestResult side. The BlackBerry port, for example, only works with shadow content, if they have a media element (<video> or <audio>) as ancestor. The
bug 69556
does not seem related. Maybe wrong bug ID?
> LayoutTests/touchadjustment/nested-shadow-node.html:37 > + function addShadowDom() {
Dom => DOM
> LayoutTests/touchadjustment/nested-shadow-node.html:81 > + var left = touchX - padding/2; > + var top = touchY - padding/2;
nit: space before/after "/"
Kevin Ellis
Comment 9
2012-06-22 12:10:25 PDT
Created
attachment 149081
[details]
Patch
Kevin Ellis
Comment 10
2012-06-22 12:12:39 PDT
Comment on
attachment 149020
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=149020&action=review
>> Source/WebCore/page/EventHandler.cpp:2494 >> + // handle targetNode being a shadow DOM node (see
bug 69556
). > > This is supported in HitTestResult side. The BlackBerry port, for example, only works with shadow content, if they have a media element (<video> or <audio>) as ancestor. > > The
bug 69556
does not seem related. Maybe wrong bug ID?
Wrong ID. Corrected to 89556 (Touch adjustment does not target shadow DOM elements).
>> LayoutTests/touchadjustment/nested-shadow-node.html:37 >> + function addShadowDom() { > > Dom => DOM
Done.
>> LayoutTests/touchadjustment/nested-shadow-node.html:81 >> + var top = touchY - padding/2; > > nit: space before/after "/"
Done.
Allan Sandfeld Jensen
Comment 11
2012-06-25 04:13:23 PDT
(In reply to
comment #9
)
> Created an attachment (id=149081) [details] > Patch
Even though we plan to land it is a two patches, I would still prefer if you closed this bug as a duplicated, and landed the patch under the original bug. They are the same bug-report, and the title is more accurate in the older bug.
Kevin Ellis
Comment 12
2012-06-26 07:01:59 PDT
Test added to 89556. *** This bug has been marked as a duplicate of
bug 89556
***
Adam Barth
Comment 13
2012-07-27 01:13:08 PDT
Comment on
attachment 148831
[details]
Patch Cleared review? from obsolete
attachment 148831
[details]
so that this bug does not appear in
http://webkit.org/pending-review
. If you would like this patch reviewed, please attach it to a new bug (or re-open this bug before marking it for review again).
Adam Barth
Comment 14
2012-07-27 01:13:13 PDT
Comment on
attachment 149081
[details]
Patch Cleared review? from
attachment 149081
[details]
so that this bug does not appear in
http://webkit.org/pending-review
. If you would like this patch reviewed, please attach it to a new bug (or re-open this bug before marking it for review again).
Adam Barth
Comment 15
2012-07-27 01:13:18 PDT
Comment on
attachment 149020
[details]
Patch Cleared review? from obsolete
attachment 149020
[details]
so that this bug does not appear in
http://webkit.org/pending-review
. If you would like this patch reviewed, please attach it to a new bug (or re-open this bug before marking it for review again).
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug