Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Unified Diff: LayoutTests/touchadjustment/resources/touchadjustment.js

Issue 370843002: Allow touch adjustment to return Shadow DOM node. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use testTouchPoint Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/touchadjustment/resources/touchadjustment.js
diff --git a/LayoutTests/touchadjustment/resources/touchadjustment.js b/LayoutTests/touchadjustment/resources/touchadjustment.js
index 2a3aa3d6716a82bb9f2589f1bbfbffadda3372e0..726a23034532e8cb543efad11305c7496dd0defd 100644
--- a/LayoutTests/touchadjustment/resources/touchadjustment.js
+++ b/LayoutTests/touchadjustment/resources/touchadjustment.js
@@ -63,11 +63,24 @@ function shouldBeWithin(adjustedPoint, targetArea) {
}
}
-function testTouchPoint(touchpoint, targetNode, allowTextNodes)
+function shadowHost(node)
+{
+ for (; node != null; node = node.parentNode) {
+ if (node.host)
+ return node.host;
+ }
+ return node;
+}
+
+function testTouchPoint(touchpoint, targetNode, allowTextNodes, disallowShadowDOM)
{
var adjustedNode = internals.touchNodeAdjustedToBestClickableNode(touchpoint.left, touchpoint.top, touchpoint.width, touchpoint.height, document);
if (!allowTextNodes && adjustedNode && adjustedNode.nodeType == 3)
adjustedNode = adjustedNode.parentNode;
+ if (disallowShadowDOM && adjustedNode && adjustedNode.nodeType == 1) {
+ while (shadowHost(adjustedNode))
+ adjustedNode = shadowHost(adjustedNode);
+ }
shouldBeNode(adjustedNode, targetNode);
}
« no previous file with comments | « LayoutTests/touchadjustment/nested-shadow-node-expected.txt ('k') | LayoutTests/touchadjustment/simple-shadow-dom.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698