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

Unified Diff: LayoutTests/touchadjustment/disabled-formelements.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
« no previous file with comments | « no previous file | LayoutTests/touchadjustment/editable-content.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/touchadjustment/disabled-formelements.html
diff --git a/LayoutTests/touchadjustment/disabled-formelements.html b/LayoutTests/touchadjustment/disabled-formelements.html
index 13d547353ff7d6d3718964b223dc6cb211be1b7e..8e9dbff6c9606ac91d29ffc2f59956c81673d271 100644
--- a/LayoutTests/touchadjustment/disabled-formelements.html
+++ b/LayoutTests/touchadjustment/disabled-formelements.html
@@ -42,7 +42,7 @@
testTouchPoint(touchPoint(16, 8, 5), null);
testTouchPoint(touchPoint(16, 38, 5), e.label2);
testTouchPoint(touchPoint(60, 8, 5), null);
- testTouchPoint(touchPoint(60, 38, 5), e.input2);
+ testTouchPoint(touchPoint(60, 38, 5), e.input2, /* allowTextNodes */ false, /* disallowShadowDOM */ true);
}
function testAdjustedTouches()
@@ -52,9 +52,9 @@
testTouchPoint(touchPoint(16, 20, 15), e.label2);
testTouchPoint(touchPoint(16, 16, 20), e.label2);
- testTouchPoint(touchPoint(60, 25, 10), e.input2);
- testTouchPoint(touchPoint(60, 20, 15), e.input2);
- testTouchPoint(touchPoint(60, 16, 20), e.input2);
+ testTouchPoint(touchPoint(60, 25, 10), e.input2, /* allowTextNodes */ false, /* disallowShadowDOM */ true);
+ testTouchPoint(touchPoint(60, 20, 15), e.input2, /* allowTextNodes */ false, /* disallowShadowDOM */ true);
+ testTouchPoint(touchPoint(60, 16, 20), e.input2, /* allowTextNodes */ false, /* disallowShadowDOM */ true);
}
function runTests()
« no previous file with comments | « no previous file | LayoutTests/touchadjustment/editable-content.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698