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

Side by Side Diff: LayoutTests/touchadjustment/editable-content.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 : content editable div - bug 97576</title> 4 <title>Touch Adjustment : content editable div - bug 97576</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 body { 8 body {
9 font-size: 12px; 9 font-size: 12px;
10 line-height: 14px; 10 line-height: 14px;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 // Touches centered on the blank line should not be adjusted a neighbori ng text line. 66 // Touches centered on the blank line should not be adjusted a neighbori ng text line.
67 for (var row = 0; row < 3; row++) { 67 for (var row = 0; row < 3; row++) {
68 for (var offset = -touchOffset; offset <= touchOffset; offset += tou chOffset) { 68 for (var offset = -touchOffset; offset <= touchOffset; offset += tou chOffset) {
69 testTouchOnRow(row, offset); 69 testTouchOnRow(row, offset);
70 } 70 }
71 } 71 }
72 } 72 }
73 73
74 function testTouchOnBoundary(position) { 74 function testTouchOnBoundary(position) {
75 var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), position, touchOffset, touchRadius, touchRadius); 75 var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), position, touchOffset, touchRadius, touchRadius);
76 testTouchPoint(touchpoint, element); 76 testTouchPoint(touchpoint, element, /* allowTextNodes */ false, /* disal lowShadowDOM */ true);
77 } 77 }
78 78
79 function testIndirectTouches() { 79 function testIndirectTouches() {
80 debug('test indirect touches'); 80 debug('test indirect touches');
81 testTouchOnBoundary('bottom'); 81 testTouchOnBoundary('bottom');
82 testTouchOnBoundary('left'); 82 testTouchOnBoundary('left');
83 testTouchOnBoundary('right'); 83 testTouchOnBoundary('right');
84 testTouchOnBoundary('top'); 84 testTouchOnBoundary('top');
85 } 85 }
86 86
(...skipping 10 matching lines...) Expand all
97 element = document.getElementById('rich-text'); 97 element = document.getElementById('rich-text');
98 rowHeight = 14; 98 rowHeight = 14;
99 testDirectTouches(); 99 testDirectTouches();
100 testIndirectTouches(); 100 testIndirectTouches();
101 } 101 }
102 } 102 }
103 runTests(); 103 runTests();
104 </script> 104 </script>
105 </body> 105 </body>
106 </html> 106 </html>
OLDNEW
« no previous file with comments | « LayoutTests/touchadjustment/disabled-formelements.html ('k') | LayoutTests/touchadjustment/html-label.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698