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

Unified Diff: LayoutTests/touchadjustment/html-label.html

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/html-label.html
diff --git a/LayoutTests/touchadjustment/html-label.html b/LayoutTests/touchadjustment/html-label.html
index ce1d8a21b25656661b10372fb8a5aaeea6875b05..c36136ef00b5dd86c85b42617244db9e6d88b5ff 100644
--- a/LayoutTests/touchadjustment/html-label.html
+++ b/LayoutTests/touchadjustment/html-label.html
@@ -40,14 +40,14 @@
function testDirectTouch(element)
{
var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), 'center', 0, 20, 30);
- testTouchPoint(touchpoint, element);
+ testTouchPoint(touchpoint, element, /* allowTextNodes */ false, /* disallowShadowDOM */ true);
}
function testIndirectTouch(element, offset)
{
// Touch just right of the element.
var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), 'right', offset, 30, 20);
- testTouchPoint(touchpoint, element);
+ testTouchPoint(touchpoint, element, /* allowTextNodes */ false, /* disallowShadowDOM */ true);
}
function testDirectTouches()
« no previous file with comments | « LayoutTests/touchadjustment/editable-content.html ('k') | LayoutTests/touchadjustment/nested-shadow-node.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698