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

Side by Side 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 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 : HTML Label and form fields - bug 78801</title> 4 <title>Touch Adjustment : HTML Label and form fields - bug 78801</title>
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 <style> 7 <style>
8 #sandbox { 8 #sandbox {
9 position: absolute; 9 position: absolute;
10 left: 0px; 10 left: 0px;
(...skipping 22 matching lines...) Expand all
33 var adjustedNode; 33 var adjustedNode;
34 // Set up shortcut access to elements 34 // Set up shortcut access to elements
35 var e = {}; 35 var e = {};
36 ['sandbox', 'mylink', 'myform', 'myinput', 'mylabel', 'myspan'].forEach(func tion(a) { 36 ['sandbox', 'mylink', 'myform', 'myinput', 'mylabel', 'myspan'].forEach(func tion(a) {
37 e[a] = document.getElementById(a); 37 e[a] = document.getElementById(a);
38 }); 38 });
39 39
40 function testDirectTouch(element) 40 function testDirectTouch(element)
41 { 41 {
42 var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), 'center', 0, 20, 30); 42 var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), 'center', 0, 20, 30);
43 testTouchPoint(touchpoint, element); 43 testTouchPoint(touchpoint, element, /* allowTextNodes */ false, /* disal lowShadowDOM */ true);
44 } 44 }
45 45
46 function testIndirectTouch(element, offset) 46 function testIndirectTouch(element, offset)
47 { 47 {
48 // Touch just right of the element. 48 // Touch just right of the element.
49 var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), 'right', offset, 30, 20); 49 var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), 'right', offset, 30, 20);
50 testTouchPoint(touchpoint, element); 50 testTouchPoint(touchpoint, element, /* allowTextNodes */ false, /* disal lowShadowDOM */ true);
51 } 51 }
52 52
53 function testDirectTouches() 53 function testDirectTouches()
54 { 54 {
55 debug('Testing small direct hits.'); 55 debug('Testing small direct hits.');
56 56
57 testDirectTouch(e.mylink); 57 testDirectTouch(e.mylink);
58 testDirectTouch(e.mylabel); 58 testDirectTouch(e.mylabel);
59 testDirectTouch(e.myinput); 59 testDirectTouch(e.myinput);
60 } 60 }
(...skipping 18 matching lines...) Expand all
79 description('Tests if labels are treated as clickable if the input t hey control is.'); 79 description('Tests if labels are treated as clickable if the input t hey control is.');
80 testDirectTouches(); 80 testDirectTouches();
81 testIndirectTouches(); 81 testIndirectTouches();
82 e.sandbox.style.display = 'none'; 82 e.sandbox.style.display = 'none';
83 } 83 }
84 } 84 }
85 runTests(); 85 runTests();
86 </script> 86 </script>
87 </body> 87 </body>
88 </html> 88 </html>
OLDNEW
« 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