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

Side by Side Diff: LayoutTests/touchadjustment/small-target-test.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Touch Adjustment : Improved targetting for small controls - bug 92293</ti tle> 4 <title>Touch Adjustment : Improved targetting for small controls - bug 92293</ti tle>
5 <script src="../resources/js-test.js"></script> 5 <script src="../resources/js-test.js"></script>
6 <script src="resources/touchadjustment.js"></script> 6 <script src="resources/touchadjustment.js"></script>
7 7
8 <style> 8 <style>
9 body { 9 body {
10 -webkit-margin-start: 20px; 10 -webkit-margin-start: 20px;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 testTouch(id, 'top-right'); 110 testTouch(id, 'top-right');
111 testTouch(id, 'bottom-left'); 111 testTouch(id, 'bottom-left');
112 testTouch(id, 'bottom-right'); 112 testTouch(id, 'bottom-right');
113 testTouch(id, 'top'); 113 testTouch(id, 'top');
114 testTouch(id, 'bottom'); 114 testTouch(id, 'bottom');
115 } 115 }
116 116
117 function testTouch(id, relativePosition) 117 function testTouch(id, relativePosition)
118 { 118 {
119 var element = document.getElementById(id); 119 var element = document.getElementById(id);
120 testTouchPoint(offsetTouchPoint(findAbsoluteBounds(element), relativePos ition, touchOffset, touchRadius), element); 120 testTouchPoint(offsetTouchPoint(findAbsoluteBounds(element), relativePos ition, touchOffset, touchRadius), element, /* allowTextNodes */ false, /* disall owShadowDOM */ true);
121 } 121 }
122 122
123 function testDirectTouches() 123 function testDirectTouches()
124 { 124 {
125 debug('Testing small direct hits.'); 125 debug('Testing small direct hits.');
126 126
127 testDirectTouch('check'); 127 testDirectTouch('check');
128 testDirectTouch('task'); 128 testDirectTouch('task');
129 testDirectTouch('item-label'); 129 testDirectTouch('item-label');
130 testDirectTouch('remove-button'); 130 testDirectTouch('remove-button');
(...skipping 16 matching lines...) Expand all
147 description('Tests if small clickable targets adjacent to larger cli ckable controls are properly targetted with touch adjustment.'); 147 description('Tests if small clickable targets adjacent to larger cli ckable controls are properly targetted with touch adjustment.');
148 testDirectTouches(); 148 testDirectTouches();
149 testIndirectTouches(); 149 testIndirectTouches();
150 document.getElementById('sandbox').style.display = 'none'; 150 document.getElementById('sandbox').style.display = 'none';
151 } 151 }
152 } 152 }
153 runTests(); 153 runTests();
154 </script> 154 </script>
155 </body> 155 </body>
156 </html> 156 </html>
OLDNEW
« no previous file with comments | « LayoutTests/touchadjustment/simple-shadow-dom-expected.txt ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698